diff --git a/CHANGES.rst b/CHANGES.rst index da2ca7f874..0e9b08d003 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,14 +1,16 @@ Changes -======= +======= 2.0 (inprogress) ---------------- 1. Scrub old encode schema (#270) 2. Implemment Summary view for biosamples, patients, histology, and genomics (#147) 3. Add stage info for dominant tumor (#378) + 4. Add patient minimum filter (#392) + 5. Reformat surgery and pathology linkage to make it eaiser for query (#333) + 6. Update the display to remove NOS for site. (#399) 1.0 (unreleased) ---------------- Initial move of framework from php to encoded - diff --git a/src/encoded/audit/item.py b/src/encoded/audit/item.py index 57a42e5769..6b17e539c0 100644 --- a/src/encoded/audit/item.py +++ b/src/encoded/audit/item.py @@ -73,6 +73,7 @@ def audit_item_schema(value, system): # private statuses (visible for consortium members only) 'in progress': 50, + 'restricted':50, 'pending dcc review': 50, 'submitted': 50, 'uploading': 50, diff --git a/src/encoded/batch_download.py b/src/encoded/batch_download.py index 141a60d7e6..b6e0cafa7b 100644 --- a/src/encoded/batch_download.py +++ b/src/encoded/batch_download.py @@ -47,14 +47,14 @@ def includeme(config): ('Biosample type', ['biosample_ontology.classification']), ('Biosample organism', ['replicates.library.biosample.organism.scientific_name']), ('Biosample genetic modifications methods', ['replicates.library.biosample.applied_modifications.method']), - ('Biosample genetic modifications categories', ['replicates.library.biosample.applied_modifications.category']), - ('Biosample genetic modifications targets', ['replicates.library.biosample.applied_modifications.modified_site_by_target_id']), - ('Biosample genetic modifications gene targets', ['replicates.library.biosample.applied_modifications.modified_site_by_gene_id']), + ('Biosample genetic modifications categories', ['replicates.library.biosample.applied_modifications.category']), + ('Biosample genetic modifications targets', ['replicates.library.biosample.applied_modifications.modified_site_by_target_id']), + ('Biosample genetic modifications gene targets', ['replicates.library.biosample.applied_modifications.modified_site_by_gene_id']), ('Biosample genetic modifications site coordinates', ['replicates.library.biosample.applied_modifications.modified_site_by_coordinates.assembly', 'replicates.library.biosample.applied_modifications.modified_site_by_coordinates.chromosome', 'replicates.library.biosample.applied_modifications.modified_site_by_coordinates.start', - 'replicates.library.biosample.applied_modifications.modified_site_by_coordinates.end']), - ('Biosample genetic modifications zygosity', ['replicates.library.biosample.applied_modifications.zygosity']), + 'replicates.library.biosample.applied_modifications.modified_site_by_coordinates.end']), + ('Biosample genetic modifications zygosity', ['replicates.library.biosample.applied_modifications.zygosity']), ('Experiment target', ['target.name']), ('Library made from', ['replicates.library.nucleic_acid_term_name']), ('Library depleted in', ['replicates.library.depleted_in_term_name']), @@ -489,7 +489,7 @@ def _batch_download_publicationdata(request): ) -@view_config(route_name='peak_metadata', request_method='GET') +@view_config(route_name='peak_metadata', request_method='GET', permission='search') def peak_metadata(context, request): param_list = parse_qs(request.matchdict['search_params']) param_list['field'] = [] @@ -541,7 +541,7 @@ def peak_metadata(context, request): ) -@view_config(route_name='metadata', request_method='GET') +@view_config(route_name='metadata', request_method='GET', permission='search') def metadata_tsv(context, request): qs = QueryString(request) param_list = qs.group_values_by_key() @@ -682,7 +682,7 @@ def metadata_tsv(context, request): ) -@view_config(route_name='batch_download', request_method=('GET', 'POST')) +@view_config(route_name='batch_download', request_method=('GET', 'POST'), permission='search') def batch_download(context, request): default_params = [ ('limit', 'all'), @@ -843,7 +843,7 @@ def restricted_files_present(exp_file): def is_no_file_available(exp_file): return exp_file.get('no_file_available', False) - + def lookup_column_value(value, path): nodes = [value] @@ -883,7 +883,7 @@ def _convert_camel_to_snake(type_str): return re.sub('([a-z0-9])([A-Z])', r'\1_\2', tmp).lower() -@view_config(route_name='report_download', request_method='GET') +@view_config(route_name='report_download', request_method='GET', permission='search') def report_download(context, request): downloadtime = datetime.datetime.now() @@ -902,7 +902,7 @@ def report_download(context, request): def format_header(seq): newheader="%s\t%s%s?%s\r\n" % (downloadtime, request.host_url, '/report/', request.query_string) return(bytes(newheader, 'utf-8')) - + # Work around Excel bug; can't open single column TSV with 'ID' header if len(columns) == 1 and '@id' in columns: @@ -917,7 +917,7 @@ def generate_rows(): values = [lookup_column_value(item, path) for path in columns] yield format_row(values) - + # Stream response using chunked encoding. request.response.content_type = 'text/tsv' request.response.content_disposition = 'attachment;filename="{}_report_{}_{}_{}_{}h_{}m.tsv"'.format( diff --git a/src/encoded/loadxl.py b/src/encoded/loadxl.py index 4102d4f311..c02b4908ca 100644 --- a/src/encoded/loadxl.py +++ b/src/encoded/loadxl.py @@ -1,590 +1,707 @@ -from past.builtins import basestring -from .typedsheets import cast_row_values -from functools import reduce -import io -import logging -import os.path - -text = type(u'') - -DEFAULT_LOG_LEVEL = logging.INFO -logger = logging.getLogger('encoded') -logger.setLevel(DEFAULT_LOG_LEVEL) # doesn't work to shut off sqla INFO - - -ORDER = [ - 'user', - 'award', - 'lab', - 'image', - 'page', - 'publication', - 'document', - 'patient', - 'surgery', - 'pathology_report', - 'surgery_procedure', - 'biospecimen', - 'bioreference', - 'bioproject', - 'bioexperiment', - 'platform', - 'biolibrary', - 'bioreplicate', - 'biofile', - 'bioexperiment_series', - 'ihc', - 'medication', - 'supportive_medication', - 'germline', - 'consent', - 'radiation', - 'medical_imaging', - 'cart', - #'lab_results', - #'vital_results' -] - -IS_ATTACHMENT = [ - 'attachment', -] - - -def _reset_log_level(log_level): - ''' - Resets the default log level, usually for running bin tests - ''' - if logger and log_level is not DEFAULT_LOG_LEVEL: - numeric_level = getattr(logging, log_level.upper(), None) - if not isinstance(numeric_level, int): - raise ValueError('Invalid log level: %s' % log_level) - logger.setLevel(log_level) - - -############################################################################## -# Pipeline components -# -# http://www.stylight.com/Numbers/pipes-and-filters-architectures-with-python-generators/ -# -# Dictionaries are passed through the pipeline. By convention, values starting -# with an underscore (_) are ignored by the component posting a final value -# so are free for communicating information down the pipeline. - - -def noop(dictrows): - """ No-op component - - Useful for pipeline component factories. - """ - return dictrows - - -def remove_keys_with_empty_value(dictrows): - for row in dictrows: - yield { - k: v for k, v in row.items() - if k and v not in ('', None, []) - } - - -############################################################################## -# Pipeline component factories - - -def warn_keys_with_unknown_value_except_for(*keys): - def component(dictrows): - for row in dictrows: - for k, v in row.items(): - if k not in keys and text(v).lower() == 'unknown': - logger.warn('unknown %r for %s' % (k, row.get('uuid', ''))) - yield row - - return component - - -def skip_rows_missing_all_keys(*keys): - def component(dictrows): - for row in dictrows: - if not any(key in row for key in keys): - row['_skip'] = True - yield row - - return component - - -def skip_rows_with_all_key_value(**kw): - def component(dictrows): - for row in dictrows: - if all(row[k] == v if k in row else False for k, v in kw.items()): - row['_skip'] = True - yield row - - return component - - -def skip_rows_without_all_key_value(**kw): - def component(dictrows): - for row in dictrows: - if not all(row[k] == v if k in row else False for k, v in kw.items()): - row['_skip'] = True - yield row - - return component - - -def remove_keys(*keys): - def component(dictrows): - for row in dictrows: - for key in keys: - row.pop(key, None) - yield row - - return component - - -def skip_rows_with_all_falsey_value(*keys): - def component(dictrows): - for row in dictrows: - if all(not row[key] if key in row else False for key in keys): - row['_skip'] = True - yield row - - return component - - -def add_attachments(docsdir): - def component(dictrows): - for row in dictrows: - for attachment_property in IS_ATTACHMENT: - filename = row.get(attachment_property, None) - if filename is None: - continue - try: - path = find_doc(docsdir, filename) - row[attachment_property] = attachment(path) - except ValueError as e: - row['_errors'] = repr(e) - yield row - - return component - - -############################################################################## -# Read input from spreadsheets -# -# Downloading a zipfile of xlsx files from Google Drive is most convenient -# but it's better to check tsv into git. - - -def read_single_sheet(path, name=None): - """ Read an xlsx, csv or tsv from a zipfile or directory - """ - from zipfile import ZipFile - from . import xlreader - - if name is None: - root, ext = os.path.splitext(path) - stream = open(path, 'r') - - if ext == '.xlsx': - return read_xl(stream) - - if ext == '.tsv': - return read_csv(stream, dialect='excel-tab') - - if ext == '.csv': - return read_csv(stream) - - if ext == '.json': - return read_json(stream) - - raise ValueError('Unknown file extension for %r' % path) - - if path.endswith('.xlsx'): - return cast_row_values(xlreader.DictReader(open(path, 'rb'), sheetname=name)) - - if path.endswith('.zip'): - zf = ZipFile(path) - names = zf.namelist() - - if (name + '.xlsx') in names: - stream = zf.open(name + '.xlsx', 'r') - return read_xl(stream) - - if (name + '.tsv') in names: - stream = io.TextIOWrapper(zf.open(name + '.tsv'), encoding='utf-8') - return read_csv(stream, dialect='excel-tab') - - if (name + '.csv') in names: - stream = io.TextIOWrapper(zf.open(name + '.csv'), encoding='utf-8') - return read_csv(stream) - - if (name + '.json') in names: - stream = io.TextIOWrapper(zf.open(name + '.json'), encoding='utf-8') - return read_json(stream) - - if os.path.isdir(path): - root = os.path.join(path, name) - - if os.path.exists(root + '.xlsx'): - stream = open(root + '.xlsx', 'rb') - return read_xl(stream) - - if os.path.exists(root + '.tsv'): - stream = open(root + '.tsv', 'rU') - return read_csv(stream, dialect='excel-tab') - - if os.path.exists(root + '.csv'): - stream = open(root + '.csv', 'rU') - return read_csv(stream) - - if os.path.exists(root + '.json'): - stream = open(root + '.json', 'r') - return read_json(stream) - - return [] - - -def read_xl(stream): - from . import xlreader - return cast_row_values(xlreader.DictReader(stream)) - - -def read_csv(stream, **kw): - import csv - return cast_row_values(csv.DictReader(stream, **kw)) - - -def read_json(stream): - import json - obj = json.load(stream) - if isinstance(obj, dict): - return [obj] - return obj - - -############################################################################## -# Posting json -# -# This would a one liner except for logging - -def request_url(item_type, method): - def component(rows): - for row in rows: - if method == 'POST': - url = row['_url'] = '/' + item_type - yield row - continue - - if '@id' in row: - url = row['@id'] - if not url.startswith('/'): - url = '/' + url - row['_url'] = url - yield row - continue - - # XXX support for aliases - for key in ['uuid', 'accession']: - if key in row: - url = row['_url'] = '/' + row[key] - break - else: - row['_errors'] = ValueError('No key found. Need uuid or accession.') - - yield row - - return component - - -def make_request(testapp, item_type, method): - json_method = getattr(testapp, method.lower() + '_json') - - def component(rows): - for row in rows: - if row.get('_skip') or row.get('_errors') or not row.get('_url'): - continue - - # Keys with leading underscores are for communicating between - # sections - value = row['_value'] = { - k: v for k, v in row.items() if not k.startswith('_') and not k.startswith('@') - } - - url = row['_url'] - row['_response'] = json_method(url, value, status='*') - - yield row - - return component - - -############################################################################## -# Logging - - -def trim(value): - """ Shorten excessively long fields in error log - """ - if isinstance(value, dict): - return {k: trim(v) for k, v in value.items()} - if isinstance(value, list): - return [trim(v) for v in value] - if isinstance(value, basestring) and len(value) > 160: - return value[:77] + '...' + value[-80:] - return value - - -def pipeline_logger(item_type, phase): - def component(rows): - created = 0 - updated = 0 - errors = 0 - skipped = 0 - count = 0 - for index, row in enumerate(rows): - row_number = index + 2 # header row - count = index + 1 - res = row.get('_response') - - if res is None: - _skip = row.get('_skip') - _errors = row.get('_errors') - if row.get('_skip'): - skipped += 1 - elif _errors: - errors += 1 - logger.error('%s row %d: Error PROCESSING: %s\n%r\n' % - (item_type, row_number, _errors, trim(row))) - yield row - continue - - url = row.get('_url') - uuid = row.get('uuid') - - if res.status_int == 200: - updated += 1 - logger.debug('UPDATED: %s' % url) - - if res.status_int == 201: - created += 1 - logger.debug('CREATED: %s' % res.location) - - if res.status_int == 409: - logger.error('CONFLICT: %r' % res.json['detail']) - - if res.status_int == 422: - logger.error('VALIDATION FAILED: %r' % trim(res.json['errors'])) - - if res.status_int // 100 == 4: - errors += 1 - logger.error('%s row %d: %s (%s)\n%r\n' % - (item_type, row_number, res.status, url, trim(row['_value']))) - - yield row - - loaded = created + updated - logger.info('Loaded %d of %d %s (phase %s). CREATED: %d, UPDATED: %d, SKIPPED: %d, ERRORS: %d' % ( - loaded, count, item_type, phase, created, updated, skipped, errors)) - - return component - - -############################################################################## -# Attachments - - -def find_doc(docsdir, filename): - path = None - for dirpath in docsdir: - candidate = os.path.join(dirpath, filename) - if not os.path.exists(candidate): - continue - if path is not None: - msg = 'Duplicate filenames: %s, %s' % (path, candidate) - raise ValueError(msg) - path = candidate - if path is None: - raise ValueError('File not found: %s' % filename) - return path - - -def attachment(path): - """ Create an attachment upload object from a filename - - Embeds the attachment as a data url. - """ - import magic - import mimetypes - from PIL import Image - from base64 import b64encode - - filename = os.path.basename(path) - mime_type, encoding = mimetypes.guess_type(path) - major, minor = mime_type.split('/') - detected_type = magic.from_file(path, mime=True) - - # XXX This validation logic should move server-side. - if not (detected_type == mime_type or - detected_type == 'text/plain' and major == 'text'): - raise ValueError('Wrong extension for %s: %s' % (detected_type, filename)) - - with open(path, 'rb') as stream: - attach = { - 'download': filename, - 'type': mime_type, - 'href': 'data:%s;base64,%s' % (mime_type, b64encode(stream.read()).decode('ascii')) - } - - if mime_type in ('application/pdf', 'text/plain', 'text/tab-separated-values', 'text/html'): - # XXX Should use chardet to detect charset for text files here. - return attach - - if major == 'image' and minor in ('png', 'jpeg', 'gif', 'tiff'): - # XXX we should just convert our tiffs to pngs - stream.seek(0, 0) - im = Image.open(stream) - im.verify() - if im.format != minor.upper(): - msg = "Image file format %r does not match extension for %s" - raise ValueError(msg % (im.format, filename)) - - attach['width'], attach['height'] = im.size - return attach - - raise ValueError("Unknown file type for %s" % filename) - - -############################################################################## -# Pipelines - - -def combine(source, pipeline): - """ Construct a combined generator from a source and pipeline - """ - return reduce(lambda x, y: y(x), pipeline, source) - - -def process(rows): - """ Pull rows through the pipeline - """ - for row in rows: - pass - - -def get_pipeline(testapp, docsdir, test_only, item_type, phase=None, method=None): - pipeline = [ - skip_rows_with_all_key_value(test='skip'), - skip_rows_with_all_key_value(_test='skip'), - skip_rows_with_all_falsey_value('test') if test_only else noop, - skip_rows_with_all_falsey_value('_test') if test_only else noop, - remove_keys_with_empty_value, - skip_rows_missing_all_keys('uuid', 'accession', '@id', 'name'), - remove_keys('schema_version'), - warn_keys_with_unknown_value_except_for( - 'lot_id', 'sex', 'life_stage', 'health_status', 'ethnicity', - 'strain_background', 'age', 'version', - 'model_organism_health_status', - 'model_organism_age', - 'model_organism_sex', - 'mouse_life_stage', - 'race', - 'gender' - # 'flowcell_details.machine', - ), - add_attachments(docsdir), - ] - if phase == 1: - method = 'POST' - pipeline.extend(PHASE1_PIPELINES.get(item_type, [])) - elif phase == 2: - method = 'PUT' - pipeline.extend(PHASE2_PIPELINES.get(item_type, [])) - - pipeline.extend([ - request_url(item_type, method), - remove_keys('uuid') if method in ('PUT', 'PATCH') else noop, - make_request(testapp, item_type, method), - pipeline_logger(item_type, phase), - ]) - return pipeline - - -# Additional pipeline sections for item types - -PHASE1_PIPELINES = { - 'user': [ - remove_keys('lab', 'submits_for'), - ], - 'biospecimen': [ - remove_keys('originated_from') - ], - 'biofile': [ - remove_keys('paired_with') - ], - 'bioexperiment': [ - remove_keys('possible_controls'), - ] - -} - - -############################################################################## -# Phase 2 pipelines -# -# A second pass is required to cope with reference cycles. Only rows with -# filtered out keys are updated. - - -PHASE2_PIPELINES = { - 'user': [ - skip_rows_missing_all_keys('lab', 'submits_for'), - ], - 'biospecimen': [ - skip_rows_missing_all_keys('originated_from') - ], - 'biofile': [ - skip_rows_missing_all_keys('paired_with') - ], - 'bioexperiment': [ - skip_rows_missing_all_keys('possible_controls'), - ], -} - - -def load_all(testapp, filename, docsdir, log_level=None, test=False): - if log_level is not None: - _reset_log_level(log_level) - for item_type in ORDER: - try: - source = read_single_sheet(filename, item_type) - except ValueError: - logger.error('Opening %s %s failed.', filename, item_type) - continue - pipeline = get_pipeline(testapp, docsdir, test, item_type, phase=1) - process(combine(source, pipeline)) - - for item_type in ORDER: - if item_type not in PHASE2_PIPELINES: - continue - try: - source = read_single_sheet(filename, item_type) - except ValueError: - continue - pipeline = get_pipeline(testapp, docsdir, test, item_type, phase=2) - process(combine(source, pipeline)) - - -def load_test_data(app): - from webtest import TestApp - environ = { - 'HTTP_ACCEPT': 'application/json', - 'REMOTE_USER': 'TEST', - } - testapp = TestApp(app, environ) - - from pkg_resources import resource_filename - inserts = resource_filename('encoded', 'tests/data/inserts/') - docsdir = [resource_filename('encoded', 'tests/data/documents/')] - load_all(testapp, inserts, docsdir) - +from past.builtins import basestring +from .typedsheets import cast_row_values +from functools import reduce +import io +import logging +import os.path + +text = type(u'') + +DEFAULT_LOG_LEVEL = logging.INFO +logger = logging.getLogger('encoded') +logger.setLevel(DEFAULT_LOG_LEVEL) # doesn't work to shut off sqla INFO + + +ORDER = [ + 'user', + 'award', + 'lab', + 'image', + 'page', + 'publication', + 'document', + 'patient', + + #======================Version 3=========================== + + + 'ivp_a1v3',#pass + 'ivp_a2v3',#pass + 'ivp_a3v3',#pass + 'ivp_a4v3',#pass + 'ivp_a5v3',#pass + 'ivp_b1v3',#pass + 'ivp_b4v3',#pass + 'ivp_b5v3', #pass + 'ivp_b6v3', #pass + 'ivp_b7v3',#pass + 'ivp_b8v3',#pass + 'ivp_b9v3',#pass + 'ivp_c2v3',#pass + 'ivp_d1v3',#pass + 'ivp_d2v3',#pass + 'ivp_z1xv3',#pass + + + 'fvp_a1v3',#pass + 'fvp_a2v3',#pass + 'fvp_a3v3',#error 1 real patient data, cannot load + 'fvp_a4v3',#pass + 'fvp_b1v3',#pass + 'fvp_b4v3',#pass + 'fvp_b5v3',#pass + 'fvp_b6v3',#pass + 'fvp_b7v3',#pass + 'fvp_b8v3',#pass + 'fvp_b9v3',#error 1 real patient data, cannot load + 'fvp_c1v3',#pass + 'fvp_c2v3',#pass + 'fvp_d1v3',#pass + 'fvp_d2v3',#pass + 'fvp_z1xv3',#pass + + #======================Version 2=========================== + + 'ivp_a1v2',#pass + 'ivp_a2v2',#pass + 'ivp_a3v2',#failed + 'ivp_a4v2',#pass + 'ivp_a5v2',#pass + 'ivp_b1v2',#pass + 'ivp_b2v2',#pass + 'ivp_b3v2',#failed + 'ivp_b4v2',#pass + 'ivp_b5v2',#pass + 'ivp_b6v2',#pass + 'ivp_b7v2',#pass + 'ivp_b8v2',#pass + 'ivp_b9v2',#pass + 'ivp_c1v2',#failed + # 'ivp_c2v2', #not in version2 + 'ivp_d1v2',#pass + # 'ivp_d2v2',# not in version 2 + 'ivp_e1v2',#pass + 'ivp_z1v2',#pass + + 'fvp_a1v2',#pass + 'fvp_a2v2',#pass + 'fvp_a3v2',#pass + 'fvp_a4v2',#pass + 'fvp_a5v2',#pass + 'fvp_b1v2',#pass + 'fvp_b2v2',#pass + 'fvp_b3v2',#failed + 'fvp_b4v2',#pass + 'fvp_b5v2',#pass + 'fvp_b6v2',#pass + 'fvp_b7v2',#pass + 'fvp_b8v2',#pass + 'fvp_b9v2',#pass + 'fvp_c1v2',#failed + 'fvp_d1v2',#pass + 'fvp_e1v2',#pass + 'fvp_z1v2',#pass +#======================Version 1=========================== + 'ivp_a1v1', + 'ivp_a2v1', + 'ivp_a3v1', + 'ivp_a4v1', + 'ivp_a5v1', + 'ivp_b1v1', + 'ivp_b2v1', + 'ivp_b3v1', + 'ivp_b4v1', + 'ivp_b5v1', + 'ivp_b6v1', + 'ivp_b7v1', + 'ivp_b8v1', + 'ivp_b9v1', + 'ivp_c1v1', + 'ivp_d1v1', + 'ivp_e1v1', + 'ivp_z1v1', + + 'fvp_a1v1', + 'fvp_a2v1', + 'fvp_a3v1', + 'fvp_a4v1', + 'fvp_a5v1', + 'fvp_b1v1', + 'fvp_b2v1', + 'fvp_b3v1', + 'fvp_b4v1', + 'fvp_b5v1', + 'fvp_b6v1', + 'fvp_b7v1', + 'fvp_b8v1', + 'fvp_b9v1', + 'fvp_c1v1', + 'fvp_d1v1', + 'fvp_e1v1', + 'fvp_z1v1', + +#======================speed up=========================== + + 'tvp_a1', + 'tvp_a2', + 'tvp_a3', + 'tvp_a4', + 'tvp_b4', + 'tvp_b5', + 'tvp_b7', + 'tvp_d2', + 'tvp_t1', + 'tvp_z1x', + + 'm1', + 'concussion_history', + 'concussion_history_follow_up', + 'moca', + 'updrs', + 'visit_contact', + 'physical_exam', + 'cart' +] + +IS_ATTACHMENT = [ + 'attachment', +] + + +def _reset_log_level(log_level): + ''' + Resets the default log level, usually for running bin tests + ''' + if logger and log_level is not DEFAULT_LOG_LEVEL: + numeric_level = getattr(logging, log_level.upper(), None) + if not isinstance(numeric_level, int): + raise ValueError('Invalid log level: %s' % log_level) + logger.setLevel(log_level) + + +############################################################################## +# Pipeline components +# +# http://www.stylight.com/Numbers/pipes-and-filters-architectures-with-python-generators/ +# +# Dictionaries are passed through the pipeline. By convention, values starting +# with an underscore (_) are ignored by the component posting a final value +# so are free for communicating information down the pipeline. + + +def noop(dictrows): + """ No-op component + + Useful for pipeline component factories. + """ + return dictrows + + +def remove_keys_with_empty_value(dictrows): + for row in dictrows: + yield { + k: v for k, v in row.items() + if k and v not in ('', None, []) + } + + +############################################################################## +# Pipeline component factories + + +def warn_keys_with_unknown_value_except_for(*keys): + def component(dictrows): + for row in dictrows: + for k, v in row.items(): + if k not in keys and text(v).lower() == 'unknown': + logger.warn('unknown %r for %s' % (k, row.get('uuid', ''))) + yield row + + return component + + +def skip_rows_missing_all_keys(*keys): + def component(dictrows): + for row in dictrows: + if not any(key in row for key in keys): + row['_skip'] = True + yield row + + return component + + +def skip_rows_with_all_key_value(**kw): + def component(dictrows): + for row in dictrows: + if all(row[k] == v if k in row else False for k, v in kw.items()): + row['_skip'] = True + yield row + + return component + + +def skip_rows_without_all_key_value(**kw): + def component(dictrows): + for row in dictrows: + if not all(row[k] == v if k in row else False for k, v in kw.items()): + row['_skip'] = True + yield row + + return component + + +def remove_keys(*keys): + def component(dictrows): + for row in dictrows: + for key in keys: + row.pop(key, None) + yield row + + return component + + +def skip_rows_with_all_falsey_value(*keys): + def component(dictrows): + for row in dictrows: + if all(not row[key] if key in row else False for key in keys): + row['_skip'] = True + yield row + + return component + + +def add_attachments(docsdir): + def component(dictrows): + for row in dictrows: + for attachment_property in IS_ATTACHMENT: + filename = row.get(attachment_property, None) + if filename is None: + continue + try: + path = find_doc(docsdir, filename) + row[attachment_property] = attachment(path) + except ValueError as e: + row['_errors'] = repr(e) + yield row + + return component + + +############################################################################## +# Read input from spreadsheets +# +# Downloading a zipfile of xlsx files from Google Drive is most convenient +# but it's better to check tsv into git. + + +def read_single_sheet(path, name=None): + """ Read an xlsx, csv or tsv from a zipfile or directory + """ + from zipfile import ZipFile + from . import xlreader + + if name is None: + root, ext = os.path.splitext(path) + stream = open(path, 'r') + + if ext == '.xlsx': + return read_xl(stream) + + if ext == '.tsv': + return read_csv(stream, dialect='excel-tab') + + if ext == '.csv': + return read_csv(stream) + + if ext == '.json': + return read_json(stream) + + raise ValueError('Unknown file extension for %r' % path) + + if path.endswith('.xlsx'): + return cast_row_values(xlreader.DictReader(open(path, 'rb'), sheetname=name)) + + if path.endswith('.zip'): + zf = ZipFile(path) + names = zf.namelist() + + if (name + '.xlsx') in names: + stream = zf.open(name + '.xlsx', 'r') + return read_xl(stream) + + if (name + '.tsv') in names: + stream = io.TextIOWrapper(zf.open(name + '.tsv'), encoding='utf-8') + return read_csv(stream, dialect='excel-tab') + + if (name + '.csv') in names: + stream = io.TextIOWrapper(zf.open(name + '.csv'), encoding='utf-8') + return read_csv(stream) + + if (name + '.json') in names: + stream = io.TextIOWrapper(zf.open(name + '.json'), encoding='utf-8') + return read_json(stream) + + if os.path.isdir(path): + root = os.path.join(path, name) + + if os.path.exists(root + '.xlsx'): + stream = open(root + '.xlsx', 'rb') + return read_xl(stream) + + if os.path.exists(root + '.tsv'): + stream = open(root + '.tsv', 'rU') + return read_csv(stream, dialect='excel-tab') + + if os.path.exists(root + '.csv'): + stream = open(root + '.csv', 'rU') + return read_csv(stream) + + if os.path.exists(root + '.json'): + stream = open(root + '.json', 'r') + return read_json(stream) + + return [] + + +def read_xl(stream): + from . import xlreader + return cast_row_values(xlreader.DictReader(stream)) + + +def read_csv(stream, **kw): + import csv + return cast_row_values(csv.DictReader(stream, **kw)) + + +def read_json(stream): + import json + obj = json.load(stream) + if isinstance(obj, dict): + return [obj] + return obj + + +############################################################################## +# Posting json +# +# This would a one liner except for logging + +def request_url(item_type, method): + def component(rows): + for row in rows: + if method == 'POST': + url = row['_url'] = '/' + item_type + yield row + continue + + if '@id' in row: + url = row['@id'] + if not url.startswith('/'): + url = '/' + url + row['_url'] = url + yield row + continue + + # XXX support for aliases + for key in ['uuid', 'accession']: + if key in row: + url = row['_url'] = '/' + row[key] + break + else: + row['_errors'] = ValueError('No key found. Need uuid or accession.') + + yield row + + return component + + +def make_request(testapp, item_type, method): + json_method = getattr(testapp, method.lower() + '_json') + + def component(rows): + for row in rows: + if row.get('_skip') or row.get('_errors') or not row.get('_url'): + continue + + # Keys with leading underscores are for communicating between + # sections + value = row['_value'] = { + k: v for k, v in row.items() if not k.startswith('_') and not k.startswith('@') + } + + url = row['_url'] + row['_response'] = json_method(url, value, status='*') + + yield row + + return component + + +############################################################################## +# Logging + + +def trim(value): + """ Shorten excessively long fields in error log + """ + if isinstance(value, dict): + return {k: trim(v) for k, v in value.items()} + if isinstance(value, list): + return [trim(v) for v in value] + if isinstance(value, basestring) and len(value) > 160: + return value[:77] + '...' + value[-80:] + return value + + +def pipeline_logger(item_type, phase): + def component(rows): + created = 0 + updated = 0 + errors = 0 + skipped = 0 + count = 0 + for index, row in enumerate(rows): + row_number = index + 2 # header row + count = index + 1 + res = row.get('_response') + + if res is None: + _skip = row.get('_skip') + _errors = row.get('_errors') + if row.get('_skip'): + skipped += 1 + elif _errors: + errors += 1 + logger.error('%s row %d: Error PROCESSING: %s\n%r\n' % + (item_type, row_number, _errors, trim(row))) + yield row + continue + + url = row.get('_url') + uuid = row.get('uuid') + + if res.status_int == 200: + updated += 1 + logger.debug('UPDATED: %s' % url) + + if res.status_int == 201: + created += 1 + logger.debug('CREATED: %s' % res.location) + + if res.status_int == 409: + logger.error('CONFLICT: %r' % res.json['detail']) + + if res.status_int == 422: + logger.error('VALIDATION FAILED: %r' % trim(res.json['errors'])) + + if res.status_int // 100 == 4: + errors += 1 + logger.error('%s row %d: %s (%s)\n%r\n' % + (item_type, row_number, res.status, url, trim(row['_value']))) + + yield row + + loaded = created + updated + logger.info('Loaded %d of %d %s (phase %s). CREATED: %d, UPDATED: %d, SKIPPED: %d, ERRORS: %d' % ( + loaded, count, item_type, phase, created, updated, skipped, errors)) + + return component + + +############################################################################## +# Attachments + + +def find_doc(docsdir, filename): + path = None + for dirpath in docsdir: + candidate = os.path.join(dirpath, filename) + if not os.path.exists(candidate): + continue + if path is not None: + msg = 'Duplicate filenames: %s, %s' % (path, candidate) + raise ValueError(msg) + path = candidate + if path is None: + raise ValueError('File not found: %s' % filename) + return path + + +def attachment(path): + """ Create an attachment upload object from a filename + + Embeds the attachment as a data url. + """ + import magic + import mimetypes + from PIL import Image + from base64 import b64encode + + filename = os.path.basename(path) + mime_type, encoding = mimetypes.guess_type(path) + major, minor = mime_type.split('/') + detected_type = magic.from_file(path, mime=True) + + # XXX This validation logic should move server-side. + if not (detected_type == mime_type or + detected_type == 'text/plain' and major == 'text'): + raise ValueError('Wrong extension for %s: %s' % (detected_type, filename)) + + with open(path, 'rb') as stream: + attach = { + 'download': filename, + 'type': mime_type, + 'href': 'data:%s;base64,%s' % (mime_type, b64encode(stream.read()).decode('ascii')) + } + + if mime_type in ('application/pdf', 'text/plain', 'text/tab-separated-values', 'text/html'): + # XXX Should use chardet to detect charset for text files here. + return attach + + if major == 'image' and minor in ('png', 'jpeg', 'gif', 'tiff'): + # XXX we should just convert our tiffs to pngs + stream.seek(0, 0) + im = Image.open(stream) + im.verify() + if im.format != minor.upper(): + msg = "Image file format %r does not match extension for %s" + raise ValueError(msg % (im.format, filename)) + + attach['width'], attach['height'] = im.size + return attach + + raise ValueError("Unknown file type for %s" % filename) + + +############################################################################## +# Pipelines + + +def combine(source, pipeline): + """ Construct a combined generator from a source and pipeline + """ + return reduce(lambda x, y: y(x), pipeline, source) + + +def process(rows): + """ Pull rows through the pipeline + """ + for row in rows: + pass + + +def get_pipeline(testapp, docsdir, test_only, item_type, phase=None, method=None): + pipeline = [ + skip_rows_with_all_key_value(test='skip'), + skip_rows_with_all_key_value(_test='skip'), + skip_rows_with_all_falsey_value('test') if test_only else noop, + skip_rows_with_all_falsey_value('_test') if test_only else noop, + remove_keys_with_empty_value, + skip_rows_missing_all_keys('uuid', 'accession', '@id', 'name'), + remove_keys('schema_version'), + warn_keys_with_unknown_value_except_for( + 'lot_id', 'sex', 'life_stage', 'health_status', 'ethnicity', + 'strain_background', 'age', 'version', + 'model_organism_health_status', + 'model_organism_age', + 'model_organism_sex', + 'mouse_life_stage', + 'race', + 'gender' + # 'flowcell_details.machine', + ), + add_attachments(docsdir), + ] + if phase == 1: + method = 'POST' + pipeline.extend(PHASE1_PIPELINES.get(item_type, [])) + elif phase == 2: + method = 'PUT' + pipeline.extend(PHASE2_PIPELINES.get(item_type, [])) + + pipeline.extend([ + request_url(item_type, method), + remove_keys('uuid') if method in ('PUT', 'PATCH') else noop, + make_request(testapp, item_type, method), + pipeline_logger(item_type, phase), + ]) + return pipeline + + +# Additional pipeline sections for item types + +PHASE1_PIPELINES = { + 'user': [ + remove_keys('lab', 'submits_for'), + ], + 'biospecimen': [ + remove_keys('originated_from') + ], + 'biofile': [ + remove_keys('paired_with') + ], + 'bioexperiment': [ + remove_keys('possible_controls'), + ] + +} + + +############################################################################## +# Phase 2 pipelines +# +# A second pass is required to cope with reference cycles. Only rows with +# filtered out keys are updated. + + +PHASE2_PIPELINES = { + 'user': [ + skip_rows_missing_all_keys('lab', 'submits_for'), + ], + 'biospecimen': [ + skip_rows_missing_all_keys('originated_from') + ], + 'biofile': [ + skip_rows_missing_all_keys('paired_with') + ], + 'bioexperiment': [ + skip_rows_missing_all_keys('possible_controls'), + ], +} + + +def load_all(testapp, filename, docsdir, log_level=None, test=False): + if log_level is not None: + _reset_log_level(log_level) + for item_type in ORDER: + try: + source = read_single_sheet(filename, item_type) + except ValueError: + logger.error('Opening %s %s failed.', filename, item_type) + continue + pipeline = get_pipeline(testapp, docsdir, test, item_type, phase=1) + process(combine(source, pipeline)) + + for item_type in ORDER: + if item_type not in PHASE2_PIPELINES: + continue + try: + source = read_single_sheet(filename, item_type) + except ValueError: + continue + pipeline = get_pipeline(testapp, docsdir, test, item_type, phase=2) + process(combine(source, pipeline)) + + +def load_test_data(app): + from webtest import TestApp + environ = { + 'HTTP_ACCEPT': 'application/json', + 'REMOTE_USER': 'TEST', + } + testapp = TestApp(app, environ) + + from pkg_resources import resource_filename + inserts = resource_filename('encoded', 'tests/data/inserts/') + docsdir = [resource_filename('encoded', 'tests/data/documents/')] + load_all(testapp, inserts, docsdir) diff --git a/src/encoded/root.py b/src/encoded/root.py index 428c2616ad..f136f23c5c 100644 --- a/src/encoded/root.py +++ b/src/encoded/root.py @@ -53,7 +53,8 @@ class EncodedRoot(Root): @reify def __acl__(self): acl = acl_from_settings(self.registry.settings) + [ - (Allow, Everyone, ['list', 'search', 'search_audit', 'audit', 'signup']), + (Allow, Everyone, ['list', 'summary', 'search_audit', 'audit', 'signup']), + (Allow, 'group.verified', ['search']), (Allow, 'group.admin', ALL_PERMISSIONS), # Avoid schema validation errors during audit (Allow, 'remoteuser.EMBED', 'import_items'), diff --git a/src/encoded/schema_formats.py b/src/encoded/schema_formats.py index 49f7d52238..61bf1a892c 100644 --- a/src/encoded/schema_formats.py +++ b/src/encoded/schema_formats.py @@ -4,8 +4,8 @@ from pyramid.threadlocal import get_current_request from uuid import UUID -accession_re = re.compile(r'^KCE(FF|BS|LB|PL|PT|SX|BE)[0-9][0-9][0-9][A-Z][A-Z][A-Z]$') -test_accession_re = re.compile(r'^TST(FF|BS|LB|PL|PT|SX|BE)[0-9][0-9][0-9]([0-9][0-9][0-9]|[A-Z][A-Z][A-Z])$') +accession_re = re.compile(r'^[0-9][0-9][0-9][0-9][0-9][0-9]$') +test_accession_re = re.compile(r'^[0-9][0-9][0-9][0-9][0-9][0-9]$') uuid_re = re.compile(r'(?i)\{?(?:[0-9a-f]{4}-?){8}\}?') diff --git a/src/encoded/schemas/award.json b/src/encoded/schemas/award.json index 751a351c2d..cfa7e84f18 100644 --- a/src/encoded/schemas/award.json +++ b/src/encoded/schemas/award.json @@ -192,7 +192,31 @@ "modERN", "Roadmap", "ENCORE", - "Kidney SPORE" + "Kidney SPORE", + + + "Anaplastic ChRCC", + "Arrowhead PDX", + "CMET", + "Double Mutants", + "Genentech - Unknown", + "HIF2I Resistance", + "HLRCC", + "Juan", + "Kakajan Komurov", + "Medgenome", + "mTOR treated", + "non-ccRCC", + "OPRCC", + "Pancreatic mets", + "Pink Tumor", + "SPORE 2", + "T_TG", + "T_Th", + "T_Th - 2018", + "tRCC Human", + "Wakeland" + ] }, "project": { @@ -207,7 +231,29 @@ "modERN", "Roadmap", "ENCORE", - "Kidney SPORE" + "Kidney SPORE", + + "Anaplastic ChRCC", + "Arrowhead PDX", + "CMET", + "Double Mutants", + "Genentech - Unknown", + "HIF2I Resistance", + "HLRCC", + "Juan", + "Kakajan Komurov", + "Medgenome", + "mTOR treated", + "non-ccRCC", + "OPRCC", + "Pancreatic mets", + "Pink Tumor", + "SPORE 2", + "T_TG", + "T_Th", + "T_Th - 2018", + "tRCC Human", + "Wakeland" ] }, "viewing_group": { @@ -275,3 +321,5 @@ }, "changelog": "/profiles/changelogs/award.md" } + + diff --git a/src/encoded/schemas/biodataset.json b/src/encoded/schemas/biodataset.json index 3ff0911773..dbc9c9a6a9 100644 --- a/src/encoded/schemas/biodataset.json +++ b/src/encoded/schemas/biodataset.json @@ -4,7 +4,7 @@ "id": "/profiles/biodataset.json", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", - "required": [ "award", "lab"], + "required": ["lab"], "identifyingProperties": ["uuid", "accession", "aliases"], "additionalProperties": false, "mixinProperties": [ diff --git a/src/encoded/schemas/bioexperiment.json b/src/encoded/schemas/bioexperiment.json index ecdb58ab10..2cc75c3f16 100644 --- a/src/encoded/schemas/bioexperiment.json +++ b/src/encoded/schemas/bioexperiment.json @@ -5,7 +5,7 @@ "id": "/profiles/bioexperiment.json", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", - "required": [ "award", "lab", "assay_term_name", "experiment_description"], + "required": ["lab", "assay_term_name"], "identifyingProperties": [ "uuid", "accession", "aliases"], "additionalProperties": false, "mixinProperties": [ @@ -104,31 +104,29 @@ } }, "facets": { - "assay_term_name": { - "title": "Assay name" + "lab.title": { + "title": "Lab" + }, + "files.award.project": { + "title": "Project" }, - "assembly": { - "title": "Genome assembly" + "files.library_type": { + "title": "Library Type" }, - "bioreplicate.biolibrary.biospecimen.sample_type": { - "title": "Biospecimen sample type", - "type": "typeahead", - "length": "long" + "assay_term_name": { + "title": "Assay name" }, "files.file_format": { "title": "Available file types" }, - "files.platform.term_name": { - "title": "Platform" - }, "files.run_type": { "title": "Run type" }, - "files.read_length": { - "title": "Read length (nt)" + "files.biospecimen.tissue_type": { + "title": "Biospecimen Tissue Type" }, - "bioreplicate.biolibrary.nucleic_acid_term_name": { - "title": "Library material" + "files.biospecimen.anatomic_site": { + "title": "Biospecimen Anatomic Site" }, "date_released": { "title": "Date released" @@ -136,9 +134,7 @@ "date_submitted": { "title": "Date submitted" }, - "replication_type": { - "title": "Replication type" - }, + "status": { "title": "Status" } @@ -147,50 +143,46 @@ "accession": { "title": "Accession" }, - "assay_term_name": { - "title": "Assay name" + "lab.title": { + "title": "Lab" }, - "biospecimen_summary": { - "title": "Biospecimen summary" + "files.award.project": { + "title": "Project" }, - "bioreplicate.biolibrary.biospecimen.sample_type": { - "title": "Biospecimen sample name", - "type": "typeahead", - "length": "long" - }, - "description": { - "title": "Description" + "assay_term_name": { + "title": "Assay name" }, - "status": { - "title": "Status" + "files.library_type": { + "title": "Library Type" }, "files.@id": { "title": "Files" }, - "bioreplicate.biolibrary.biospecimen.accession": { - "title": "Biosample accession" + "files.file_format": { + "title": "Available file types" }, - "bioreplicate.biological_replicate_number": { - "title": "Biological replicate" + "files.run_type": { + "title": "Run type" + }, + "files.biospecimen.tissue_type": { + "title": "Biospecimen Tissue Type" + }, + "files.biospecimen.anatomic_site": { + "title": "Biospecimen Anatomic Site" }, - "bioreplicate.technical_replicate_number": { - "title": "Technical replicate" + "status": { + "title": "Status" } + }, "boost_values": { "accession": 1.0, "assay_term_name": 1.0, - "aliases": 1.0, - "bioreplicate.biolibrary.biospecimen.sample_type": 1.0, "files.accession": 1.0, "files.file_format": 1.0, - "files.output_type": 1.0, - "files.md5sum": 1.0, - "bioreplicate.biolibrary.accession": 1.0, - "bioreplicate.biolibrary.biospecimen.accession": 1.0, - "bioreplicate.biolibrary.nucleic_acid_term_name": 1.0, - "possible_controls.accession": 1.0, - "references.title": 1.0 + "files.md5sum": 1.0 }, "changelog": "/profiles/changelogs/bioexperiment.md" } + + diff --git a/src/encoded/schemas/biofile.json b/src/encoded/schemas/biofile.json index 82ff799945..77536b711d 100644 --- a/src/encoded/schemas/biofile.json +++ b/src/encoded/schemas/biofile.json @@ -4,19 +4,46 @@ "id": "/profiles/biofile.json", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", - "required": ["biodataset", "file_format", "output_type", "md5sum"], - "identifyingProperties": ["uuid", "accession", "aliases"], + "required": [ + "biodataset", + "file_format", + "output_type", + "md5sum" + ], + "identifyingProperties": [ + "uuid", + "accession", + "aliases" + ], "additionalProperties": false, "mixinProperties": [ - { "$ref": "mixins.json#/schema_version" }, - { "$ref": "mixins.json#/uuid" }, - { "$ref": "mixins.json#/accession" }, - { "$ref": "mixins.json#/accessioned_status" }, - { "$ref": "mixins.json#/submitted" }, - { "$ref": "mixins.json#/notes" }, - { "$ref": "mixins.json#/attribution" }, - { "$ref": "mixins.json#/aliases" }, - { "$ref": "mixins.json#/submitter_comment" } + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/uuid" + }, + { + "$ref": "mixins.json#/accession" + }, + { + "$ref": "mixins.json#/accessioned_status" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/notes" + }, + { + "$ref": "mixins.json#/attribution" + }, + { + "$ref": "mixins.json#/aliases" + }, + { + "$ref": "mixins.json#/submitter_comment" + } ], "facets": { "status": { @@ -50,7 +77,9 @@ "dependencies": { "paired_with": { "comment": "Only paired-ended files should have paired_with value.", - "required": ["run_type"], + "required": [ + "run_type" + ], "allOf": [ { "not": { @@ -68,7 +97,9 @@ { "properties": { "run_type": { - "enum": ["paired-ended"] + "enum": [ + "paired-ended" + ] } } } @@ -76,7 +107,9 @@ }, "run_type": { "comment": "run_type should not be specified for PacBio platform FASTQ files. Illumina produced paired-ended files should have paired_end value specified.", - "required": ["platform"], + "required": [ + "platform" + ], "allOf": [ { "not": { @@ -96,18 +129,28 @@ { "properties": { "run_type": { - "enum": ["single-ended"] + "enum": [ + "single-ended" + ] } } }, { - "required": ["paired_end"], + "required": [ + "paired_end" + ], "properties": { "run_type": { - "enum": ["paired-ended"] + "enum": [ + "paired-ended" + ] }, - "paired_end":{ - "enum": ["1", "2", "1,2"] + "paired_end": { + "enum": [ + "1", + "2", + "1,2" + ] } } } @@ -119,7 +162,9 @@ "comment": "Only revoked files can have revoke_detail specified.", "properties": { "status": { - "enum": ["revoked"] + "enum": [ + "revoked" + ] } } }, @@ -127,27 +172,35 @@ "comment": "Only fastq files can have read_name_details specified.", "properties": { "file_format": { - "enum": ["fastq"] + "enum": [ + "fastq" + ] } } }, - "output_type":{ + "output_type": { "comment": "Files with output_type reads and file format fastq, fatsa, csfasta, csqual and sra require read_length to be specified, unless the file was produced by PacBio platform. Files of output_type restriction enzyme site locations require specification of restriction_enzymes", - "oneOf":[ + "oneOf": [ { "properties": { "output_type": { - "enum": ["reads"] + "enum": [ + "reads" + ] } }, "oneOf": [ { "not": { - "required": ["read_length"] + "required": [ + "read_length" + ] }, "properties": { "file_format": { - "enum": ["fastq"] + "enum": [ + "fastq" + ] }, "platform": { "linkTo": "Platform", @@ -155,16 +208,19 @@ "c7564b38-ab4f-4c42-a401-3de48689a998" ] } - } }, { "not": { - "required": ["read_length"] + "required": [ + "read_length" + ] }, "properties": { "file_format": { - "enum": ["fastq"] + "enum": [ + "fastq" + ] }, "platform": { "linkTo": "Platform", @@ -172,14 +228,17 @@ "ced61406-dcc6-43c4-bddd-4c977cc676e8" ] } - } }, { - "required": ["read_length"], + "required": [ + "read_length" + ], "properties": { "file_format": { - "enum": ["fastq"] + "enum": [ + "fastq" + ] }, "not": { "platform": { @@ -202,14 +261,18 @@ { "properties": { "output_type": { - "enum": ["reads"] + "enum": [ + "reads" + ] } } }, { "properties": { "output_type": { - "enum": ["rejected reads"] + "enum": [ + "rejected reads" + ] } } } @@ -218,7 +281,11 @@ }, "platform": { "not": { - "required": ["run_type", "paired_end", "read_length"], + "required": [ + "run_type", + "paired_end", + "read_length" + ], "properties": { "platform": { "linkTo": "Platform", @@ -234,7 +301,9 @@ "oneOf": [ { "not": { - "required":["platform"] + "required": [ + "platform" + ] } }, { @@ -258,20 +327,30 @@ { "oneOf": [ { - "required": ["file_size"], + "required": [ + "file_size" + ], "properties": { "status": { - "enum": ["in progress", "revoked", "archived", "released"] - } + "enum": [ + "in progress", + "revoked", + "archived", + "released" + ] + } } - - }, - { "properties": { "status": { - "enum": ["uploading", "upload failed", "deleted", "replaced", "content error"] + "enum": [ + "uploading", + "upload failed", + "deleted", + "replaced", + "content error" + ] } } } @@ -283,50 +362,73 @@ "comment": "Files with paired-end value 2 require a paired_with value and files with paired_end specified require run_type to be specified as paired-ended", "oneOf": [ { - "required": ["run_type"], + "required": [ + "run_type" + ], "properties": { "paired_end": { - "enum": ["2"] + "enum": [ + "2" + ] }, "run_type": { - "enum": ["paired-ended"] + "enum": [ + "paired-ended" + ] } } }, { - "required": ["run_type"], + "required": [ + "run_type" + ], "properties": { "paired_end": { - "enum": ["1"] + "enum": [ + "1" + ] }, "run_type": { - "enum": ["paired-ended"] + "enum": [ + "paired-ended" + ] } } }, { - "required": ["run_type"], + "required": [ + "run_type" + ], "properties": { "file_format": { - "enum": ["sra"] + "enum": [ + "sra" + ] }, "paired_end": { - "enum": ["1,2"] + "enum": [ + "1,2" + ] }, "run_type": { - "enum": ["paired-ended"] + "enum": [ + "paired-ended" + ] } } } ] }, - "file_format":{ + "file_format": { "comment": "Fastq files require run_type and replicate but should not have assembly. Raw data files require platform to be specified. Processed files require assembly to be specified.", "allOf": [ { "oneOf": [ { - "required": [ "bioreplicate", "platform", "sequencing_replicate_number"], + "required": [ + "bioreplicate", + "platform" + ], "properties": { "file_format": { "enum": [ @@ -337,7 +439,6 @@ } } }, - { "required": [ "file_format_type", @@ -352,7 +453,9 @@ } }, { - "required": ["assembly"], + "required": [ + "assembly" + ], "properties": { "file_format": { "enum": [ @@ -440,7 +543,7 @@ } }, "properties": { - "date_created": { + "date_created": { "rdfs:subPropertyOf": "dc:created", "title": "Date created", "decription": "The date the object was created.", @@ -463,6 +566,17 @@ "type": "string", "linkTo": "Biodataset" }, + "library_type": { + "title": "Library type", + "type": "string", + "enum": ["DNA", "RNA"] + }, + "biospecimen": { + "title": "Biospecimen", + "description": "The Biospecimen the file belongs to.", + "type": "string", + "linkTo": "Biospecimen" + }, "bioreplicate": { "title": "Bioreplicate", "description": "The experimental replicate designation for the file.", @@ -470,13 +584,7 @@ "type": "string", "linkTo": "Bioreplicate" }, - "sequencing_replicate_number": { - "title": "Sequencing replicate", - "description": "Sequencing data collection under the same biolibrary.", - "type": "integer", - "default": 1, - "minimum": 1 - }, + "file_format": { "title": "File format", "type": "string", @@ -514,16 +622,16 @@ "gff3" ] } - ] + ] }, "restricted": { "title": "Restricted file", - "permission":"import_items", + "permission": "import_items", "description": "A flag to indicate whether this file is subject to restricted access", "comment": "Do not submit. This value can only be set by admins.", "type": "boolean" }, - "submitted_file_name": { + "submitted_file_name": { "title": "Original file name", "description": "The local file name used at time of submission.", "comment": "Although this is not required. It is highly recommended.", @@ -545,6 +653,10 @@ "type": "integer", "minimum": 0 }, + "file_path": { + "title": "File path", + "type": "string" + }, "platform": { "title": "Platform", "description": "The measurement device used to collect data.", @@ -620,10 +732,10 @@ "type": "array", "uniqueItems": true, "items": { - "comment": "See biofile.json for a list of available identifiers.", - "type": "string", - "linkTo": "Biofile" - } + "comment": "See biofile.json for a list of available identifiers.", + "type": "string", + "linkTo": "Biofile" + } }, "controlled_by": { "title": "Controlled by", @@ -632,21 +744,21 @@ "type": "array", "uniqueItems": true, "items": { - "comment": "See biofile.json for a list of available identifiers.", - "type": "string", - "linkTo": "Biofile" + "comment": "See biofile.json for a list of available identifiers.", + "type": "string", + "linkTo": "Biofile" } }, "supersedes": { - "title": "Supersedes" , + "title": "Supersedes", "description": "The files that this file supersedes.", "comment": "The files in this list should be obsolete and the superseeding file object should be used instead.", "type": "array", "uniqueItems": true, "items": { - "comment": "The files in this list should be archived or revoked.", - "type": "string", - "linkTo": "Biofile" + "comment": "The files in this list should be archived or revoked.", + "type": "string", + "linkTo": "Biofile" } }, "assembly": { @@ -656,7 +768,7 @@ "type": "string", "enum": [ "GRCh38" - ] + ] }, "genome_annotation": { "title": "Genome annotation", @@ -666,7 +778,7 @@ "enum": [ "ENSEMBL V65", "None" - ] + ] }, "mapped_run_type": { "title": "Mapped run type for bam files", @@ -694,8 +806,9 @@ "default": "uploading", "description": "The status of the file object.", "comment": "Do not submit. This is set by admins along the process of file submission.", - "enum" : [ + "enum": [ "uploading", + "restricted", "upload failed", "in progress", "released", @@ -704,7 +817,7 @@ "replaced", "revoked", "content error" - ] + ] }, "revoke_detail": { "title": "Revoke error detail", @@ -724,15 +837,10 @@ "assembly": { "title": "Genome assembly" }, - "technical_replicates": { - "title": "Technical replicates" - }, "biological_replicates": { "title": "Biological replicates" }, - "sequencing_replicate_number": { - "title": "Sequencing replicates" - }, + "file_format": { "title": "File format" }, @@ -771,206 +879,38 @@ } }, "output_type_output_category": { - "idat green channel": "raw data", - "idat red channel": "raw data", - "intensity values": "raw data", - "reads": "raw data", - "index reads": "raw data", - "rejected reads": "raw data", - "raw data": "raw data", - "reporter code counts": "raw data", - "subreads": "raw data", - "alignments": "alignment", - "unfiltered alignments": "alignment", - "gene alignments": "alignment", - "redacted alignments": "alignment", - "redacted unfiltered alignments": "alignment", - "transcriptome alignments": "alignment", - "spike-in alignments": "alignment", - "maternal haplotype mapping": "alignment", - "paternal haplotype mapping": "alignment", - "phased mapping": "alignment", - - "minus strand signal of all reads": "signal", - "plus strand signal of all reads": "signal", - "signal of all reads": "signal", - "normalized signal of all reads": "signal", - "raw minus strand signal": "signal", - "raw plus strand signal": "signal", - "raw signal": "signal", - "raw normalized signal": "signal", - "read-depth normalized signal": "signal", - "control normalized signal": "signal", - "minus strand signal of unique reads": "signal", - "plus strand signal of unique reads": "signal", - "signal of unique reads": "signal", - "signal p-value": "signal", - "fold change over control": "signal", - "minus strand signal": "signal", - "plus strand signal": "signal", - "signal": "signal", - "base overlap signal": "signal", - "percentage normalized signal":"signal", - "summed densities signal": "signal", - "wavelet-smoothed signal": "signal", - "relative replication signal": "signal", - - "enrichment": "quantification", - "FDR cut rate": "quantification", - "library fraction": "quantification", "exon quantifications": "quantification", + "gene alignments": "alignment", "gene quantifications": "quantification", - "microRNA quantifications": "quantification", - "transcript quantifications": "quantification", - "element quantifications": "quantification", - "methylation state at CpG": "quantification", - "methylation state at CHG": "quantification", - "methylation state at CHH": "quantification", - "filtered modified peptide quantification": "quantification", - "unfiltered modified peptide quantification": "quantification", - "filtered peptide quantification": "quantification", - "unfiltered peptide quantification": "quantification", - "replication timing profile": "quantification", - "motif model": "quantification", - "differential expression quantifications": "quantification", - "differential splicing quantifications": "quantification", - "smoothed methylation stage at CpG": "quantification", - "merged transcription segment quantifications": "quantification", - "transcription segment quantifications": "quantification", - "transcribed region quantifications": "quantification", - - "hotspots": "annotation", - "footprints": "annotation", - "long range chromatin interactions": "annotation", - "chromatin interactions": "annotation", - "mapping quality thresholded chromatin interactions": "annotation", - "topologically associated domains": "annotation", - "nested topologically associated domains": "annotation", - "genome compartments": "annotation", - "open chromatin regions":"annotation", - "filtered peaks":"annotation", - "filtered regions":"annotation", - "DHS peaks": "annotation", - "peaks": "annotation", - "peaks and background as input for IDR": "annotation", - "replicated peaks": "annotation", - "RNA-binding protein associated mRNAs": "annotation", - "splice junctions": "annotation", - "copy number variation": "annotation", - "clusters": "annotation", - "contigs": "annotation", - "transcribed fragments": "annotation", - "filtered transcribed fragments": "annotation", - "valleys": "annotation", - "blacklisted regions": "annotation", - "mitochondria blacklisted regions": "annotation", - "distal peaks": "annotation", - "proximal peaks": "annotation", - "IDR ranked peaks": "annotation", - "IDR thresholded peaks": "annotation", - "optimal IDR thresholded peaks": "annotation", - "conservative IDR thresholded peaks": "annotation", - "pseudoreplicated IDR thresholded peaks": "annotation", - "stable peaks": "annotation", - "predicted forebrain enhancers": "annotation", - "predicted heart enhancers": "annotation", - "predicted whole brain enhancers": "annotation", - "predicted enhancers": "annotation", - "candidate enhancers": "annotation", - "candidate promoters": "annotation", - "predicted transcription start sites": "annotation", - "transcription start sites": "annotation", - "candidate Cis-Regulatory Elements": "annotation", - "representative DNase hypersensitivity sites (rDHSs)": "annotation", - "variant calls": "annotation", - "maternal variant calls": "annotation", - "paternal variant calls": "annotation", - "phased variant calls": "annotation", - "filtered SNPs": "annotation", - "filtered indels": "annotation", - "transcriptome annotations": "annotation", - "miRNA annotations": "annotation", - "non-targeting gRNAs": "annotation", - "negative control regions": "annotation", - "positive control regions": "annotation", - "safe-targeting gRNAs": "annotation", - "regulatory elements": "annotation", - "gRNAs": "annotation", - "ranked gRNAs": "annotation", - - "transcriptome reference": "reference", - "transcriptome index": "reference", "genome index": "reference", - "tRNA reference": "reference", - "miRNA reference": "reference", - "snRNA reference": "reference", - "rRNA reference": "reference", - "TSS reference": "reference", - "reference variants": "reference", "genome reference": "reference", - "female genome reference": "reference", - "female genome index": "reference", - "male genome reference": "reference", - "male genome index": "reference", - "primer sequence": "reference", + "reads": "raw data", + "reference variants": "reference", "spike-in sequence": "reference", - "reference": "reference", - "restriction enzyme site locations": "reference", - "sequence alignability": "reference", - "sequence uniqueness": "reference", - "sequence barcodes": "reference", - "sequence adapters": "reference", - "elements reference": "reference", - "personalized genome assembly": "reference", - "chromosomes reference": "reference", - "hotspots1 reference": "reference", - "hotspots2 reference": "reference", - "mitochondrial genome index": "reference", - "mitochondrial genome reference": "reference", - "chromosome sizes": "reference", - "enhancers reference": "reference", - "promoters reference": "reference", - "DHS regions reference": "reference", - - "enhancer validation": "validation", - "validation": "validation", - - "HMM predicted chromatin state": "annotation", - "semi-automated genome annotation": "annotation" - + "splice junctions": "annotation", + "transcript quantifications": "quantification", + "transcriptome alignments": "alignment", + "transcriptome index": "reference", + "transcriptome reference": "reference", + "unfiltered alignments": "alignment", + "variant calls": "annotation" }, "file_format_file_extension": { - "2bit": ".2bit", - "CEL": ".cel.gz", "bam": ".bam", - "bed": ".bed.gz", - "bedpe": ".bedpe.gz", - "chain": ".chain", + "csv": ".csv", "bigBed": ".bigBed", "bigWig": ".bigWig", - "btr": ".btr", - "csfasta": ".csfasta.gz", - "csqual": ".csqual.gz", - "database": ".db", - "fasta": ".fasta.gz", + "hic": ".hic", "fastq": ".fastq.gz", "gff": ".gff.gz", "gtf": ".gtf.gz", - "idx": ".idx", - "hic": ".hic", - "hdf5": ".h5", "idat": ".idat", - "PWM":".pwm", - "rcc": ".rcc", - "sra": ".sra", - "tagAlign": ".tagAlign.gz", + "sam": ".sam.gz", "tar": ".tar.gz", "tsv": ".tsv", - "csv": ".csv", "vcf": ".vcf.gz", - "wig": ".wig.gz", - "sam": ".sam.gz", + "idx": ".idx", "txt": ".txt.gz" }, "boost_values": { @@ -980,7 +920,8 @@ "file_format": 5.0, "file_format_type": 5.0, "output_type": 2.0, + "output_category": 2.0, "status": 1.0 }, "changelog": "/profiles/changelogs/biofile.md" -} +} \ No newline at end of file diff --git a/src/encoded/schemas/biolibrary.json b/src/encoded/schemas/biolibrary.json index 9f1521a15f..d77f499fc8 100644 --- a/src/encoded/schemas/biolibrary.json +++ b/src/encoded/schemas/biolibrary.json @@ -125,7 +125,7 @@ "biospecimen.sample_type": { "title": "Sample Type" }, - "biospecimen.anatomic_site": { + "biospecimen.anatomic_site_display": { "title": "Anatomic Site" }, "biospecimen.tissue_type": { diff --git a/src/encoded/schemas/biospecimen.json b/src/encoded/schemas/biospecimen.json index 2c8f2bceb3..67e1d19d36 100644 --- a/src/encoded/schemas/biospecimen.json +++ b/src/encoded/schemas/biospecimen.json @@ -4,7 +4,8 @@ "id": "/profiles/biospecimen.json", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", - "required": [ "award", + "required": [ + "award", "specimen_label", "openspecimen_id", "patient", @@ -17,16 +18,33 @@ "anatomic_site", "activity_status" ], - "identifyingProperties": [ "uuid","accession" ], + "identifyingProperties": [ + "uuid", + "accession" + ], "additionalProperties": false, "mixinProperties": [ - { "$ref": "mixins.json#/submitted" }, - { "$ref": "mixins.json#/accessioned_status" }, - { "$ref": "mixins.json#/schema_version" }, - { "$ref": "mixins.json#/accession" }, - { "$ref": "mixins.json#/attribution" }, - { "$ref": "mixins.json#/documents" }, - { "$ref": "mixins.json#/uuid" } + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/accessioned_status" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/accession" + }, + { + "$ref": "mixins.json#/attribution" + }, + { + "$ref": "mixins.json#/documents" + }, + { + "$ref": "mixins.json#/uuid" + } ], "properties": { "schema_version": { @@ -91,7 +109,6 @@ "New", "Derived", "Aliquot" - ] }, "tissue_derivatives": { @@ -107,16 +124,14 @@ "PBMC", "Buffy Coat", "Whole Blood" - ] }, - "completion_date" : { + "completion_date": { "title": "Completion Date", "description": "the date that the biospecimen is created on.", "comment": "Date should be submitted in as YYYY-MM-DD.", "type": "string", "format": "date" - }, "originated_from": { "title": "Originated from", @@ -137,7 +152,6 @@ "Malignant", "Metastatic", "Not Specified" - ] }, "anatomic_site": { @@ -171,7 +185,6 @@ "Spleen", "Testis, NOS", "Thorax, NOS" - ] }, "primary_site": { @@ -451,7 +464,7 @@ "tissue_type": { "title": "Specimen Pathological Type" }, - "anatomic_site": { + "anatomic_site_display": { "title": "Specimen Anatomic Site" }, "species": { @@ -463,32 +476,42 @@ "activity_status": { "title": "Specimen Activity Status" }, - "surgery.pathology_report.histology_filter": { + "surgery.surgery_procedure.pathology_report.histology_filter": { "title": "Histologic Subtype" }, - "surgery.pathology_report.t_stage": { + "surgery.surgery_procedure.pathology_report.t_stage": { "title": "pT Stage (at presentation)" }, - "surgery.pathology_report.n_stage": { + "surgery.surgery_procedure.pathology_report.n_stage": { "title": "pN Stage (at presentation)" }, - "surgery.pathology_report.m_stage": { + "surgery.surgery_procedure.pathology_report.m_stage": { "title": "pM Stage (at presentation)" }, - "surgery.pathology_report.ajcc_version": { + "surgery.surgery_procedure.pathology_report.ajcc_version": { "title": "AJCC Version (at presentation)" }, - "surgery.pathology_report.ajcc_tnm_stage": { + "surgery.surgery_procedure.pathology_report.ajcc_tnm_stage": { "title": "TNM Stage (at presentation)" }, - "biolibrary.nucleic_acid_term_name": { - "title": "Library Material" + "genomic_consent.genomic_release": { + "title": "Genomic Release" + }, + "genomic_consent.item_status": { + "title": "Biospecimen Release" + }, + + "biofile.award.project": { + "title": "Genomics Project" + }, + "biofile.assay_term_name": { + "title": "Genomics Assay" }, - "biolibrary.biofile.file_format": { - "title": "File Format" + "biofile.library_type": { + "title": "Genomics Library Type" }, - "biolibrary.biofile.output_type": { - "title": "File Output Type" + "biofile.file_format": { + "title": "Genomics File Format" }, "status": { "title": "Status" @@ -516,7 +539,7 @@ "tissue_type": { "title": "Specimen Pathological Type" }, - "anatomic_site": { + "anatomic_site_display": { "title": "Anatomic Site" }, "species": { @@ -528,9 +551,25 @@ "activity_status": { "title": "Specimen Activity Status" }, - "surgery.pathology_report.histology": { + "surgery.surgery_procedure.pathology_report.histology": { "title": "Histologic Subtype" }, + + "biofile.award.project": { + "title": "Genomics Project" + }, + "biofile.assay_term_name": { + "title": "Genomics Assay" + }, + "biofile.library_type": { + "title": "Genomics Library Type" + }, + "biofile.@id": { + "title": "Genomics Files" + }, + "biofile.file_format": { + "title": "Genomics File Format" + }, "status": { "title": "Status" } @@ -540,9 +579,7 @@ "patient": 1.0, "openspecimen_id": 1.0, "specimen_label": 1.0, - "anatomic_site": 1.0, - "biolibrary.accession": 1.0, - "biolibrary.biofile.accession": 1.0 + "anatomic_site": 1.0 }, "changelog": "/profiles/changelogs/biospecimen.md" } diff --git a/src/encoded/schemas/changelogs/concussion_history.md b/src/encoded/schemas/changelogs/concussion_history.md new file mode 100644 index 0000000000..2e76f10aae --- /dev/null +++ b/src/encoded/schemas/changelogs/concussion_history.md @@ -0,0 +1,6 @@ +## Changelog for concussion_history.json + + +### Schema version 1 + +* New schema for uds concussion_history added diff --git a/src/encoded/schemas/changelogs/concussion_history_follow_up.md b/src/encoded/schemas/changelogs/concussion_history_follow_up.md new file mode 100644 index 0000000000..fb7d43a8f0 --- /dev/null +++ b/src/encoded/schemas/changelogs/concussion_history_follow_up.md @@ -0,0 +1,6 @@ +## Changelog for concussion_history_follow_up.json + + +### Schema version 1 + +* New schema for uds concussion_history_follow_up added diff --git a/src/encoded/schemas/changelogs/consent.md b/src/encoded/schemas/changelogs/consent.md index dbceff88fe..01857d511f 100644 --- a/src/encoded/schemas/changelogs/consent.md +++ b/src/encoded/schemas/changelogs/consent.md @@ -3,3 +3,4 @@ ### Schema version 1 * New schema for consent added +*New schema reedit \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a1v1.md b/src/encoded/schemas/changelogs/fvp_a1v1.md new file mode 100644 index 0000000000..6c515297f5 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a1v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a1v1.json + + +### Schema version 1 + +* New schema for uds fvp_a1v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a1v2.md b/src/encoded/schemas/changelogs/fvp_a1v2.md new file mode 100644 index 0000000000..9bddace81b --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a1v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a1v2.json + + +### Schema version 1 + +* New schema for uds fvp_a1v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a1v3.md b/src/encoded/schemas/changelogs/fvp_a1v3.md new file mode 100644 index 0000000000..dd8c1ba561 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a1v3.md @@ -0,0 +1,7 @@ + +## Changelog for fvp_a1v3.json + + +### Schema version 1 + +* New schema for uds fvp_a1v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a2v1.md b/src/encoded/schemas/changelogs/fvp_a2v1.md new file mode 100644 index 0000000000..b4c1054890 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a2v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a2v1.json + + +### Schema version 1 + +* New schema for uds fvp_a2v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a2v2.md b/src/encoded/schemas/changelogs/fvp_a2v2.md new file mode 100644 index 0000000000..89a049a1b0 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a2v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a2v2.json + + +### Schema version 1 + +* New schema for uds fvp_a2v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a2v3.md b/src/encoded/schemas/changelogs/fvp_a2v3.md new file mode 100644 index 0000000000..9872e0c527 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a2v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a2v3.json + + +### Schema version 1 + +* New schema for uds fvp_a2v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a3v1.md b/src/encoded/schemas/changelogs/fvp_a3v1.md new file mode 100644 index 0000000000..91faea537d --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a3v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a3v1.json + + +### Schema version 1 + +* New schema for uds fvp_a3v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a3v2.md b/src/encoded/schemas/changelogs/fvp_a3v2.md new file mode 100644 index 0000000000..0e5a55a5ec --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a3v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a3v2.json + + +### Schema version 1 + +* New schema for uds fvp_a3v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a3v3.md b/src/encoded/schemas/changelogs/fvp_a3v3.md new file mode 100644 index 0000000000..6b6b9aeab3 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a3v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a3v3.json + + +### Schema version 1 + +* New schema for uds fvp_a3v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a4v1.md b/src/encoded/schemas/changelogs/fvp_a4v1.md new file mode 100644 index 0000000000..379d1dbd7f --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a4v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a4v1.json + + +### Schema version 1 + +* New schema for uds fvp_a4v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a4v2.md b/src/encoded/schemas/changelogs/fvp_a4v2.md new file mode 100644 index 0000000000..dcad42406c --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a4v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a4v2.json + + +### Schema version 1 + +* New schema for uds fvp_a4v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a4v3.md b/src/encoded/schemas/changelogs/fvp_a4v3.md new file mode 100644 index 0000000000..39c6cc5a94 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a4v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a4v3.json + + +### Schema version 1 + +* New schema for uds fvp_a4v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a5v1.md b/src/encoded/schemas/changelogs/fvp_a5v1.md new file mode 100644 index 0000000000..5f808b019b --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a5v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a5v1.json + + +### Schema version 1 + +* New schema for uds fvp_a5v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_a5v2.md b/src/encoded/schemas/changelogs/fvp_a5v2.md new file mode 100644 index 0000000000..92d13ee4eb --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_a5v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_a5v2.json + + +### Schema version 1 + +* New schema for uds fvp_a5v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b1v1.md b/src/encoded/schemas/changelogs/fvp_b1v1.md new file mode 100644 index 0000000000..8bdfe6bea4 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b1v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b1v1.json + + +### Schema version 1 + +* New schema for uds fvp_b1v1 added diff --git a/src/encoded/schemas/changelogs/fvp_b1v2.md b/src/encoded/schemas/changelogs/fvp_b1v2.md new file mode 100644 index 0000000000..2cd2b777cc --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b1v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b1v2.json + + +### Schema version 1 + +* New schema for uds fvp_b1v2 added diff --git a/src/encoded/schemas/changelogs/fvp_b1v3.md b/src/encoded/schemas/changelogs/fvp_b1v3.md new file mode 100644 index 0000000000..6313b27464 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b1v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b1v3.json + + +### Schema version 1 + +* New schema for uds fvp_b1v3 added diff --git a/src/encoded/schemas/changelogs/fvp_b2v1.md b/src/encoded/schemas/changelogs/fvp_b2v1.md new file mode 100644 index 0000000000..1c19d031f3 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b2v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b2v1.json + + +### Schema version 1 + +* New schema for uds fvp_b2v1 added diff --git a/src/encoded/schemas/changelogs/fvp_b2v2.md b/src/encoded/schemas/changelogs/fvp_b2v2.md new file mode 100644 index 0000000000..2c31eddf2e --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b2v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b2v2.json + + +### Schema version 1 + +* New schema for uds fvp_b2v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b3v1.md b/src/encoded/schemas/changelogs/fvp_b3v1.md new file mode 100644 index 0000000000..fccba6b967 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b3v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b3v1.json + + +### Schema version 1 + +* New schema for uds fvp_b3v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b3v2.md b/src/encoded/schemas/changelogs/fvp_b3v2.md new file mode 100644 index 0000000000..8f6213fe83 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b3v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b3v2.json + + +### Schema version 1 + +* New schema for uds fvp_b3v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b4v1.md b/src/encoded/schemas/changelogs/fvp_b4v1.md new file mode 100644 index 0000000000..ec93ae4460 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b4v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b4v1.json + + +### Schema version 1 + +* New schema for uds fvp_b4v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b4v2.md b/src/encoded/schemas/changelogs/fvp_b4v2.md new file mode 100644 index 0000000000..adca9f306f --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b4v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b4v2.json + + +### Schema version 1 + +* New schema for uds fvp_b4v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b4v3.md b/src/encoded/schemas/changelogs/fvp_b4v3.md new file mode 100644 index 0000000000..4040adc2b9 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b4v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b4v3.json + + +### Schema version 1 + +* New schema for uds fvp_b4v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b5v1.md b/src/encoded/schemas/changelogs/fvp_b5v1.md new file mode 100644 index 0000000000..caf297e324 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b5v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b5v1.json + + +### Schema version 1 + +* New schema for uds fvp_b5v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b5v2.md b/src/encoded/schemas/changelogs/fvp_b5v2.md new file mode 100644 index 0000000000..3281a42121 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b5v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b5v2.json + + +### Schema version 1 + +* New schema for uds fvp_b5v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b5v3.md b/src/encoded/schemas/changelogs/fvp_b5v3.md new file mode 100644 index 0000000000..66e8541072 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b5v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b5v3.json + + +### Schema version 1 + +* New schema for uds fvp_b5v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b6v1.md b/src/encoded/schemas/changelogs/fvp_b6v1.md new file mode 100644 index 0000000000..8ceae96558 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b6v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b6v1.json + + +### Schema version 1 + +* New schema for uds fvp_b6v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b6v2.md b/src/encoded/schemas/changelogs/fvp_b6v2.md new file mode 100644 index 0000000000..d6a2fb2695 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b6v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b6v2.json + + +### Schema version 1 + +* New schema for uds fvp_b6v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b6v3.md b/src/encoded/schemas/changelogs/fvp_b6v3.md new file mode 100644 index 0000000000..923d8c13a3 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b6v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b6v3.json + + +### Schema version 1 + +* New schema for uds fvp_b6v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b7v1.md b/src/encoded/schemas/changelogs/fvp_b7v1.md new file mode 100644 index 0000000000..4f0ba3efe2 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b7v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b7v1.json + + +### Schema version 1 + +* New schema for uds fvp_b7v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b7v2.md b/src/encoded/schemas/changelogs/fvp_b7v2.md new file mode 100644 index 0000000000..2fcd05dbdf --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b7v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b7v2.json + + +### Schema version 1 + +* New schema for uds fvp_b7v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b7v3.md b/src/encoded/schemas/changelogs/fvp_b7v3.md new file mode 100644 index 0000000000..85548be7c5 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b7v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b7v3.json + + +### Schema version 1 + +* New schema for uds fvp_b7v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b8v1.md b/src/encoded/schemas/changelogs/fvp_b8v1.md new file mode 100644 index 0000000000..f7ff7b8500 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b8v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b8v1.json + + +### Schema version 1 + +* New schema for uds fvp_b8v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b8v2.md b/src/encoded/schemas/changelogs/fvp_b8v2.md new file mode 100644 index 0000000000..fcd5d70c4d --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b8v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b8v2.json + + +### Schema version 1 + +* New schema for uds fvp_b8v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b8v3.md b/src/encoded/schemas/changelogs/fvp_b8v3.md new file mode 100644 index 0000000000..765d90b19d --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b8v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b8v3.json + + +### Schema version 1 + +* New schema for uds fvp_b8v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b9v1.md b/src/encoded/schemas/changelogs/fvp_b9v1.md new file mode 100644 index 0000000000..6ccab804f5 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b9v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b9v1.json + + +### Schema version 1 + +* New schema for uds fvp_b9v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b9v2.md b/src/encoded/schemas/changelogs/fvp_b9v2.md new file mode 100644 index 0000000000..20f8cd20a9 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b9v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b9v2.json + + +### Schema version 1 + +* New schema for uds fvp_b9v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_b9v3.md b/src/encoded/schemas/changelogs/fvp_b9v3.md new file mode 100644 index 0000000000..3937607a92 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_b9v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_b9v3.json + + +### Schema version 1 + +* New schema for uds fvp_b9v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_c1v1.md b/src/encoded/schemas/changelogs/fvp_c1v1.md new file mode 100644 index 0000000000..2cb2ad1cd6 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_c1v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_c1v1.json + + +### Schema version 1 + +* New schema for uds fvp_c1v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_c1v2.md b/src/encoded/schemas/changelogs/fvp_c1v2.md new file mode 100644 index 0000000000..b285af9f98 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_c1v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_c1v2.json + + +### Schema version 1 + +* New schema for uds fvp_c1v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_c1v3.md b/src/encoded/schemas/changelogs/fvp_c1v3.md new file mode 100644 index 0000000000..fc28d5ee0f --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_c1v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_c1v3.json + + +### Schema version 1 + +* New schema for uds fvp_c1v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_c2v3.md b/src/encoded/schemas/changelogs/fvp_c2v3.md new file mode 100644 index 0000000000..8237c383ef --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_c2v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_c2v3.json + + +### Schema version 1 + +* New schema for uds fvp_c2v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_d1v1.md b/src/encoded/schemas/changelogs/fvp_d1v1.md new file mode 100644 index 0000000000..ea5f87adce --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_d1v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_d1v1.json + + +### Schema version 1 + +* New schema for uds fvp_d1v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_d1v2.md b/src/encoded/schemas/changelogs/fvp_d1v2.md new file mode 100644 index 0000000000..c5efaa0370 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_d1v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_d1v2.json + + +### Schema version 1 + +* New schema for uds fvp_d1v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_d1v3.md b/src/encoded/schemas/changelogs/fvp_d1v3.md new file mode 100644 index 0000000000..ac5ac37c04 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_d1v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_d1v3.json + + +### Schema version 1 + +* New schema for uds fvp_d1v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_d2v3.md b/src/encoded/schemas/changelogs/fvp_d2v3.md new file mode 100644 index 0000000000..ca6a942e1d --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_d2v3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_d2v3.json + + +### Schema version 1 + +* New schema for uds fvp_d2v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_e1v1.md b/src/encoded/schemas/changelogs/fvp_e1v1.md new file mode 100644 index 0000000000..2002228ed8 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_e1v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_e1v1.json + + +### Schema version 1 + +* New schema for uds fvp_e1v1 added diff --git a/src/encoded/schemas/changelogs/fvp_e1v2.md b/src/encoded/schemas/changelogs/fvp_e1v2.md new file mode 100644 index 0000000000..ea3e23b830 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_e1v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_e1v2.json + + +### Schema version 1 + +* New schema for uds fvp_e1v2 added diff --git a/src/encoded/schemas/changelogs/fvp_z1v1.md b/src/encoded/schemas/changelogs/fvp_z1v1.md new file mode 100644 index 0000000000..954c100ab2 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_z1v1.md @@ -0,0 +1,6 @@ +## Changelog for fvp_z1v1.json + + +### Schema version 1 + +* New schema for uds fvp_z1v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_z1v2.md b/src/encoded/schemas/changelogs/fvp_z1v2.md new file mode 100644 index 0000000000..ef00e68abc --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_z1v2.md @@ -0,0 +1,6 @@ +## Changelog for fvp_z1v2.json + + +### Schema version 1 + +* New schema for uds fvp_z1v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/fvp_z1xv3.md b/src/encoded/schemas/changelogs/fvp_z1xv3.md new file mode 100644 index 0000000000..4448105948 --- /dev/null +++ b/src/encoded/schemas/changelogs/fvp_z1xv3.md @@ -0,0 +1,6 @@ +## Changelog for fvp_z1xv3.json + + +### Schema version 1 + +* New schema for uds fvp_z1xv3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a1v1.md b/src/encoded/schemas/changelogs/ivp_a1v1.md new file mode 100644 index 0000000000..ff3ea9d123 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a1v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a1v1.json + + +### Schema version 1 + +* New schema for uds ivp_a1v1 added diff --git a/src/encoded/schemas/changelogs/ivp_a1v2.md b/src/encoded/schemas/changelogs/ivp_a1v2.md new file mode 100644 index 0000000000..9a371822c6 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a1v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a1v2.json + + +### Schema version 1 + +* New schema for uds ivp_a1v2 added diff --git a/src/encoded/schemas/changelogs/ivp_a1v3.md b/src/encoded/schemas/changelogs/ivp_a1v3.md new file mode 100644 index 0000000000..6d60687d55 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a1v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a1v3.json + + +### Schema version 1 + +* New schema for uds ivp_a1v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a2.md b/src/encoded/schemas/changelogs/ivp_a2.md new file mode 100644 index 0000000000..92f4ce6525 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a2.json + + +### Schema version 1 + +* New schema for uds ivp_a2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a2v1.md b/src/encoded/schemas/changelogs/ivp_a2v1.md new file mode 100644 index 0000000000..28a9a3bdaf --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a2v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a2v1.json + + +### Schema version 1 + +* New schema for uds ivp_a2v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a2v2.md b/src/encoded/schemas/changelogs/ivp_a2v2.md new file mode 100644 index 0000000000..1c4cb22c08 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a2v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a2v2.json + + +### Schema version 1 + +* New schema for uds ivp_a2v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a2v3.md b/src/encoded/schemas/changelogs/ivp_a2v3.md new file mode 100644 index 0000000000..5f4803f22e --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a2v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a2v3.json + + +### Schema version 1 + +* New schema for uds ivp_a2v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a3.md b/src/encoded/schemas/changelogs/ivp_a3.md new file mode 100644 index 0000000000..1dc7ff378a --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a3.json + + +### Schema version 1 + +* New schema for uds ivp_a3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a3v1.md b/src/encoded/schemas/changelogs/ivp_a3v1.md new file mode 100644 index 0000000000..5c8b75a944 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a3v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a3v1.json + + +### Schema version 1 + +* New schema for uds ivp_a3v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a3v2.md b/src/encoded/schemas/changelogs/ivp_a3v2.md new file mode 100644 index 0000000000..0919f651ca --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a3v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a3v2.json + + +### Schema version 1 + +* New schema for uds ivp_a3v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a3v3.md b/src/encoded/schemas/changelogs/ivp_a3v3.md new file mode 100644 index 0000000000..53e5df1890 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a3v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a3v3.json + + +### Schema version 1 + +* New schema for uds ivp_a3v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a4.md b/src/encoded/schemas/changelogs/ivp_a4.md new file mode 100644 index 0000000000..97c6bdb564 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a4.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a4.json + + +### Schema version 1 + +* New schema for uds ivp_a4 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a4v1.md b/src/encoded/schemas/changelogs/ivp_a4v1.md new file mode 100644 index 0000000000..fef2c2d237 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a4v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a4v1.json + + +### Schema version 1 + +* New schema for uds ivp_a4v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a4v2.md b/src/encoded/schemas/changelogs/ivp_a4v2.md new file mode 100644 index 0000000000..45a7eec66b --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a4v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a4v2.json + + +### Schema version 1 + +* New schema for uds ivp_a4v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a4v3.md b/src/encoded/schemas/changelogs/ivp_a4v3.md new file mode 100644 index 0000000000..73099ab722 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a4v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a4v3.json + + +### Schema version 1 + +* New schema for uds ivp_a4v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_a5.md b/src/encoded/schemas/changelogs/ivp_a5.md new file mode 100644 index 0000000000..3352297307 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a5.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a5.json + + +### Schema version 1 + +* New schema for uds ivp_a5 added diff --git a/src/encoded/schemas/changelogs/ivp_a5v1.md b/src/encoded/schemas/changelogs/ivp_a5v1.md new file mode 100644 index 0000000000..758a2b9ac6 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a5v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a5v1.json + + +### Schema version 1 + +* New schema for uds ivp_a5v1 added diff --git a/src/encoded/schemas/changelogs/ivp_a5v2.md b/src/encoded/schemas/changelogs/ivp_a5v2.md new file mode 100644 index 0000000000..437e78c177 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a5v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a5v2.json + + +### Schema version 1 + +* New schema for uds ivp_a5v2 added diff --git a/src/encoded/schemas/changelogs/ivp_a5v3.md b/src/encoded/schemas/changelogs/ivp_a5v3.md new file mode 100644 index 0000000000..9492c6487b --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_a5v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_a5v3.json + + +### Schema version 1 + +* New schema for uds ivp_a5v3 added diff --git a/src/encoded/schemas/changelogs/ivp_b1.md b/src/encoded/schemas/changelogs/ivp_b1.md new file mode 100644 index 0000000000..70684b8dfb --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b1.json + + +### Schema version 1 + +* New schema for ivp_b1 added diff --git a/src/encoded/schemas/changelogs/ivp_b1v1.md b/src/encoded/schemas/changelogs/ivp_b1v1.md new file mode 100644 index 0000000000..b691255525 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b1v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b1v1.json + + +### Schema version 1 + +* New schema for ivp_b1v1 added diff --git a/src/encoded/schemas/changelogs/ivp_b1v2.md b/src/encoded/schemas/changelogs/ivp_b1v2.md new file mode 100644 index 0000000000..76e01e1e51 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b1v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b1v2.json + + +### Schema version 1 + +* New schema for ivp_b1v2 added diff --git a/src/encoded/schemas/changelogs/ivp_b1v3.md b/src/encoded/schemas/changelogs/ivp_b1v3.md new file mode 100644 index 0000000000..2e390f3637 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b1v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b1v3.json + + +### Schema version 1 + +* New schema for ivp_b1v3 added diff --git a/src/encoded/schemas/changelogs/ivp_b2v1.md b/src/encoded/schemas/changelogs/ivp_b2v1.md new file mode 100644 index 0000000000..3bfd0ab5b6 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b2v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b2v1.json + + +### Schema version 1 + +* New schema for uds ivp_b2v1 added diff --git a/src/encoded/schemas/changelogs/ivp_b2v2.md b/src/encoded/schemas/changelogs/ivp_b2v2.md new file mode 100644 index 0000000000..6f59efa0ee --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b2v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b2v2.json + + +### Schema version 1 + +* New schema for uds ivp_b2v2 added diff --git a/src/encoded/schemas/changelogs/ivp_b3v1.md b/src/encoded/schemas/changelogs/ivp_b3v1.md new file mode 100644 index 0000000000..37ae0f075d --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b3v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b3v1.json + + +### Schema version 1 + +* New schema for uds ivp_b3v1 added diff --git a/src/encoded/schemas/changelogs/ivp_b3v2.md b/src/encoded/schemas/changelogs/ivp_b3v2.md new file mode 100644 index 0000000000..7bdcb44983 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b3v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b3v2.json + + +### Schema version 1 + +* New schema for uds ivp_b3v2 added diff --git a/src/encoded/schemas/changelogs/ivp_b4.md b/src/encoded/schemas/changelogs/ivp_b4.md new file mode 100644 index 0000000000..954092ce55 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b4.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b4.json + + +### Schema version 1 + +* New schema for uds ivp_b4 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_b4v1.md b/src/encoded/schemas/changelogs/ivp_b4v1.md new file mode 100644 index 0000000000..c432994e31 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b4v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b4v1.json + + +### Schema version 1 + +* New schema for uds ivp_b4v1 added diff --git a/src/encoded/schemas/changelogs/ivp_b4v2.md b/src/encoded/schemas/changelogs/ivp_b4v2.md new file mode 100644 index 0000000000..db51e2a9ac --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b4v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b2v2.json + + +### Schema version 1 + +* New schema for uds ivp_b2v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_b4v3.md b/src/encoded/schemas/changelogs/ivp_b4v3.md new file mode 100644 index 0000000000..4c95efb9e3 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b4v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b2v3.json + + +### Schema version 1 + +* New schema for uds ivp_b2v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_b5.md b/src/encoded/schemas/changelogs/ivp_b5.md new file mode 100644 index 0000000000..abc7702aa0 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b5.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b5.json + + +### Schema version 1 + +* New schema for uds ivp_b5 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_b5v1.md b/src/encoded/schemas/changelogs/ivp_b5v1.md new file mode 100644 index 0000000000..24c50f968d --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b5v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b5v1.json + + +### Schema version 1 + +* New schema for uds ivp_b5v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_b5v2.md b/src/encoded/schemas/changelogs/ivp_b5v2.md new file mode 100644 index 0000000000..9b96d027d6 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b5v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b5v2.json + + +### Schema version 1 + +* New schema for uds ivp_b5v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_b5v3.md b/src/encoded/schemas/changelogs/ivp_b5v3.md new file mode 100644 index 0000000000..46c5dcf611 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b5v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b5v3.json + + +### Schema version 1 + +* New schema for uds ivp_b5v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_b6.md b/src/encoded/schemas/changelogs/ivp_b6.md new file mode 100644 index 0000000000..7a9e04de95 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b6.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b6.json + + +### Schema version 1 + +* New schema for uds ivp_b6 added diff --git a/src/encoded/schemas/changelogs/ivp_b6v1.md b/src/encoded/schemas/changelogs/ivp_b6v1.md new file mode 100644 index 0000000000..951c61ab98 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b6v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b6v1.json + + +### Schema version 1 + +* New schema for uds ivp_b6v1 added diff --git a/src/encoded/schemas/changelogs/ivp_b6v2.md b/src/encoded/schemas/changelogs/ivp_b6v2.md new file mode 100644 index 0000000000..1e4673f0cf --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b6v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b6v2.json + + +### Schema version 1 + +* New schema for uds ivp_b6v2 added diff --git a/src/encoded/schemas/changelogs/ivp_b6v3.md b/src/encoded/schemas/changelogs/ivp_b6v3.md new file mode 100644 index 0000000000..fb720071c3 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b6v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b6v3.json + + +### Schema version 1 + +* New schema for uds ivp_b6v3 added diff --git a/src/encoded/schemas/changelogs/ivp_b7.md b/src/encoded/schemas/changelogs/ivp_b7.md new file mode 100644 index 0000000000..95519161fa --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b7.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b7.json + + +### Schema version 1 + +* New schema for uds ivp_b7 added diff --git a/src/encoded/schemas/changelogs/ivp_b7v2.md b/src/encoded/schemas/changelogs/ivp_b7v2.md new file mode 100644 index 0000000000..3aeea6aaa1 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b7v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b7v2.json + + +### Schema version 1 + +* New schema for uds ivp_b7v2 added diff --git a/src/encoded/schemas/changelogs/ivp_b7v3.md b/src/encoded/schemas/changelogs/ivp_b7v3.md new file mode 100644 index 0000000000..144f55fddc --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b7v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b7v3.json + + +### Schema version 1 + +* New schema for uds ivp_b7v3 added diff --git a/src/encoded/schemas/changelogs/ivp_b8.md b/src/encoded/schemas/changelogs/ivp_b8.md new file mode 100644 index 0000000000..b475d6b30f --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b8.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b8.json + + +### Schema version 1 + +* New schema for uds ivp_b8 added diff --git a/src/encoded/schemas/changelogs/ivp_b8v1.md b/src/encoded/schemas/changelogs/ivp_b8v1.md new file mode 100644 index 0000000000..3382fc7f9f --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b8v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b8v1.json + + +### Schema version 1 + +* New schema for uds ivp_b8v1 added diff --git a/src/encoded/schemas/changelogs/ivp_b8v2.md b/src/encoded/schemas/changelogs/ivp_b8v2.md new file mode 100644 index 0000000000..587bb1531e --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b8v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b8v2.json + + +### Schema version 1 + +* New schema for uds ivp_b8v2 added diff --git a/src/encoded/schemas/changelogs/ivp_b8v3.md b/src/encoded/schemas/changelogs/ivp_b8v3.md new file mode 100644 index 0000000000..964ef01f50 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b8v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b8v3.json + + +### Schema version 1 + +* New schema for uds ivp_b8v3 added diff --git a/src/encoded/schemas/changelogs/ivp_b9.md b/src/encoded/schemas/changelogs/ivp_b9.md new file mode 100644 index 0000000000..7975866244 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b9.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b9.json + + +### Schema version 1 + +* New schema for uds ivp_b9 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_b9v1.md b/src/encoded/schemas/changelogs/ivp_b9v1.md new file mode 100644 index 0000000000..efd562ddd4 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b9v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b9v1.json + + +### Schema version 1 + +* New schema for uds ivp_b9v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_b9v2.md b/src/encoded/schemas/changelogs/ivp_b9v2.md new file mode 100644 index 0000000000..e2f30397ed --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b9v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b9v2.json + + +### Schema version 1 + +* New schema for uds ivp_b9v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_b9v3.md b/src/encoded/schemas/changelogs/ivp_b9v3.md new file mode 100644 index 0000000000..08b1943649 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_b9v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_b9v3.json + + +### Schema version 1 + +* New schema for uds ivp_b9v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_c1v1.md b/src/encoded/schemas/changelogs/ivp_c1v1.md new file mode 100644 index 0000000000..2b0cf7f4e4 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_c1v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_c1v1.json + + +### Schema version 1 + +* New schema for uds ivp_c1v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_c1v2.md b/src/encoded/schemas/changelogs/ivp_c1v2.md new file mode 100644 index 0000000000..ac2d205918 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_c1v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_c1v2.json + + +### Schema version 1 + +* New schema for uds ivp_c1v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_c2.md b/src/encoded/schemas/changelogs/ivp_c2.md new file mode 100644 index 0000000000..3f436a3335 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_c2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_c2.json + + +### Schema version 1 + +* New schema for uds ivp_c2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_c2v2.md b/src/encoded/schemas/changelogs/ivp_c2v2.md new file mode 100644 index 0000000000..7acec633d3 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_c2v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_c2v2.json + + +### Schema version 1 + +* New schema for uds ivp_c2v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_c2v3.md b/src/encoded/schemas/changelogs/ivp_c2v3.md new file mode 100644 index 0000000000..039f8f4d03 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_c2v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_c2v3.json + + +### Schema version 1 + +* New schema for uds ivp_c2v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_d1.md b/src/encoded/schemas/changelogs/ivp_d1.md new file mode 100644 index 0000000000..18d85029c7 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_d1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_d1.json + + +### Schema version 1 + +* New schema for uds ivp_d1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_d1v1.md b/src/encoded/schemas/changelogs/ivp_d1v1.md new file mode 100644 index 0000000000..edecccc179 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_d1v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_d1v1.json + + +### Schema version 1 + +* New schema for uds ivp_d1v1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_d1v2.md b/src/encoded/schemas/changelogs/ivp_d1v2.md new file mode 100644 index 0000000000..d8888cd094 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_d1v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_d1v2.json + + +### Schema version 1 + +* New schema for uds ivp_d1v2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_d1v3.md b/src/encoded/schemas/changelogs/ivp_d1v3.md new file mode 100644 index 0000000000..92d4d07af1 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_d1v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_d1v3.json + + +### Schema version 1 + +* New schema for uds ivp_d1v3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_d2.md b/src/encoded/schemas/changelogs/ivp_d2.md new file mode 100644 index 0000000000..2d784ebf1c --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_d2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_d2.json + + +### Schema version 1 + +* New schema for ivp_d2 added diff --git a/src/encoded/schemas/changelogs/ivp_d2v2.md b/src/encoded/schemas/changelogs/ivp_d2v2.md new file mode 100644 index 0000000000..5f2a2b43c8 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_d2v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_d2v2.json + + +### Schema version 1 + +* New schema for ivp_d2v2 added diff --git a/src/encoded/schemas/changelogs/ivp_d2v3.md b/src/encoded/schemas/changelogs/ivp_d2v3.md new file mode 100644 index 0000000000..e6bc3d94b0 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_d2v3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_d2v3.json + + +### Schema version 1 + +* New schema for ivp_d2v3 added diff --git a/src/encoded/schemas/changelogs/ivp_e1v1.md b/src/encoded/schemas/changelogs/ivp_e1v1.md new file mode 100644 index 0000000000..92b4123619 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_e1v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_e1v1.json + + +### Schema version 1 + +* New schema for uds ivp_e1v1 added diff --git a/src/encoded/schemas/changelogs/ivp_e1v2.md b/src/encoded/schemas/changelogs/ivp_e1v2.md new file mode 100644 index 0000000000..2adabe1818 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_e1v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_e1v2.json + + +### Schema version 1 + +* New schema for uds ivp_e1v2 added diff --git a/src/encoded/schemas/changelogs/ivp_z1v1.md b/src/encoded/schemas/changelogs/ivp_z1v1.md new file mode 100644 index 0000000000..09f22bb48f --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_z1v1.md @@ -0,0 +1,6 @@ +## Changelog for ivp_z1v1.json + + +### Schema version 1 + +* New schema for uds ivp_z1v1 added diff --git a/src/encoded/schemas/changelogs/ivp_z1v2.md b/src/encoded/schemas/changelogs/ivp_z1v2.md new file mode 100644 index 0000000000..3fe423fcd7 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_z1v2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_z1v2.json + + +### Schema version 1 + +* New schema for uds ivp_z1v2 added diff --git a/src/encoded/schemas/changelogs/ivp_z1x.md b/src/encoded/schemas/changelogs/ivp_z1x.md new file mode 100644 index 0000000000..8da7a86360 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_z1x.md @@ -0,0 +1,6 @@ +## Changelog for ivp_z1x.json + + +### Schema version 1 + +* New schema for uds ivp_z1x added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_z1xv2.md b/src/encoded/schemas/changelogs/ivp_z1xv2.md new file mode 100644 index 0000000000..0b184f59c3 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_z1xv2.md @@ -0,0 +1,6 @@ +## Changelog for ivp_z1xv2.json + + +### Schema version 1 + +* New schema for uds ivp_z1xv2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/ivp_z1xv3.md b/src/encoded/schemas/changelogs/ivp_z1xv3.md new file mode 100644 index 0000000000..cd9fad9a93 --- /dev/null +++ b/src/encoded/schemas/changelogs/ivp_z1xv3.md @@ -0,0 +1,6 @@ +## Changelog for ivp_z1xv3.json + + +### Schema version 1 + +* New schema for uds ivp_z1xv3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/m1.md b/src/encoded/schemas/changelogs/m1.md new file mode 100644 index 0000000000..ca4bb34658 --- /dev/null +++ b/src/encoded/schemas/changelogs/m1.md @@ -0,0 +1,6 @@ +## Changelog for m1.json + + +### Schema version 1 + +* New schema for uds m1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/moca.md b/src/encoded/schemas/changelogs/moca.md new file mode 100644 index 0000000000..55b5e2ebe4 --- /dev/null +++ b/src/encoded/schemas/changelogs/moca.md @@ -0,0 +1,6 @@ +## Changelog for moca.json + + +### Schema version 1 + +* New schema for uds moca added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/physical_exam.md b/src/encoded/schemas/changelogs/physical_exam.md new file mode 100644 index 0000000000..b5b9bcb72b --- /dev/null +++ b/src/encoded/schemas/changelogs/physical_exam.md @@ -0,0 +1,6 @@ +## Changelog for physical_exam.json + + +### Schema version 1 + +* New schema for uds physical_exam added diff --git a/src/encoded/schemas/changelogs/tvp_a1.md b/src/encoded/schemas/changelogs/tvp_a1.md new file mode 100644 index 0000000000..8b53afff04 --- /dev/null +++ b/src/encoded/schemas/changelogs/tvp_a1.md @@ -0,0 +1,6 @@ +## Changelog for tvp_a1.json + + +### Schema version 1 + +* New schema for uds tvp_a1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/tvp_a2.md b/src/encoded/schemas/changelogs/tvp_a2.md new file mode 100644 index 0000000000..d3bfb162f2 --- /dev/null +++ b/src/encoded/schemas/changelogs/tvp_a2.md @@ -0,0 +1,6 @@ +## Changelog for tvp_a2.json + + +### Schema version 1 + +* New schema for uds tvp_a2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/tvp_a3.md b/src/encoded/schemas/changelogs/tvp_a3.md new file mode 100644 index 0000000000..bce4d96e38 --- /dev/null +++ b/src/encoded/schemas/changelogs/tvp_a3.md @@ -0,0 +1,6 @@ +## Changelog for tvp_a3.json + + +### Schema version 1 + +* New schema for uds tvp_a3 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/tvp_a4.md b/src/encoded/schemas/changelogs/tvp_a4.md new file mode 100644 index 0000000000..af510532a2 --- /dev/null +++ b/src/encoded/schemas/changelogs/tvp_a4.md @@ -0,0 +1,6 @@ +## Changelog for tvp_a4.json + + +### Schema version 1 + +* New schema for uds tvp_a4 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/tvp_b4.md b/src/encoded/schemas/changelogs/tvp_b4.md new file mode 100644 index 0000000000..358d441058 --- /dev/null +++ b/src/encoded/schemas/changelogs/tvp_b4.md @@ -0,0 +1,6 @@ +## Changelog for tvp_b4.json + + +### Schema version 1 + +* New schema for uds tvp_b4 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/tvp_b5.md b/src/encoded/schemas/changelogs/tvp_b5.md new file mode 100644 index 0000000000..552cb40c9a --- /dev/null +++ b/src/encoded/schemas/changelogs/tvp_b5.md @@ -0,0 +1,6 @@ +## Changelog for tvp_b5.json + + +### Schema version 1 + +* New schema for uds tvp_b5 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/tvp_b7.md b/src/encoded/schemas/changelogs/tvp_b7.md new file mode 100644 index 0000000000..10e266a79f --- /dev/null +++ b/src/encoded/schemas/changelogs/tvp_b7.md @@ -0,0 +1,6 @@ +## Changelog for tvp_b7.json + + +### Schema version 1 + +* New schema for uds tvp_b7 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/tvp_d2.md b/src/encoded/schemas/changelogs/tvp_d2.md new file mode 100644 index 0000000000..f0e82d1e98 --- /dev/null +++ b/src/encoded/schemas/changelogs/tvp_d2.md @@ -0,0 +1,6 @@ +## Changelog for tvp_d2.json + + +### Schema version 1 + +* New schema for uds tvp_d2 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/tvp_t1.md b/src/encoded/schemas/changelogs/tvp_t1.md new file mode 100644 index 0000000000..6a05591cde --- /dev/null +++ b/src/encoded/schemas/changelogs/tvp_t1.md @@ -0,0 +1,6 @@ +## Changelog for tvp_t1.json + + +### Schema version 1 + +* New schema for uds tvp_t1 added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/tvp_z1x.md b/src/encoded/schemas/changelogs/tvp_z1x.md new file mode 100644 index 0000000000..c2b1cb026b --- /dev/null +++ b/src/encoded/schemas/changelogs/tvp_z1x.md @@ -0,0 +1,6 @@ +## Changelog for tvp_z1x.json + + +### Schema version 1 + +* New schema for uds tvp_z1x added \ No newline at end of file diff --git a/src/encoded/schemas/changelogs/updrs.md b/src/encoded/schemas/changelogs/updrs.md new file mode 100644 index 0000000000..eac9812262 --- /dev/null +++ b/src/encoded/schemas/changelogs/updrs.md @@ -0,0 +1,6 @@ +## Changelog for updrs.json + + +### Schema version 1 + +* New schema for uds updrs added diff --git a/src/encoded/schemas/changelogs/visit_contact.md b/src/encoded/schemas/changelogs/visit_contact.md new file mode 100644 index 0000000000..2ecd6f1f43 --- /dev/null +++ b/src/encoded/schemas/changelogs/visit_contact.md @@ -0,0 +1,6 @@ +## Changelog for visit_contact.json + + +### Schema version 1 + +* New schema for uds visit_contact added \ No newline at end of file diff --git a/src/encoded/schemas/concussion_history.json b/src/encoded/schemas/concussion_history.json new file mode 100644 index 0000000000..8d1bb29e71 --- /dev/null +++ b/src/encoded/schemas/concussion_history.json @@ -0,0 +1,1059 @@ +{ + "title": "Concussion History", + + "id": "/profiles/concussion_history.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "concuss" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "concuss": { + "title": "1. Have you ever had a hit to your head that caused a concussion?", + "description": "By a concussion, we mean that after getting hit on your head, you had symptoms such as: loss of consciousness, headache, dizziness, nausea/vomiting, balance problems, ringing in the ears, changes with vision or eyesight, change in mood, difficulty concentrating, remembering, thinking clearly, speaking clearly, etc.", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "q1_if_yes": { + "title": "If Yes", + "type": "object", + "properties": { + "concuss_number": { + "title": "How many concussions have you had?", + "description": "If yes", + "type": "string", + "enum": [ + "1 1", + "2 2", + "3 3", + "4 4", + "5 5", + "6 6", + "7 7", + "8 8", + "9 9", + "10 10" + ] + }, + "concuss_age1": { + "title": "How old were you when you had your concussion?", + "description": "(age in years)", + "type": "integer", + "minimum": 0, + "maximum": 100 + }, + "concuss_age2": { + "title": "How old were you when you had your concussion(s)?", + "description": "(age in years)", + "type": "integer", + "minimum": 0, + "maximum": 100 + }, + "concuss_age3": { + "title": "How old were you when you had your concussion(s)?", + "description": "(age in years)", + "type": "integer", + "minimum": 0, + "maximum": 100 + } + } + }, + "multiple_hits": { + "title": "2. Have you ever had a period of time in which you experienced multiple, repeated hits to your head (e.g. contact sports, military duty)?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "q2_if_yes": { + "title": "If Yes,", + "type": "object", + "properties": { + "multiple_hits_begin": { + "title": "2a. How old were you when this began?", + "description": "(age in years)", + "type": "integer", + "minimum": 0, + "maximum": 100 + }, + "multiple_hits_end": { + "title": "2a. How old were you when this ended?", + "description": "(age in years)", + "type": "integer", + "minimum": 1, + "maximum": 100 + }, + "multiple_hits_ctx": { + "title": "2b. What was the context? (e.g. football, soccer, military, etc)", + "type": "string" + } + } + }, + "loc": { + "title": "3. Loss of Consciousness (LOC)", + "description": "At any time when you hit your head, did you lose consciousness or were you knocked out?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "q3_if_yes": { + "title": "If Yes,", + "type": "object", + "properties": { + "num_times_loc": { + "title": "How many times did you lose consciousness?", + "type": "integer", + "minimum": 1, + "maximum": 3 + }, + "loc_age": { + "title": "How old were you? (age in years)", + "type": "integer", + "minimum": 0, + "maximum": 100 + }, + "loc_dur": { + "title": "LOC duration", + "type": "string", + "enum": [ + "1 <5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_age_2": { + "title": "How old were you? (age in years)", + "type": "integer", + "minimum": 0, + "maximum": 100 + }, + "loc_dur_2": { + "title": "LOC duration", + "type": "string", + "enum": [ + "1 <5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_age_3": { + "title": "How old were you? (age in years)", + "type": "integer", + "minimum": 0, + "maximum": 100 + }, + "loc_dur_3": { + "title": "3 LOC duration", + "type": "string", + "enum": [ + "1 <5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + } + } + }, + "q3_if_no": { + "title": "If No or Don't Know about LOC", + "type": "object", + "properties": { + "loc_no_dk": { + "title": "At any time after you hit your head did you feel dazed or confused?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "loc_dazed": { + "title": "How many times has this happened to you?", + "type": "integer", + "minimum": 0, + "maximum": 10 + }, + "loc_dazed_durat": { + "title": "How long did this last (enter longest)?", + "type": "string", + "enum": [ + "1 <5 min", + "2 5-10 min", + "3 >10 min", + "9 Don't know" + ] + } + } + }, + "q4": { + "title": "4. In which of the following situations have you ever injured your head and had a concussion? Check all that apply.", + "type": "object", + "properties": { + "sitfall": { + "title": "A fall(e.g. from a bike or a horse)", + "type": "boolean" + }, + "sitcar": { + "title": "A car accident (or motorcycle or ATV)", + "type": "boolean" + }, + "sitobj": { + "title": "Being struck by an object (e.g. hit by a rock)", + "type": "boolean" + }, + "sitplay": { + "title": "A playground accident", + "type": "boolean" + }, + "sitabuse": { + "title": "Physical assault/abuse", + "type": "boolean" + }, + "sitblast": { + "title": "Being near an explosion or blast", + "type": "boolean" + }, + "sitsprt": { + "title": "Contact sports", + "type": "boolean" + } + } + }, + "concuss_doc": { + "title": "5. At any time after you hit your head, did you see a doctor?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "q5_if_yes": { + "title": "If Yes,", + "type": "object", + "properties": { + "concuss_er": { + "title": "Did you go to the emergency room?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "concuss_ovrnght": { + "title": "Did you have to stay in the hospital overnight?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "concuss_dx": { + "title": "Were you diagnosed by a doctor as having a concussion or brain injury at the time?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + } + } + }, + "concuss_new_prob": { + "title": "6. At any time after you hit your head, did you (or a teacher or family member) notice any new problems?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "q6_if_yes": { + "title": "If Yes,", + "type": "object", + "properties": { + "physical": { + "title": "Physical problems.", + "description": "Check all that apply.", + "type": "object", + "properties": { + "phyhead": { + "title": "Headache", + "type": "boolean" + }, + "phydizzy": { + "title": "Dizziness", + "type": "boolean" + }, + "phynaus": { + "title": "Nausea/vomiting", + "type": "boolean" + }, + "phybal": { + "title": "Balance problems", + "type": "boolean" + }, + "phyring": { + "title": "Ringing in the ears", + "type": "boolean" + }, + "physleep": { + "title": "Difficulty sleeping", + "type": "boolean" + }, + "phyvision": { + "title": "Changes with vision or eyesight", + "type": "boolean" + } + } + }, + "behavioral": { + "title": "Behavioral problems.", + "description": "Check all that apply.", + "type": "object", + "properties": { + "behirrit": { + "title": "Irritability/loss of temper", + "type": "boolean" + }, + "behdep": { + "title": "Feeling depressed or down", + "type": "boolean" + }, + "behanx": { + "title": "Feeling anxious or nervous", + "type": "boolean" + }, + "behselfcare": { + "title": "Ability to care for yourself", + "type": "boolean" + }, + "behrelate": { + "title": "Relationships with others", + "type": "boolean" + } + } + }, + "cognitive": { + "title": "Cognitive problems.", + "description": "Check all that apply. ", + "type": "object", + "properties": { + "cogconcen": { + "title": "Difficulty concentrating", + "type": "boolean" + }, + "cogmemnew": { + "title": "Difficulty remembering or learning new information", + "type": "boolean" + }, + "cogmemold": { + "title": "Difficulty remembering how to do things you once could do", + "type": "boolean" + }, + "cogsolve": { + "title": "Difficulty solving problems or making decisions", + "type": "boolean" + }, + "cogtask": { + "title": "Difficulty in getting tasks started", + "type": "boolean" + }, + "cogslow": { + "title": "Thinking more slowly, feeling slowed down", + "type": "boolean" + }, + "cogspeech": { + "title": "Changes in your speech or trouble finding words", + "type": "boolean" + }, + "cogfunct": { + "title": "Ability to function at work or school", + "type": "boolean" + } + } + } + } + }, + "concuss_sympt_recov": { + "title": "7. How long did it take for your symptoms to fully recover?", + "description": "Choose one. (If you have had multiple concussions, answer based on your worst injury.)", + "type": "string", + "enum": [ + "1, < 24 hrs", + "2 1-6 days", + "3 7-14 days", + "4 3-4 weeks", + "5 1-6 months", + "6 7-12 months", + "7 >1 year or never fully recovered", + "9 Don't know" + ] + }, + "q8": { + "title": "8. Before your head injury or concussion, were you ever diagnosed with any of the following or suspected of having any of the following? ", + "description": "Check all that apply.", + "type": "object", + "properties": { + "dxadhd": { + "title": "ADHD/ADD", + "type": "boolean" + }, + "dxldis": { + "title": "Learning disability", + "type": "boolean" + }, + "dxdep": { + "title": "Depression", + "type": "boolean" + }, + "dxanx": { + "title": "Anxiety", + "type": "boolean" + }, + "dxbip": { + "title": "Bipolar disorder", + "type": "boolean" + }, + "dxschiz": { + "title": "Schizophrenia", + "type": "boolean" + }, + "dxalcoh": { + "title": "Alcohol or drug abuse", + "type": "boolean" + }, + "dxsleep": { + "title": "Sleep disorder", + "type": "boolean" + }, + "dxmigrain": { + "title": "Migraines/chronic headaches", + "type": "boolean" + } + } + }, + "concuss_hist_demen": { + "title": "9. Do you have a family history of dementia?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "q9_if_yes": { + "title": "If Yes", + "description": "Check all that apply.", + "type": "object", + "properties": { + "demmom": { + "title": "Mother", + "type": "boolean" + }, + "demdad": { + "title": "Father", + "type": "boolean" + }, + "demgmom": { + "title": "Grandmother", + "type": "boolean" + }, + "demgdad": { + "title": "Grandfather", + "type": "boolean" + }, + "demaunt": { + "title": "Aunt", + "type": "boolean" + }, + "demuncle": { + "title": "Uncle", + "type": "boolean" + }, + "dembro": { + "title": "Brother", + "type": "boolean" + }, + "demsis": { + "title": "Sister", + "type": "boolean" + } + } + }, + "concuss_clin_sig": { + "title": "Clinician's signature (required)", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "concuss": { + "title": "1. Have you ever had a hit to your head that caused a concussion?" + }, + "q1_if_yes.concuss_number": { + "title": "How many concussions have you had?" + }, + "q1_if_yes.concuss_age1": { + "title": "How old were you when you had your concussion?" + }, + "q1_if_yes.concuss_age2": { + "title": "How old were you when you had your concussion(s)?" + }, + "q1_if_yes.concuss_age3": { + "title": "How old were you when you had your concussion(s)?" + }, + "multiple_hits": { + "title": "2. Have you ever had a period of time in which you experienced multiple, repeated hits to your head (e.g. contact sports, military duty)?" + }, + "q2_if_yes.multiple_hits_begin": { + "title": "2a. How old were you when this began?" + }, + "q2_if_yes.multiple_hits_end": { + "title": "2a. How old were you when this ended?" + }, + "q2_if_yes.multiple_hits_ctx": { + "title": "2b. What was the context? (e.g. football, soccer, military, etc)" + }, + "loc": { + "title": "3. Loss of Consciousness (LOC)" + }, + "q3_if_yes.num_times_loc": { + "title": "How many times did you lose consciousness?" + }, + "q3_if_yes.loc_age": { + "title": "How old were you? (age in years)" + }, + "q3_if_yes.loc_dur": { + "title": "LOC duration" + }, + "q3_if_yes.loc_age_2": { + "title": "How old were you? (age in years)" + }, + "q3_if_yes.loc_dur_2": { + "title": "LOC duration" + }, + "q3_if_yes.loc_age_3": { + "title": "How old were you? (age in years)" + }, + "q3_if_yes.loc_dur_3": { + "title": "3 LOC duration" + }, + "q3_if_no.loc_no_dk": { + "title": "At any time after you hit your head did you feel dazed or confused?" + }, + "q3_if_no.loc_dazed": { + "title": "How many times has this happened to you?" + }, + "q3_if_no.loc_dazed_durat": { + "title": "How long did this last (enter longest)?" + }, + "q4.sitfall": { + "title": "A fall(e.g. from a bike or a horse)" + }, + "q4.sitcar": { + "title": "A car accident (or motorcycle or ATV)" + }, + "q4.sitobj": { + "title": "Being struck by an object (e.g. hit by a rock)" + }, + "q4.sitplay": { + "title": "A playground accident" + }, + "q4.sitabuse": { + "title": "Physical assault/abuse" + }, + "q4.sitblast": { + "title": "Being near an explosion or blast" + }, + "q4.sitsprt": { + "title": "Contact sports" + }, + "concuss_doc": { + "title": "5. At any time after you hit your head, did you see a doctor?" + }, + "q5_if_yes.concuss_er": { + "title": "Did you go to the emergency room?" + }, + "q5_if_yes.concuss_ovrnght": { + "title": "Did you have to stay in the hospital overnight?" + }, + "q5_if_yes.concuss_dx": { + "title": "Were you diagnosed by a doctor as having a concussion or brain injury at the time?" + }, + "concuss_new_prob": { + "title": "6. At any time after you hit your head, did you (or a teacher or family member) notice any new problems?" + }, + "q6_if_yes.physical.phyhead": { + "title": "Headache" + }, + "q6_if_yes.physical.phydizzy": { + "title": "Dizziness" + }, + "q6_if_yes.physical.phynaus": { + "title": "Nausea/vomiting" + }, + "q6_if_yes.physical.phybal": { + "title": "Balance problems" + }, + "q6_if_yes.physical.phyring": { + "title": "Ringing in the ears" + }, + "q6_if_yes.physical.physleep": { + "title": "Difficulty sleeping" + }, + "q6_if_yes.physical.phyvision": { + "title": "Changes with vision or eyesight" + }, + "q6_if_yes.behavioral.behirrit": { + "title": "Irritability/loss of temper" + }, + "q6_if_yes.behavioral.behdep": { + "title": "Feeling depressed or down" + }, + "q6_if_yes.behavioral.behanx": { + "title": "Feeling anxious or nervous" + }, + "q6_if_yes.behavioral.behselfcare": { + "title": "Ability to care for yourself" + }, + "q6_if_yes.behavioral.behrelate": { + "title": "Relationships with others" + }, + "q6_if_yes.cognitive.cogconcen": { + "title": "Difficulty concentrating" + }, + "q6_if_yes.cognitive.cogmemnew": { + "title": "Difficulty remembering or learning new information" + }, + "q6_if_yes.cognitive.cogmemold": { + "title": "Difficulty remembering how to do things you once could do" + }, + "q6_if_yes.cognitive.cogsolve": { + "title": "Difficulty solving problems or making decisions" + }, + "q6_if_yes.cognitive.cogtask": { + "title": "Difficulty in getting tasks started" + }, + "q6_if_yes.cognitive.cogslow": { + "title": "Thinking more slowly, feeling slowed down" + }, + "q6_if_yes.cognitive.cogspeech": { + "title": "Changes in your speech or trouble finding words" + }, + "q6_if_yes.cognitive.cogfunct": { + "title": "Ability to function at work or school" + }, + "concuss_sympt_recov": { + "title": "7. How long did it take for your symptoms to fully recover?" + }, + "q8.dxadhd": { + "title": "ADHD/ADD" + }, + "q8.dxldis": { + "title": "Learning disability" + }, + "q8.dxdep": { + "title": "Depression" + }, + "q8.dxanx": { + "title": "Anxiety" + }, + "q8.dxbip": { + "title": "Bipolar disorder" + }, + "q8.dxschiz": { + "title": "Schizophrenia" + }, + "q8.dxalcoh": { + "title": "Alcohol or drug abuse" + }, + "q8.dxsleep": { + "title": "Sleep disorder" + }, + "q8.dxmigrain": { + "title": "Migraines/chronic headaches" + }, + "concuss_hist_demen": { + "title": "9. Do you have a family history of dementia?" + }, + "q9_if_yes.demmom": { + "title": "Mother" + }, + "q9_if_yes.demdad": { + "title": "Father" + }, + "q9_if_yes.demgmom": { + "title": "Grandmother" + }, + "q9_if_yes.demgdad": { + "title": "Grandfather" + }, + "q9_if_yes.demaunt": { + "title": "Aunt" + }, + "q9_if_yes.demuncle": { + "title": "Uncle" + }, + "q9_if_yes.dembro": { + "title": "Brother" + }, + "q9_if_yes.demsis": { + "title": "Sister" + }, + "concuss_clin_sig": { + "title": "Clinician's signature (required)" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "concuss": { + "title": "1. Have you ever had a hit to your head that caused a concussion?" + }, + "q1_if_yes.concuss_number": { + "title": "How many concussions have you had?" + }, + "q1_if_yes.concuss_age1": { + "title": "How old were you when you had your concussion?" + }, + "q1_if_yes.concuss_age2": { + "title": "How old were you when you had your concussion(s)?" + }, + "q1_if_yes.concuss_age3": { + "title": "How old were you when you had your concussion(s)?" + }, + "multiple_hits": { + "title": "2. Have you ever had a period of time in which you experienced multiple, repeated hits to your head (e.g. contact sports, military duty)?" + }, + "q2_if_yes.multiple_hits_begin": { + "title": "2a. How old were you when this began?" + }, + "q2_if_yes.multiple_hits_end": { + "title": "2a. How old were you when this ended?" + }, + "q2_if_yes.multiple_hits_ctx": { + "title": "2b. What was the context? (e.g. football, soccer, military, etc)" + }, + "loc": { + "title": "3. Loss of Consciousness (LOC)" + }, + "q3_if_yes.num_times_loc": { + "title": "How many times did you lose consciousness?" + }, + "q3_if_yes.loc_age": { + "title": "How old were you? (age in years)" + }, + "q3_if_yes.loc_dur": { + "title": "LOC duration" + }, + "q3_if_yes.loc_age_2": { + "title": "How old were you? (age in years)" + }, + "q3_if_yes.loc_dur_2": { + "title": "LOC duration" + }, + "q3_if_yes.loc_age_3": { + "title": "How old were you? (age in years)" + }, + "q3_if_yes.loc_dur_3": { + "title": "3 LOC duration" + }, + "q3_if_no.loc_no_dk": { + "title": "At any time after you hit your head did you feel dazed or confused?" + }, + "q3_if_no.loc_dazed": { + "title": "How many times has this happened to you?" + }, + "q3_if_no.loc_dazed_durat": { + "title": "How long did this last (enter longest)?" + }, + "q4.sitfall": { + "title": "A fall(e.g. from a bike or a horse)" + }, + "q4.sitcar": { + "title": "A car accident (or motorcycle or ATV)" + }, + "q4.sitobj": { + "title": "Being struck by an object (e.g. hit by a rock)" + }, + "q4.sitplay": { + "title": "A playground accident" + }, + "q4.sitabuse": { + "title": "Physical assault/abuse" + }, + "q4.sitblast": { + "title": "Being near an explosion or blast" + }, + "q4.sitsprt": { + "title": "Contact sports" + }, + "concuss_doc": { + "title": "5. At any time after you hit your head, did you see a doctor?" + }, + "q5_if_yes.concuss_er": { + "title": "Did you go to the emergency room?" + }, + "q5_if_yes.concuss_ovrnght": { + "title": "Did you have to stay in the hospital overnight?" + }, + "q5_if_yes.concuss_dx": { + "title": "Were you diagnosed by a doctor as having a concussion or brain injury at the time?" + }, + "concuss_new_prob": { + "title": "6. At any time after you hit your head, did you (or a teacher or family member) notice any new problems?" + }, + "q6_if_yes.physical.phyhead": { + "title": "Headache" + }, + "q6_if_yes.physical.phydizzy": { + "title": "Dizziness" + }, + "q6_if_yes.physical.phynaus": { + "title": "Nausea/vomiting" + }, + "q6_if_yes.physical.phybal": { + "title": "Balance problems" + }, + "q6_if_yes.physical.phyring": { + "title": "Ringing in the ears" + }, + "q6_if_yes.physical.physleep": { + "title": "Difficulty sleeping" + }, + "q6_if_yes.physical.phyvision": { + "title": "Changes with vision or eyesight" + }, + "q6_if_yes.behavioral.behirrit": { + "title": "Irritability/loss of temper" + }, + "q6_if_yes.behavioral.behdep": { + "title": "Feeling depressed or down" + }, + "q6_if_yes.behavioral.behanx": { + "title": "Feeling anxious or nervous" + }, + "q6_if_yes.behavioral.behselfcare": { + "title": "Ability to care for yourself" + }, + "q6_if_yes.behavioral.behrelate": { + "title": "Relationships with others" + }, + "q6_if_yes.cognitive.cogconcen": { + "title": "Difficulty concentrating" + }, + "q6_if_yes.cognitive.cogmemnew": { + "title": "Difficulty remembering or learning new information" + }, + "q6_if_yes.cognitive.cogmemold": { + "title": "Difficulty remembering how to do things you once could do" + }, + "q6_if_yes.cognitive.cogsolve": { + "title": "Difficulty solving problems or making decisions" + }, + "q6_if_yes.cognitive.cogtask": { + "title": "Difficulty in getting tasks started" + }, + "q6_if_yes.cognitive.cogslow": { + "title": "Thinking more slowly, feeling slowed down" + }, + "q6_if_yes.cognitive.cogspeech": { + "title": "Changes in your speech or trouble finding words" + }, + "q6_if_yes.cognitive.cogfunct": { + "title": "Ability to function at work or school" + }, + "concuss_sympt_recov": { + "title": "7. How long did it take for your symptoms to fully recover?" + }, + "q8.dxadhd": { + "title": "ADHD/ADD" + }, + "q8.dxldis": { + "title": "Learning disability" + }, + "q8.dxdep": { + "title": "Depression" + }, + "q8.dxanx": { + "title": "Anxiety" + }, + "q8.dxbip": { + "title": "Bipolar disorder" + }, + "q8.dxschiz": { + "title": "Schizophrenia" + }, + "q8.dxalcoh": { + "title": "Alcohol or drug abuse" + }, + "q8.dxsleep": { + "title": "Sleep disorder" + }, + "q8.dxmigrain": { + "title": "Migraines/chronic headaches" + }, + "concuss_hist_demen": { + "title": "9. Do you have a family history of dementia?" + }, + "q9_if_yes.demmom": { + "title": "Mother" + }, + "q9_if_yes.demdad": { + "title": "Father" + }, + "q9_if_yes.demgmom": { + "title": "Grandmother" + }, + "q9_if_yes.demgdad": { + "title": "Grandfather" + }, + "q9_if_yes.demaunt": { + "title": "Aunt" + }, + "q9_if_yes.demuncle": { + "title": "Uncle" + }, + "q9_if_yes.dembro": { + "title": "Brother" + }, + "q9_if_yes.demsis": { + "title": "Sister" + }, + "concuss_clin_sig": { + "title": "Clinician's signature (required)" + } + }, + "boost_values": { + "patient": 1.0, + "concuss": 1.0, + "q1_if_yes.concuss_number": 1.0, + "q1_if_yes.concuss_age1": 1.0, + "q1_if_yes.concuss_age2": 1.0, + "q1_if_yes.concuss_age3": 1.0, + "multiple_hits": 1.0, + "q2_if_yes.multiple_hits_begin": 1.0, + "q2_if_yes.multiple_hits_end": 1.0, + "q2_if_yes.multiple_hits_ctx": 1.0, + "loc": 1.0, + "q3_if_yes.num_times_loc": 1.0, + "q3_if_yes.loc_age": 1.0, + "q3_if_yes.loc_dur": 1.0, + "q3_if_yes.loc_age_2": 1.0, + "q3_if_yes.loc_dur_2": 1.0, + "q3_if_yes.loc_age_3": 1.0, + "q3_if_yes.loc_dur_3": 1.0, + "q3_if_no.loc_no_dk": 1.0, + "q3_if_no.loc_dazed": 1.0, + "q3_if_no.loc_dazed_durat": 1.0, + "q4.sitfall": 1.0, + "q4.sitcar": 1.0, + "q4.sitobj": 1.0, + "q4.sitplay": 1.0, + "q4.sitabuse": 1.0, + "q4.sitblast": 1.0, + "q4.sitsprt": 1.0, + "concuss_doc": 1.0, + "q5_if_yes.concuss_er": 1.0, + "q5_if_yes.concuss_ovrnght": 1.0, + "q5_if_yes.concuss_dx": 1.0, + "concuss_new_prob": 1.0, + "q6_if_yes.physical.phyhead": 1.0, + "q6_if_yes.physical.phydizzy": 1.0, + "q6_if_yes.physical.phynaus": 1.0, + "q6_if_yes.physical.phybal": 1.0, + "q6_if_yes.physical.phyring": 1.0, + "q6_if_yes.physical.physleep": 1.0, + "q6_if_yes.physical.phyvision": 1.0, + "q6_if_yes.behavioral.behirrit": 1.0, + "q6_if_yes.behavioral.behdep": 1.0, + "q6_if_yes.behavioral.behanx": 1.0, + "q6_if_yes.behavioral.behselfcare": 1.0, + "q6_if_yes.behavioral.behrelate": 1.0, + "q6_if_yes.cognitive.cogconcen": 1.0, + "q6_if_yes.cognitive.cogmemnew": 1.0, + "q6_if_yes.cognitive.cogmemold": 1.0, + "q6_if_yes.cognitive.cogsolve": 1.0, + "q6_if_yes.cognitive.cogtask": 1.0, + "q6_if_yes.cognitive.cogslow": 1.0, + "q6_if_yes.cognitive.cogspeech": 1.0, + "q6_if_yes.cognitive.cogfunct": 1.0, + "concuss_sympt_recov": 1.0, + "q8.dxadhd": 1.0, + "q8.dxldis": 1.0, + "q8.dxdep": 1.0, + "q8.dxanx": 1.0, + "q8.dxbip": 1.0, + "q8.dxschiz": 1.0, + "q8.dxalcoh": 1.0, + "q8.dxsleep": 1.0, + "q8.dxmigrain": 1.0, + "concuss_hist_demen": 1.0, + "q9_if_yes.demmom": 1.0, + "q9_if_yes.demdad": 1.0, + "q9_if_yes.demgmom": 1.0, + "q9_if_yes.demgdad": 1.0, + "q9_if_yes.demaunt": 1.0, + "q9_if_yes.demuncle": 1.0, + "q9_if_yes.dembro": 1.0, + "q9_if_yes.demsis": 1.0, + "concuss_clin_sig": 1.0 + }, + "changelog": "/profiles/changelogs/concussion_history.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/concussion_history_follow_up.json b/src/encoded/schemas/concussion_history_follow_up.json new file mode 100644 index 0000000000..1127b709b2 --- /dev/null +++ b/src/encoded/schemas/concussion_history_follow_up.json @@ -0,0 +1,1291 @@ +{ + "title": "Concussion History Follow-up", + "description": "Local forms concussion history follow up form", + "id": "/profiles/concussion_history_follow_up.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "concuss_v2" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "concuss_v2": { + "title": "1. Have you experienced a concussion or hit your head since your last research study visit?", + "description": "(Please see previous concussion form for reference)If No, end form here.", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "concuss_v3": { + "title": "2. Did this cause any of the following: Being knocked out or unconscious; headache; feeling lightheaded/dizzy; feeling sick/throwing up; feeling unsteady/off balance; changes with vision/eyesight; ringing in the ears; change in mood; difficulty paying attention, remembering, thinking clearly, or speaking clearly? ", + "description": "If No, end form here.", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "fu_q2_if_yes": { + "title": "If Yes,", + "type": "object", + "properties": { + "concuss_v2_date": { + "title": "2a. when did this happen?", + "description": "Date of Concussion", + "comment": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + } + } + }, + "loc_v2": { + "title": "3. Loss of Consciousness (LOC) When you hit your head, did you lose consciousness or were you knocked out?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "fu_q3_if_yes": { + "title": "If Yes", + "type": "object", + "properties": { + "num_times_loc_v2": { + "title": "3a. How many times did you lose consciousness? \nEnter #", + "description": "Number 1-6", + "type": "integer", + "minimum": 1, + "maximum": 6 + }, + "loc_date_v2": { + "title": "3b. Enter the date of LOC", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dur_v2": { + "title": "3b. LOC duration", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_date_2_v2": { + "title": "3b. Enter the date of LOC", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dur_2_v2": { + "title": "3b. LOC duration", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_date_3_v2": { + "title": "3b. Enter the date of LOC", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dur_3_v2": { + "title": "3b. LOC duration", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_date_4_v2": { + "title": "3b. Enter the date of LOC", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dur_4_v2": { + "title": "3b. LOC duration", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_date_5_v2": { + "title": "3b. Enter the date of LOC", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dur_5_v2": { + "title": "3b. LOC duration", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_date_6_v2": { + "title": "3b. Enter the date of LOC", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dur_6_v2": { + "title": "3b. LOC duration", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + } + } + }, + "fu_q3_if_no": { + "title": "If No or Don't Know about LOC", + "type": "object", + "properties": { + "loc_no_dk_v2": { + "title": "3c. When you hit your head did you feel dazed or confused?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "fu_q3c_if_yes": { + "title": "If Yes", + "type": "object", + "properties": { + "loc_dazed_v2": { + "title": "3ci. How many times have you hit your head and felt dazed and confused? \nEnter #", + "description": "Number 0-10", + "type": "integer", + "minimum": 0, + "maximum": 10 + }, + "loc_dazed_date_v2": { + "title": "Enter the date you felt dazed and confused", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dazed_dur_v2": { + "title": "Duration you felt dazed and confused", + "description": "If the answer to Question 2 is Don't know, end form here.", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_dazed_date_2_v2": { + "title": "Enter the date you felt dazed and confused", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dazed_dur_2_v2": { + "title": "Duration you felt dazed and confused", + "description": "If the answer to Question 2 is Don't know, end form here.", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_dazed_date_3_v2": { + "title": "Enter the date you felt dazed and confused", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dazed_dur_3_v2": { + "title": "Duration you felt dazed and confused", + "description": "If the answer to Question 2 is Don't know, end form here.", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_dazed_date_4_v2": { + "title": "Enter the date you felt dazed and confused", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dazed_dur_4_v2": { + "title": "Duration you felt dazed and confused", + "description": "If the answer to Question 2 is Don't know, end form here.", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_dazed_date_5_v2": { + "title": "Enter the date you felt dazed and confused", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dazed_dur_5_v2": { + "title": "Duration you felt dazed and confused", + "description": "If the answer to Question 2 is Don't know, end form here.", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + }, + "loc_dazed_date_6_v2": { + "title": "Enter the date you felt dazed and confused", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "loc_dazed_dur_6_v2": { + "title": "Duration you felt dazed and confused", + "description": "If the answer to Question 2 is Don't know, end form here.", + "type": "string", + "enum": [ + "1 < 5 min", + "2 5-10 min", + "3 11-30 min", + "4 31-60 min", + "5 1-24 hrs", + "6 >24 hrs", + "9 Don't know" + ] + } + } + } + } + }, + "fu_q4": { + "title": "4. In which of the following situations have you ever injured your head and had a concussion? ", + "description": "Check all that apply.", + "type": "object", + "properties": { + "sitfall_v2": { + "title": "A fall (e.g. from a bike or a horse)", + "type": "boolean" + }, + "sitcar_v2": { + "title": "A car accident (or motorcycle or ATV)", + "type": "boolean" + }, + "sitobj_v2": { + "title": "Being struck by an object (e.g. hit by a rock)", + "type": "boolean" + }, + "sitabuse_v2": { + "title": "Physical assault/abuse", + "type": "boolean" + }, + "sitblast_v2": { + "title": "Being near an explosion or blast", + "type": "boolean" + }, + "sitsprt_v2": { + "title": "Contact sports", + "type": "boolean" + }, + "sitother_v2": { + "title": "Other", + "type": "boolean" + } + } + }, + "concuss_new_prob_v2": { + "title": "5. After you hit your head, did you or a family member notice any new problems?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "fu_q5_if_yes": { + "title": "If Yes,", + "type": "object", + "properties": { + "phyprob_v2": { + "title": "5a. Physical problems.", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "fu_physical": { + "title": "Check all that apply.", + "type": "object", + "properties": { + "phyhead_v2": { + "title": "Headache", + "type": "boolean" + }, + "phydizzy_v2": { + "title": "Dizziness", + "type": "boolean" + }, + "phynaus_v2": { + "title": "Nausea/vomiting", + "type": "boolean" + }, + "phybal_v2": { + "title": "Balance problems", + "type": "boolean" + }, + "phyring_v2": { + "title": "Ringing in the ears", + "type": "boolean" + }, + "physleep_v2": { + "title": "Difficulty sleeping", + "type": "boolean" + }, + "phyvision_v2": { + "title": "Changes with vision or eyesight", + "type": "boolean" + } + } + }, + "behprob_v2": { + "title": "5b. Behavioral problems.", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "fu_behavioral": { + "title": "Check all that apply.", + "type": "object", + "properties": { + "behirrit_v2": { + "title": "Irritability/loss of temper", + "type": "boolean" + }, + "behdep_v2": { + "title": "Feeling depressed or down", + "type": "boolean" + }, + "behanx_v2": { + "title": "Feeling anxious or nervous", + "type": "boolean" + }, + "behselfcare_v2": { + "title": "Ability to care for yourself", + "type": "boolean" + }, + "behrelate_v2": { + "title": "Relationships with others", + "type": "boolean" + } + } + }, + "cogprob_v2": { + "title": "5c. Cognitive problems.", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "fu_cognitive": { + "title": "Check all that apply.", + "type": "object", + "properties": { + "cogconcen_v2": { + "title": " Difficulty concentrating", + "type": "boolean" + }, + "cogmemnew_v2": { + "title": "Difficulty remembering or learning new information", + "type": "boolean" + }, + "cogmemold_v2": { + "title": "Difficulty remembering how to do things you once could do", + "type": "boolean" + }, + "cogsolve_v2": { + "title": "Difficulty solving problems or making decisions", + "type": "boolean" + }, + "cogtask_v2": { + "title": "Difficulty in getting tasks started", + "type": "boolean" + }, + "cogslow_v2": { + "title": "Thinking more slowly, feeling slowed down", + "type": "boolean" + }, + "cogspeech_v2": { + "title": "Changes in your speech or trouble finding words", + "type": "boolean" + }, + "cogfunct_v2": { + "title": "Ability to function at work or school", + "type": "boolean" + } + } + } + } + }, + "concuss_sympt_recov_v2": { + "title": "6. Are you fully recovered (from worst injury, if more than one)?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "concuss_sympt_recov_dur_v2": { + "title": "If yes, how long did it take for your symptoms to fully recover?", + "description": "Choose one.", + "comment": "", + "type": "string", + "enum": [ + "1 < 24 hrs", + "2 1-6 days", + "3 7-14 days", + "4 3-4 weeks", + "5 1-6 months", + "6 7-12 months", + "7 >1 year or never fully recovered", + "9 Don't know" + ] + }, + "fu_q7": { + "title": "7. Before your head injury or concussion, were you ever diagnosed with any of the following or suspected of having any of the following? ", + "description": "Check all that apply.", + "type": "object", + "properties": { + "dxadhd_v2": { + "title": "ADHD/ADD", + "type": "boolean" + }, + "dxldis_v2": { + "title": "Learning disability", + "type": "boolean" + }, + "dxdep_v2": { + "title": "Depression", + "type": "boolean" + }, + "dxanx_v2": { + "title": "Anxiety", + "type": "boolean" + }, + "dxbip_v2": { + "title": "Bipolar disorder", + "type": "boolean" + }, + "dxschiz_v2": { + "title": "Schizophrenia", + "type": "boolean" + }, + "dxalcoh_v2": { + "title": "Alcohol or drug abuse", + "type": "boolean" + }, + "dxsleep_v2": { + "title": "Sleep disorder", + "type": "boolean" + }, + "dxmigrain_v2": { + "title": "Migraines/chronic headaches", + "type": "boolean" + } + } + }, + "concuss_hist_demen_v2": { + "title": "8. Do you have a family history of dementia?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Don't know" + ] + }, + "fu_q8_if_yes": { + "title": "If Yes, ", + "description": "Check all that apply.", + "type": "object", + "properties": { + "demmom_v2": { + "title": "Mother", + "type": "boolean" + }, + "demdad_v2": { + "title": "Father", + "type": "boolean" + }, + "demgmom_v2": { + "title": "Grandmother", + "type": "boolean" + }, + "demgdad_v2": { + "title": "Grandfather", + "type": "boolean" + }, + "demaunt_v2": { + "title": "Aunt", + "type": "boolean" + }, + "demuncle_v2": { + "title": "Uncle", + "type": "boolean" + }, + "dembro_v2": { + "title": "Brother", + "type": "boolean" + }, + "demsis_v2": { + "title": "Sister", + "type": "boolean" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "concuss_v2": { + "title": "1. Have you experienced a concussion or hit your head since your last research study visit?" + }, + "concuss_v3": { + "title": "2. Did this cause any of the following: Being knocked out or unconscious; headache; feeling lightheaded/dizzy; feeling sick/throwing up; feeling unsteady/off balance; changes with vision/eyesight; ringing in the ears; change in mood; difficulty paying attention, remembering, thinking clearly, or speaking clearly? " + }, + "fu_q2_if_yes.concuss_v2_date": { + "title": "2a. when did this happen?" + }, + "loc_v2": { + "title": "3. Loss of Consciousness (LOC) When you hit your head, did you lose consciousness or were you knocked out?" + }, + "fu_q3_if_yes.num_times_loc_v2": { + "title": "3a. How many times did you lose consciousness? \nEnter #" + }, + "fu_q3_if_yes.loc_date_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_yes.loc_date_2_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_2_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_yes.loc_date_3_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_3_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_yes.loc_date_4_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_4_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_yes.loc_date_5_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_5_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_yes.loc_date_6_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_6_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_no.loc_no_dk_v2": { + "title": "3c. When you hit your head did you feel dazed or confused?" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_v2": { + "title": "3ci. How many times have you hit your head and felt dazed and confused? \nEnter #" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_2_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_2_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_3_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_3_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_4_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_4_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_5_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_5_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_6_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_6_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q4.sitfall_v2": { + "title": "A fall (e.g. from a bike or a horse)" + }, + "fu_q4.sitcar_v2": { + "title": "A car accident (or motorcycle or ATV)" + }, + "fu_q4.sitobj_v2": { + "title": "Being struck by an object (e.g. hit by a rock)" + }, + "fu_q4.sitabuse_v2": { + "title": "Physical assault/abuse" + }, + "fu_q4.sitblast_v2": { + "title": "Being near an explosion or blast" + }, + "fu_q4.sitsprt_v2": { + "title": "Contact sports" + }, + "fu_q4.sitother_v2": { + "title": "Other" + }, + "concuss_new_prob_v2": { + "title": "5. After you hit your head, did you or a family member notice any new problems?" + }, + "fu_q5_if_yes.phyprob_v2": { + "title": "5a. Physical problems." + }, + "fu_q5_if_yes.fu_physical.phyhead_v2": { + "title": "Headache" + }, + "fu_q5_if_yes.fu_physical.phydizzy_v2": { + "title": "Dizziness" + }, + "fu_q5_if_yes.fu_physical.phynaus_v2": { + "title": "Nausea/vomiting" + }, + "fu_q5_if_yes.fu_physical.phybal_v2": { + "title": "Balance problems" + }, + "fu_q5_if_yes.fu_physical.phyring_v2": { + "title": "Ringing in the ears" + }, + "fu_q5_if_yes.fu_physical.physleep_v2": { + "title": "Difficulty sleeping" + }, + "fu_q5_if_yes.fu_physical.phyvision_v2": { + "title": "Changes with vision or eyesight" + }, + "fu_q5_if_yes.behprob_v2": { + "title": "5b. Behavioral problems." + }, + "fu_q5_if_yes.fu_behavioral.behirrit_v2": { + "title": "Irritability/loss of temper" + }, + "fu_q5_if_yes.fu_behavioral.behdep_v2": { + "title": "Feeling depressed or down" + }, + "fu_q5_if_yes.fu_behavioral.behanx_v2": { + "title": "Feeling anxious or nervous" + }, + "fu_q5_if_yes.fu_behavioral.behselfcare_v2": { + "title": "Ability to care for yourself" + }, + "fu_q5_if_yes.fu_behavioral.behrelate_v2": { + "title": "Relationships with others" + }, + "fu_q5_if_yes.cogprob_v2": { + "title": "5c. Cognitive problems." + }, + "fu_q5_if_yes.fu_cognitive.cogconcen_v2": { + "title": " Difficulty concentrating" + }, + "fu_q5_if_yes.fu_cognitive.cogmemnew_v2": { + "title": "Difficulty remembering or learning new information" + }, + "fu_q5_if_yes.fu_cognitive.cogmemold_v2": { + "title": "Difficulty remembering how to do things you once could do" + }, + "fu_q5_if_yes.fu_cognitive.cogsolve_v2": { + "title": "Difficulty solving problems or making decisions" + }, + "fu_q5_if_yes.fu_cognitive.cogtask_v2": { + "title": "Difficulty in getting tasks started" + }, + "fu_q5_if_yes.fu_cognitive.cogslow_v2": { + "title": "Thinking more slowly, feeling slowed down" + }, + "fu_q5_if_yes.fu_cognitive.cogspeech_v2": { + "title": "Changes in your speech or trouble finding words" + }, + "fu_q5_if_yes.fu_cognitive.cogfunct_v2": { + "title": "Ability to function at work or school" + }, + "concuss_sympt_recov_v2": { + "title": "6. Are you fully recovered (from worst injury, if more than one)?" + }, + "concuss_sympt_recov_dur_v2": { + "title": "If yes, how long did it take for your symptoms to fully recover?" + }, + "fu_q7.dxadhd_v2": { + "title": "ADHD/ADD" + }, + "fu_q7.dxldis_v2": { + "title": "Learning disability" + }, + "fu_q7.dxdep_v2": { + "title": "Depression" + }, + "fu_q7.dxanx_v2": { + "title": "Anxiety" + }, + "fu_q7.dxbip_v2": { + "title": "Bipolar disorder" + }, + "fu_q7.dxschiz_v2": { + "title": "Schizophrenia" + }, + "fu_q7.dxalcoh_v2": { + "title": "Alcohol or drug abuse" + }, + "fu_q7.dxsleep_v2": { + "title": "Sleep disorder" + }, + "fu_q7.dxmigrain_v2": { + "title": "Migraines/chronic headaches" + }, + "concuss_hist_demen_v2": { + "title": "8. Do you have a family history of dementia?" + }, + "fu_q8_if_yes.demmom_v2": { + "title": "Mother" + }, + "fu_q8_if_yes.demdad_v2": { + "title": "Father" + }, + "fu_q8_if_yes.demgmom_v2": { + "title": "Grandmother" + }, + "fu_q8_if_yes.demgdad_v2": { + "title": "Grandfather" + }, + "fu_q8_if_yes.demaunt_v2": { + "title": "Aunt" + }, + "fu_q8_if_yes.demuncle_v2": { + "title": "Uncle" + }, + "fu_q8_if_yes.dembro_v2": { + "title": "Brother" + }, + "fu_q8_if_yes.demsis_v2": { + "title": "Sister" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "concuss_v2": { + "title": "1. Have you experienced a concussion or hit your head since your last research study visit?" + }, + "concuss_v3": { + "title": "2. Did this cause any of the following: Being knocked out or unconscious; headache; feeling lightheaded/dizzy; feeling sick/throwing up; feeling unsteady/off balance; changes with vision/eyesight; ringing in the ears; change in mood; difficulty paying attention, remembering, thinking clearly, or speaking clearly? " + }, + "fu_q2_if_yes.concuss_v2_date": { + "title": "2a. when did this happen?" + }, + "loc_v2": { + "title": "3. Loss of Consciousness (LOC) When you hit your head, did you lose consciousness or were you knocked out?" + }, + "fu_q3_if_yes.num_times_loc_v2": { + "title": "3a. How many times did you lose consciousness? \nEnter #" + }, + "fu_q3_if_yes.loc_date_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_yes.loc_date_2_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_2_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_yes.loc_date_3_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_3_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_yes.loc_date_4_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_4_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_yes.loc_date_5_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_5_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_yes.loc_date_6_v2": { + "title": "3b. Enter the date of LOC" + }, + "fu_q3_if_yes.loc_dur_6_v2": { + "title": "3b. LOC duration" + }, + "fu_q3_if_no.loc_no_dk_v2": { + "title": "3c. When you hit your head did you feel dazed or confused?" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_v2": { + "title": "3ci. How many times have you hit your head and felt dazed and confused? \nEnter #" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_2_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_2_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_3_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_3_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_4_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_4_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_5_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_5_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_6_v2": { + "title": "Enter the date you felt dazed and confused" + }, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_6_v2": { + "title": "Duration you felt dazed and confused" + }, + "fu_q4.sitfall_v2": { + "title": "A fall (e.g. from a bike or a horse)" + }, + "fu_q4.sitcar_v2": { + "title": "A car accident (or motorcycle or ATV)" + }, + "fu_q4.sitobj_v2": { + "title": "Being struck by an object (e.g. hit by a rock)" + }, + "fu_q4.sitabuse_v2": { + "title": "Physical assault/abuse" + }, + "fu_q4.sitblast_v2": { + "title": "Being near an explosion or blast" + }, + "fu_q4.sitsprt_v2": { + "title": "Contact sports" + }, + "fu_q4.sitother_v2": { + "title": "Other" + }, + "concuss_new_prob_v2": { + "title": "5. After you hit your head, did you or a family member notice any new problems?" + }, + "fu_q5_if_yes.phyprob_v2": { + "title": "5a. Physical problems." + }, + "fu_q5_if_yes.fu_physical.phyhead_v2": { + "title": "Headache" + }, + "fu_q5_if_yes.fu_physical.phydizzy_v2": { + "title": "Dizziness" + }, + "fu_q5_if_yes.fu_physical.phynaus_v2": { + "title": "Nausea/vomiting" + }, + "fu_q5_if_yes.fu_physical.phybal_v2": { + "title": "Balance problems" + }, + "fu_q5_if_yes.fu_physical.phyring_v2": { + "title": "Ringing in the ears" + }, + "fu_q5_if_yes.fu_physical.physleep_v2": { + "title": "Difficulty sleeping" + }, + "fu_q5_if_yes.fu_physical.phyvision_v2": { + "title": "Changes with vision or eyesight" + }, + "fu_q5_if_yes.behprob_v2": { + "title": "5b. Behavioral problems." + }, + "fu_q5_if_yes.fu_behavioral.behirrit_v2": { + "title": "Irritability/loss of temper" + }, + "fu_q5_if_yes.fu_behavioral.behdep_v2": { + "title": "Feeling depressed or down" + }, + "fu_q5_if_yes.fu_behavioral.behanx_v2": { + "title": "Feeling anxious or nervous" + }, + "fu_q5_if_yes.fu_behavioral.behselfcare_v2": { + "title": "Ability to care for yourself" + }, + "fu_q5_if_yes.fu_behavioral.behrelate_v2": { + "title": "Relationships with others" + }, + "fu_q5_if_yes.cogprob_v2": { + "title": "5c. Cognitive problems." + }, + "fu_q5_if_yes.fu_cognitive.cogconcen_v2": { + "title": " Difficulty concentrating" + }, + "fu_q5_if_yes.fu_cognitive.cogmemnew_v2": { + "title": "Difficulty remembering or learning new information" + }, + "fu_q5_if_yes.fu_cognitive.cogmemold_v2": { + "title": "Difficulty remembering how to do things you once could do" + }, + "fu_q5_if_yes.fu_cognitive.cogsolve_v2": { + "title": "Difficulty solving problems or making decisions" + }, + "fu_q5_if_yes.fu_cognitive.cogtask_v2": { + "title": "Difficulty in getting tasks started" + }, + "fu_q5_if_yes.fu_cognitive.cogslow_v2": { + "title": "Thinking more slowly, feeling slowed down" + }, + "fu_q5_if_yes.fu_cognitive.cogspeech_v2": { + "title": "Changes in your speech or trouble finding words" + }, + "fu_q5_if_yes.fu_cognitive.cogfunct_v2": { + "title": "Ability to function at work or school" + }, + "concuss_sympt_recov_v2": { + "title": "6. Are you fully recovered (from worst injury, if more than one)?" + }, + "concuss_sympt_recov_dur_v2": { + "title": "If yes, how long did it take for your symptoms to fully recover?" + }, + "fu_q7.dxadhd_v2": { + "title": "ADHD/ADD" + }, + "fu_q7.dxldis_v2": { + "title": "Learning disability" + }, + "fu_q7.dxdep_v2": { + "title": "Depression" + }, + "fu_q7.dxanx_v2": { + "title": "Anxiety" + }, + "fu_q7.dxbip_v2": { + "title": "Bipolar disorder" + }, + "fu_q7.dxschiz_v2": { + "title": "Schizophrenia" + }, + "fu_q7.dxalcoh_v2": { + "title": "Alcohol or drug abuse" + }, + "fu_q7.dxsleep_v2": { + "title": "Sleep disorder" + }, + "fu_q7.dxmigrain_v2": { + "title": "Migraines/chronic headaches" + }, + "concuss_hist_demen_v2": { + "title": "8. Do you have a family history of dementia?" + }, + "fu_q8_if_yes.demmom_v2": { + "title": "Mother" + }, + "fu_q8_if_yes.demdad_v2": { + "title": "Father" + }, + "fu_q8_if_yes.demgmom_v2": { + "title": "Grandmother" + }, + "fu_q8_if_yes.demgdad_v2": { + "title": "Grandfather" + }, + "fu_q8_if_yes.demaunt_v2": { + "title": "Aunt" + }, + "fu_q8_if_yes.demuncle_v2": { + "title": "Uncle" + }, + "fu_q8_if_yes.dembro_v2": { + "title": "Brother" + }, + "fu_q8_if_yes.demsis_v2": { + "title": "Sister" + } + }, + "boost_values": { + "patient": 1.0, + "concuss_v2": 1.0, + "concuss_v3": 1.0, + "fu_q2_if_yes.concuss_v2_date": 1.0, + "loc_v2": 1.0, + "fu_q3_if_yes.num_times_loc_v2": 1.0, + "fu_q3_if_yes.loc_date_v2": 1.0, + "fu_q3_if_yes.loc_dur_v2": 1.0, + "fu_q3_if_yes.loc_date_2_v2": 1.0, + "fu_q3_if_yes.loc_dur_2_v2": 1.0, + "fu_q3_if_yes.loc_date_3_v2": 1.0, + "fu_q3_if_yes.loc_dur_3_v2": 1.0, + "fu_q3_if_yes.loc_date_4_v2": 1.0, + "fu_q3_if_yes.loc_dur_4_v2": 1.0, + "fu_q3_if_yes.loc_date_5_v2": 1.0, + "fu_q3_if_yes.loc_dur_5_v2": 1.0, + "fu_q3_if_yes.loc_date_6_v2": 1.0, + "fu_q3_if_yes.loc_dur_6_v2": 1.0, + "fu_q3_if_no.loc_no_dk_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_2_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_2_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_3_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_3_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_4_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_4_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_5_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_5_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_date_6_v2": 1.0, + "fu_q3_if_no.fu_q3c_if_yes.loc_dazed_dur_6_v2": 1.0, + "fu_q4.sitfall_v2": 1.0, + "fu_q4.sitcar_v2": 1.0, + "fu_q4.sitobj_v2": 1.0, + "fu_q4.sitabuse_v2": 1.0, + "fu_q4.sitblast_v2": 1.0, + "fu_q4.sitsprt_v2": 1.0, + "fu_q4.sitother_v2": 1.0, + "concuss_new_prob_v2": 1.0, + "fu_q5_if_yes.phyprob_v2": 1.0, + "fu_q5_if_yes.fu_physical.phyhead_v2": 1.0, + "fu_q5_if_yes.fu_physical.phydizzy_v2": 1.0, + "fu_q5_if_yes.fu_physical.phynaus_v2": 1.0, + "fu_q5_if_yes.fu_physical.phybal_v2": 1.0, + "fu_q5_if_yes.fu_physical.phyring_v2": 1.0, + "fu_q5_if_yes.fu_physical.physleep_v2": 1.0, + "fu_q5_if_yes.fu_physical.phyvision_v2": 1.0, + "fu_q5_if_yes.behprob_v2": 1.0, + "fu_q5_if_yes.fu_behavioral.behirrit_v2": 1.0, + "fu_q5_if_yes.fu_behavioral.behdep_v2": 1.0, + "fu_q5_if_yes.fu_behavioral.behanx_v2": 1.0, + "fu_q5_if_yes.fu_behavioral.behselfcare_v2": 1.0, + "fu_q5_if_yes.fu_behavioral.behrelate_v2": 1.0, + "fu_q5_if_yes.cogprob_v2": 1.0, + "fu_q5_if_yes.fu_cognitive.cogconcen_v2": 1.0, + "fu_q5_if_yes.fu_cognitive.cogmemnew_v2": 1.0, + "fu_q5_if_yes.fu_cognitive.cogmemold_v2": 1.0, + "fu_q5_if_yes.fu_cognitive.cogsolve_v2": 1.0, + "fu_q5_if_yes.fu_cognitive.cogtask_v2": 1.0, + "fu_q5_if_yes.fu_cognitive.cogslow_v2": 1.0, + "fu_q5_if_yes.fu_cognitive.cogspeech_v2": 1.0, + "fu_q5_if_yes.fu_cognitive.cogfunct_v2": 1.0, + "concuss_sympt_recov_v2": 1.0, + "concuss_sympt_recov_dur_v2": 1.0, + "fu_q7.dxadhd_v2": 1.0, + "fu_q7.dxldis_v2": 1.0, + "fu_q7.dxdep_v2": 1.0, + "fu_q7.dxanx_v2": 1.0, + "fu_q7.dxbip_v2": 1.0, + "fu_q7.dxschiz_v2": 1.0, + "fu_q7.dxalcoh_v2": 1.0, + "fu_q7.dxsleep_v2": 1.0, + "fu_q7.dxmigrain_v2": 1.0, + "concuss_hist_demen_v2": 1.0, + "fu_q8_if_yes.demmom_v2": 1.0, + "fu_q8_if_yes.demdad_v2": 1.0, + "fu_q8_if_yes.demgmom_v2": 1.0, + "fu_q8_if_yes.demgdad_v2": 1.0, + "fu_q8_if_yes.demaunt_v2": 1.0, + "fu_q8_if_yes.demuncle_v2": 1.0, + "fu_q8_if_yes.dembro_v2": 1.0, + "fu_q8_if_yes.demsis_v2": 1.0 + }, + "changelog": "/profiles/changelogs/concussion_history_follow_up.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/consent.json b/src/encoded/schemas/consent.json index f38b5b61cb..84956948ba 100644 --- a/src/encoded/schemas/consent.json +++ b/src/encoded/schemas/consent.json @@ -4,146 +4,507 @@ "id": "/profiles/consent.json", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", - "identifyingProperties": ["uuid"], + "identifyingProperties": [ + "uuid" + ], "additionalProperties": true, "mixinProperties": [ - { "$ref": "mixins.json#/schema_version" }, - { "$ref": "mixins.json#/uuid" }, - { "$ref": "mixins.json#/shared_status" }, - { "$ref": "mixins.json#/notes" } + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/uuid" + }, + { + "$ref": "mixins.json#/accessioned_status" + }, + { + "$ref": "mixins.json#/notes" + }, + { + "$ref": "mixins.json#/submitter_comment" + } + ], + "required": [ + "consent_type", + "patient", + "final_cons_sign", + "date_signed", + "scanned_consent" ], - "required":["consent_version","patient","overall","date"], "properties": { "schema_version": { "default": "1" }, - "consent_version": { - "default": "version3", - "title": "Consent Version", - "type": "string", - "enum": [ - "version1", - "version2", - "version3" - ] - }, - "patient": { "title": "Patient", "description": "The patient the consent was for.", "type": "string", "linkTo": "Patient" }, - "overall": { - "title": "Overall Consent", + "date_signed": { + "title": "Date Signed", + "description": "Date of consent.", "type": "string", - "enum": [ - "Refuse", - "Agree" + "anyOf": [ + { + "format": "date" + } ] }, - "date": { - "title": "Consent Date", - "description": "Date of consent.", - "comment": "Date can be submitted as YYYY-MM-DD.", + "consent_type": { + "title": "Consent Type", + "description": "type 1: Doesn't include signature for release of genetic information (Consent type 1: 2007 - January 2011);\ntype 2 Does include signature for release of genetic information (Consent type 2: February 2011 - February 2017); \ntype 3 UTSTR Consent that has 2 signatures: (1) Full participation or Limited participation (limited is no future contact) and (2) Overall consent signature. This consent doesn't explicitly cotype release of genetic information into a public repository; \ntype 4 UTSTR Consent that has 2 signatures: (1) Full participation or Limited participation (limited is no future contact) and (2) Overall consent signature. This consent explicitly cotypes release of genetic information into a public repository; \ntype 5 UTSTR consent that has 2 signatures; \n (1) optional biopsy signature and (2) overall consent signature (cotypes release of genetic information)(Consent type 6: early 2018 to present) ; \ntype 6 UTSTR consent that has only 1 signature for entire consent. This consent explicitly cotypes release of genetic information into a public repository(Consent type 5: February 2017 - early 2018) ; \nUnknown;", "type": "string", - "anyOf": [ - {"format": "date"} + "enum": [ + "1", + "2", + "3", + "4", + "5", + "6", + "Unknown" ] }, "future_contact": { - "title": "Future Contact", - "description": "Required for version 1 and version 2, not in version 3", + "title": "(1) Future Contact", + "description": "For consent type 1 and type 2 only", "type": "string", "enum": [ - "Refuse", - "Agree" + "Y", + "N" ] }, "future_research": { - "title": "Future Research", - "description": "Required for version 1 and version 2, not in version 3", + "title": "(2) Future Research", + "description": "For consent type 1 and type 2 only", + "type": "string", + "enum": [ + "Y", + "N" + ] + }, + "info_release": { + "title": "(3) Info Release", + "description": "For consent type 1 and type 2 only", + "type": "string", + "enum": [ + "Y", + "N" + ] + }, + "genetic_release": { + "title": "(4) Genetic Release", + "description": "Not in consent type 2 only", "type": "string", "enum": [ - "Refuse", - "Agree" + "Y", + "N" ] }, - "information_release": { - "title": "Information Release", - "description": "Required for version 1 and version 2, not in version 3", + "final_cons_sign": { + "title": "(5) Final Consent Signature", + "description": "For consent type 1-6", "type": "string", "enum": [ - "Refuse", - "Agree" + "Y", + "N" ] }, - "genetic_information_release": { - "title": "Genetic Information Release", - "description": "Required for version 1 and version 2, not in version 3", + "full_limited_part": { + "title": "(6) Full or Limited Participation", + "description": "For consent type 3 and type 4 only", "type": "string", "enum": [ - "Refuse", - "Agree" + "Full", + "Limited" ] }, - "hippa": { - "title": "HIPPA", - "description": "Required for version 1, not in version 2 and version 3", + "opti_biopsy_sign": { + "title": "(7) Optional Biopsy Signature", + "description": "For consent type 5 only", "type": "string", "enum": [ - "Refuse", - "Agree" + "Y", + "N" ] }, - "biopsyForResearch": { - "title": "Biopsy For Research", - "description": "Required for version 3, not in version 1 and version 2", + "scanned_consent": { + "title": "Scanned Copy of Consent", "type": "string", "enum": [ - "Refuse", - "Agree" + "Y", + "N" ] - } - + } }, "oneOf": [ { - "properties": { - "consent_version": { "enum": ["version1"] } - }, - "required": ["consent_version", "patient", "overall", "date", "future_contact", "future_research", "information_release", "genetic_information_release", "hippa"], - "allOf":[{"not":{"required":["biopsyForResearch" ]}} - ] - }, + "properties": { + "consent_version": { + "const": "1" + } + }, + "required": [ + "future_contact", + "future_research", + "info_release", + "final_cons_sign" + ], + "allOf": [ + { + "not": { + "required": [ + "genetic_release" + ] + } + }, + { + "not": { + "required": [ + "full_limited_part" + ] + } + }, + { + "not": { + "required": [ + "opti_biopsy_sign" + ] + } + } + ] + }, + { + "properties": { + "consent_version": { + "const": "2" + } + }, + "required": [ + "future_contact", + "future_research", + "info_release", + "genetic_release", + "final_cons_sign" + ], + "allOf": [ + { + "not": { + "required": [ + "full_limited_part" + ] + } + }, + { + "not": { + "required": [ + "opti_biopsy_sign" + ] + } + } + ] + }, { - "properties": { - "consent_version": { "const": "version2" } - }, - "required": ["consent_version", "patient", "overall", "date", "future_contact", "future_research", "information_release", "genetic_information_release"], - "allOf":[ - {"not":{"required":["hippa" ]}}, - {"not":{"required":["biopsyForResearch" ]}} - ] + "properties": { + "consent_version": { + "enum": [ + "3", + "4" + ] + } + }, + "required": [ + "final_cons_sign", + "full_limited_part" + ], + "allOf": [ + { + "not": { + "required": [ + "future_contact" + ] + } + }, + { + "not": { + "required": [ + "future_research" + ] + } + }, + { + "not": { + "required": [ + "info_release" + ] + } + }, + { + "not": { + "required": [ + "genetic_release" + ] + } + }, + { + "not": { + "required": [ + "opti_biopsy_sign" + ] + } + } + ] }, { - "properties": { - "consent_version": { "const": "version3" } - }, - "required": ["consent_version", "patient", "overall", "date","biopsyForResearch"], - "allOf":[ - {"not":{"required":["future_contact" ]}}, - {"not":{"required":["future_research" ]}}, - {"not":{"required":["information_release" ]}}, - {"not":{"required":["genetic_information_release" ]}}, - {"not":{"required":["hippa"]}} - ] + "properties": { + "consent_version": { + "const": "5" + } + }, + "required": [ + "final_cons_sign", + "opti_biopsy_sign" + ], + "allOf": [ + { + "not": { + "required": [ + "future_contact" + ] + } + }, + { + "not": { + "required": [ + "future_research" + ] + } + }, + { + "not": { + "required": [ + "info_release" + ] + } + }, + { + "not": { + "required": [ + "genetic_release" + ] + } + }, + { + "not": { + "required": [ + "full_limited_part" + ] + } + } + ] + }, + { + "properties": { + "consent_version": { + "const": "6" + } + }, + "required": [ + "final_cons_sign" + ], + "allOf": [ + { + "not": { + "required": [ + "future_contact" + ] + } + }, + { + "not": { + "required": [ + "future_research" + ] + } + }, + { + "not": { + "required": [ + "info_release" + ] + } + }, + { + "not": { + "required": [ + "genetic_release" + ] + } + }, + { + "not": { + "required": [ + "full_limited_part" + ] + } + }, + { + "not": { + "required": [ + "opti_biopsy_sign" + ] + } + } + ] + }, + { + "properties": { + "consent_version": { + "const": "Unknown" + } + }, + "allOf": [ + { + "not": { + "required": [ + "future_contact" + ] + } + }, + { + "not": { + "required": [ + "future_research" + ] + } + }, + { + "not": { + "required": [ + "info_release" + ] + } + }, + { + "not": { + "required": [ + "genetic_release" + ] + } + }, + { + "not": { + "required": [ + "final_cons_sign" + ] + } + }, + { + "not": { + "required": [ + "full_limited_part" + ] + } + }, + { + "not": { + "required": [ + "opti_biopsy_sign" + ] + } + } + ] } - ], + ], "facets": { "status": { "title": "Status" + }, + "patient": { + "title": "Patient" + }, + "date_signed": { + "title": "Date Signed" + }, + "consent_type": { + "title": "Consent Type" + }, + "future_contact": { + "title": "(1) Future Contact" + }, + "future_research": { + "title": "(2) Future Research" + }, + "info_release": { + "title": "(3) Info Release" + }, + "genetic_release": { + "title": "(4) Genetic Release" + }, + "final_cons_sign": { + "title": "(5) Final Consent Signature" + }, + "full_limited_part": { + "title": "(6) Full or Limited Participation" + }, + "opti_biopsy_sign": { + "title": "(7) Optional Biopsy Signature" + }, + "scanned_consent": { + "title": "Scanned Copy of Consent" } }, + "columns": { + "status": { + "title": "Status" + }, + "patient": { + "title": "Patient" + }, + "date_signed": { + "title": "Date Signed" + }, + "consent_type": { + "title": "Consent Type" + }, + "future_contact": { + "title": "(1) Future Contact" + }, + "future_research": { + "title": "(2) Future Research" + }, + "info_release": { + "title": "(3) Info Release" + }, + "genetic_release": { + "title": "(4) Genetic Release" + }, + "final_cons_sign": { + "title": "(5) Final Consent Signature" + }, + "full_limited_part": { + "title": "(6) Full or Limited Participation" + }, + "opti_biopsy_sign": { + "title": "(7) Optional Biopsy Signature" + }, + "scanned_consent": { + "title": "Scanned Copy of Consent" + } + }, + "boost_values": { + "patient": 1.0, + "date_signed": 1.0, + "consent_type": 1.0, + "future_contact": 1.0, + "future_research": 1.0, + "info_release": 1.0, + "genetic_release": 1.0, + "final_cons_sign": 1.0, + "full_limited_part": 1.0, + "opti_biopsy_sign": 1.0, + "scanned_consent": 1.0 + }, "changelog": "/profiles/changelogs/consent.md" - } +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a1v1.json b/src/encoded/schemas/fvp_a1v1.json new file mode 100644 index 0000000000..ecd23c749e --- /dev/null +++ b/src/encoded/schemas/fvp_a1v1.json @@ -0,0 +1,227 @@ +{ + "title": "NACC Uniform Data Set (UDS),Follow-up Form A1: Subject Demographics", + "description": "NOTE: This form is to be completed by intake interviewer per ADC scheduling\nrecords, subject interview, medical records, and proxy informant report (as needed). \nFor additional clarification and examples, see UDS Coding Guidebook for\nFollow-up Visit Packet, Form A1. Check only one box per question.\n", + "id": "/profiles/fvp_a1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "birthday": { + "title": "1. Subject’s month/year of birth", + "type": "object", + "properties": { + "BIRTHMO": { + "title": "1A Subject’s month of birth", + "description": "(1 – 12), Date can be submitted as MM. BIRTHMO is available to all researchers upon request.", + "type": "integer", + "minimum": 1, + "maximum": 12 + }, + "BIRTHYR": { + "title": "1B Subject’s year of birth", + "description": "Date can be submitted as YYYY.1875 to (current year minus 15)", + "type": "integer", + "minimum": 1900 + } + } + }, + "SEX": { + "title": "2 Subject’s sex", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "LIVSIT": { + "title": "3 What is the subject’s living situation?", + "type": "string", + "enum": [ + "1 Lives alone", + "2 Lives with spouse or partner", + "3 Lives with relative or friend", + "4 Lives with group", + "5 Other", + "9 Unknown" + ] + }, + "LIVSITX": { + "title": "3A Living situation, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).Blank if #3, LIVSIT ≠ 5 (Other).", + "type": "string" + }, + "INDEPEND": { + "title": "4 What is the subject’s level of independence?", + "type": "string", + "enum": [ + "1 Able to live independently", + "2 Requires some assistance with complex activities", + "3 Requires some assistance with basic activities", + "4 Completely dependent", + "9 Unknown" + ] + }, + "RESIDENC": { + "title": "5 What is the subject’s type of residence?", + "type": "string", + "enum": [ + "1 Single family residence", + "2 Retirement community", + "3 Assisted living/boarding home/adult family home", + "4 Skilled nursing facility/nursing home", + "5 Other", + "9 Unknown" + ] + }, + "RESIDENX": { + "title": "5A Type of residence, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%). Blank if #5, RESIDENC ≠ 5 (Other).", + "type": "string" + }, + "ZIP": { + "title": "6 Subject’s primary residence zip code (first 3 digits)", + "description": "Must be valid zip code, in the range 006 – 999.ZIP is available to all researchers upon request.", + "type": "string" + }, + "MARISTAT": { + "title": "7 Subject’s current marital status", + "type": "string", + "enum": [ + "1 Married", + "2 Widowed", + "3 Divorced", + "4 Separated", + "5 Never married", + "6 Living as married", + "8 Other", + "9 Unknown" + ] + }, + "MARISTAX": { + "title": "7A Marital status, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%).Blank if #7, MARISTAT ≠ 8 (Other).", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "birthday.BIRTHMO": { + "title": "1A Subject’s month of birth" + }, + "birthday.BIRTHYR": { + "title": "1B Subject’s year of birth" + }, + "SEX": { + "title": "2 Subject’s sex" + }, + "LIVSIT": { + "title": "3 What is the subject’s living situation?" + }, + "LIVSITX": { + "title": "3A Living situation, other – specify" + }, + "INDEPEND": { + "title": "4 What is the subject’s level of independence?" + }, + "RESIDENC": { + "title": "5 What is the subject’s type of residence?" + }, + "RESIDENX": { + "title": "5A Type of residence, other – specify" + }, + "ZIP": { + "title": "6 Subject’s primary residence zip code (first 3 digits)" + }, + "MARISTAT": { + "title": "7 Subject’s current marital status" + }, + "MARISTAX": { + "title": "7A Marital status, other – specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "birthday.BIRTHMO": { + "title": "1A Subject’s month of birth" + }, + "birthday.BIRTHYR": { + "title": "1B Subject’s year of birth" + }, + "SEX": { + "title": "2 Subject’s sex" + }, + "LIVSIT": { + "title": "3 What is the subject’s living situation?" + }, + "LIVSITX": { + "title": "3A Living situation, other – specify" + }, + "INDEPEND": { + "title": "4 What is the subject’s level of independence?" + }, + "RESIDENC": { + "title": "5 What is the subject’s type of residence?" + }, + "RESIDENX": { + "title": "5A Type of residence, other – specify" + }, + "ZIP": { + "title": "6 Subject’s primary residence zip code (first 3 digits)" + }, + "MARISTAT": { + "title": "7 Subject’s current marital status" + }, + "MARISTAX": { + "title": "7A Marital status, other – specify" + } + }, + "boost_values": { + "patient": 1.0, + "birthday.BIRTHMO": 1.0, + "birthday.BIRTHYR": 1.0, + "SEX": 1.0, + "LIVSIT": 1.0, + "LIVSITX": 1.0, + "INDEPEND": 1.0, + "RESIDENC": 1.0, + "RESIDENX": 1.0, + "ZIP": 1.0, + "MARISTAT": 1.0, + "MARISTAX": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a1v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a1v2.json b/src/encoded/schemas/fvp_a1v2.json new file mode 100644 index 0000000000..f21385ed21 --- /dev/null +++ b/src/encoded/schemas/fvp_a1v2.json @@ -0,0 +1,227 @@ +{ + "title": "NACC Uniform Data Set (UDS),Follow-up Form A1: Subject Demographics", + "description": "NOTE: This form is to be completed by intake interviewer per ADC scheduling\nrecords, subject interview, medical records, and proxy informant report (as needed). \nFor additional clarification and examples, see UDS Coding Guidebook for\nFollow-up Visit Packet, Form A1. Check only one box per question.\n", + "id": "/profiles/fvp_a1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "birthday": { + "title": "1. Subject’s month/year of birth", + "type": "object", + "properties": { + "BIRTHMO": { + "title": "1A Subject’s month of birth", + "description": "(1 – 12), Date can be submitted as MM. BIRTHMO is available to all researchers upon request.", + "type": "integer", + "minimum": 1, + "maximum": 12 + }, + "BIRTHYR": { + "title": "1B Subject’s year of birth", + "description": "Date can be submitted as YYYY.1875 to (current year minus 15)", + "type": "integer", + "minimum": 1900 + } + } + }, + "SEX": { + "title": "2 Subject’s sex", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "LIVSIT": { + "title": "3 What is the subject’s living situation?", + "type": "string", + "enum": [ + "1 Lives alone", + "2 Lives with spouse or partner", + "3 Lives with relative or friend", + "4 Lives with group", + "5 Other", + "9 Unknown" + ] + }, + "LIVSITX": { + "title": "3A Living situation, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).Blank if #3, LIVSIT ≠ 5 (Other).", + "type": "string" + }, + "INDEPEND": { + "title": "4 What is the subject’s level of independence?", + "type": "string", + "enum": [ + "1 Able to live independently", + "2 Requires some assistance with complex activities", + "3 Requires some assistance with basic activities", + "4 Completely dependent", + "9 Unknown" + ] + }, + "RESIDENC": { + "title": "5 What is the subject’s type of residence?", + "type": "string", + "enum": [ + "1 Single family residence", + "2 Retirement community", + "3 Assisted living/boarding home/adult family home", + "4 Skilled nursing facility/nursing home", + "5 Other", + "9 Unknown" + ] + }, + "RESIDENX": { + "title": "5A Type of residence, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%). Blank if #5, RESIDENC ≠ 5 (Other).", + "type": "string" + }, + "ZIP": { + "title": "6 Subject’s primary residence zip code (first 3 digits)", + "description": "Must be valid zip code, in the range 006 – 999.ZIP is available to all researchers upon request.", + "type": "string" + }, + "MARISTAT": { + "title": "7 Subject’s current marital status", + "type": "string", + "enum": [ + "1 Married", + "2 Widowed", + "3 Divorced", + "4 Separated", + "5 Never married", + "6 Living as married", + "8 Other", + "9 Unknown" + ] + }, + "MARISTAX": { + "title": "7A Marital status, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%).Blank if #7, MARISTAT ≠ 8 (Other).", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "birthday.BIRTHMO": { + "title": "1A Subject’s month of birth" + }, + "birthday.BIRTHYR": { + "title": "1B Subject’s year of birth" + }, + "SEX": { + "title": "2 Subject’s sex" + }, + "LIVSIT": { + "title": "3 What is the subject’s living situation?" + }, + "LIVSITX": { + "title": "3A Living situation, other – specify" + }, + "INDEPEND": { + "title": "4 What is the subject’s level of independence?" + }, + "RESIDENC": { + "title": "5 What is the subject’s type of residence?" + }, + "RESIDENX": { + "title": "5A Type of residence, other – specify" + }, + "ZIP": { + "title": "6 Subject’s primary residence zip code (first 3 digits)" + }, + "MARISTAT": { + "title": "7 Subject’s current marital status" + }, + "MARISTAX": { + "title": "7A Marital status, other – specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "birthday.BIRTHMO": { + "title": "1A Subject’s month of birth" + }, + "birthday.BIRTHYR": { + "title": "1B Subject’s year of birth" + }, + "SEX": { + "title": "2 Subject’s sex" + }, + "LIVSIT": { + "title": "3 What is the subject’s living situation?" + }, + "LIVSITX": { + "title": "3A Living situation, other – specify" + }, + "INDEPEND": { + "title": "4 What is the subject’s level of independence?" + }, + "RESIDENC": { + "title": "5 What is the subject’s type of residence?" + }, + "RESIDENX": { + "title": "5A Type of residence, other – specify" + }, + "ZIP": { + "title": "6 Subject’s primary residence zip code (first 3 digits)" + }, + "MARISTAT": { + "title": "7 Subject’s current marital status" + }, + "MARISTAX": { + "title": "7A Marital status, other – specify" + } + }, + "boost_values": { + "patient": 1.0, + "birthday.BIRTHMO": 1.0, + "birthday.BIRTHYR": 1.0, + "SEX": 1.0, + "LIVSIT": 1.0, + "LIVSITX": 1.0, + "INDEPEND": 1.0, + "RESIDENC": 1.0, + "RESIDENX": 1.0, + "ZIP": 1.0, + "MARISTAT": 1.0, + "MARISTAX": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a1v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a1v3.json b/src/encoded/schemas/fvp_a1v3.json new file mode 100644 index 0000000000..fb2ff9c460 --- /dev/null +++ b/src/encoded/schemas/fvp_a1v3.json @@ -0,0 +1,208 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM A1: SUBJECT DEMOGRAPHICS", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on ADC scheduling records, subject interview, medical records, and co-participant report (as needed). For additional clarification and examples, see UDS Coding Guidebook for Follow-up Visit Packet, Form A1. Link to NACC Coding Guidebook Check only one box per question. To print a copy of data collected for this form at previous UDS visit, go to https://www.alz.washington.edu/MEMBER/siteprint.html", + "comment": "Schema for submitting UDS_fvp_A1 form information.", + "id": "/profiles/fvp_a1v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "patient", + "adcid", + "visdate", + "visitnum", + "initials", + "fu_birthmo", + "fu_birthyr", + "fu_maristat", + "fu_sex", + "fu_livsitua", + "fu_independ", + "fu_residenc", + "fu_zip" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "patient": { + "title": "Patient", + "description": "The patient the form belongs for.", + "type": "string", + "linkTo": "Patient" + }, + "fu_birthmo": { + "title": "1a. Subject's month of birth(MM)", + "description": "Date can be submitted as MM.", + "type": "integer", + "minimum": 1, + "maximum": 12 + }, + "fu_birthyr": { + "title": "1b. Subject's year of birth(YYYY)", + "description": "Date can be submitted as YYYY.", + "type": "integer", + "minimum": 1900 + }, + "fu_maristat": { + "title": "2. Subject's current marital status:", + "type": "string", + "enum": [ + "1 Married", + "2 Widowed", + "3 Divorced", + "4 Separated", + "5 Never married (or marriage was annulled)", + "6 Living as married/domestic partner", + "8 Other", + "9 Unknown" + ] + }, + "fu_sex": { + "title": "3. Subject's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "fu_livsitua": { + "title": "4. What is the subject's living situation? ", + "type": "string", + "enum": [ + "1 Lives alone", + "2 Lives with one other person: a spouse or partner", + "3 Lives with one other person: a relative, friend, or roomate", + "4 Lives with caregiver who is not spouse/partner, relative or friend", + "5 Lives with a group (related or not related) in a private residence)", + "6 Lives in a group home (e.g., assisted living, nursing home, or convent)", + "9 Unknown" + ] + }, + "fu_independ": { + "title": "5. What is the subject's level of independence?", + "type": "string", + "enum": [ + "1 Able to live independently", + "2 Requires some assistance with complex activities", + "3 Requires some assistance with basic activities", + "4 Completely dependent", + "9 Unknown" + ] + }, + "fu_residenc": { + "title": "6. What is the subject's primary type of residence?", + "type": "string", + "enum": [ + "1 Single-, or multi-family private residence (apartment, condo, house)", + "2 Retirement community or independent group living", + "3 Assisted living, adult family home, or boarding home", + "4 Skilled nursing facility, nursing home, hospital, or hospice", + "5 Other", + "9 Unknown" + ] + }, + "fu_zip": { + "title": "7. ZIP Code (first 3 digits) of subject's primary residence:", + "description": "If unknown, leave blank", + "type": "string", + "pattern": "^[0][0][6-9]|[0][1-9][0-9]|[1-9][0-9][0-9]$" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_birthmo": { + "title": "1a. Subject's month of birth(MM)" + }, + "fu_birthyr": { + "title": "1b. Subject's year of birth(YYYY)" + }, + "fu_maristat": { + "title": "2. Subject's current marital status:" + }, + "fu_sex": { + "title": "3. Subject's sex:" + }, + "fu_livsitua": { + "title": "4. What is the subject's living situation? " + }, + "fu_independ": { + "title": "5. What is the subject's level of independence?" + }, + "fu_residenc": { + "title": "6. What is the subject's primary type of residence?" + }, + "fu_zip": { + "title": "7. ZIP Code (first 3 digits) of subject's primary residence:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_birthmo": { + "title": "1a. Subject's month of birth(MM)" + }, + "fu_birthyr": { + "title": "1b. Subject's year of birth(YYYY)" + }, + "fu_maristat": { + "title": "2. Subject's current marital status:" + }, + "fu_sex": { + "title": "3. Subject's sex:" + }, + "fu_livsitua": { + "title": "4. What is the subject's living situation? " + }, + "fu_independ": { + "title": "5. What is the subject's level of independence?" + }, + "fu_residenc": { + "title": "6. What is the subject's primary type of residence?" + }, + "fu_zip": { + "title": "7. ZIP Code (first 3 digits) of subject's primary residence:" + } + }, + "boost_values": { + "patient": 1.0, + "fu_birthmo": 1.0, + "fu_birthyr": 1.0, + "fu_maristat": 1.0, + "fu_sex": 1.0, + "fu_livsitua": 1.0, + "fu_independ": 1.0, + "fu_residenc": 1.0, + "fu_zip": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a1v3.md" +} diff --git a/src/encoded/schemas/fvp_a2v1.json b/src/encoded/schemas/fvp_a2v1.json new file mode 100644 index 0000000000..5414656527 --- /dev/null +++ b/src/encoded/schemas/fvp_a2v1.json @@ -0,0 +1,424 @@ +{ + "title": "NACC UNIFORM DATA SET (UDS) - FOLLOW-UP VISIT PACKET Form A2: Co-participant Demographics", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on co-participant's report. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A2.Link to NACC Coding Guidebook. Check only one box per question.To print a copy of data collected for this form at previous UDS visit, go to https: //www.alz.washington.edu/MEMBER/siteprint.html", + "id": "/profiles/uds_fvp_a2v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "patient": { + "title": "Patient", + "description": "The patient the form belongs for.", + "type": "string", + "linkTo": "Patient" + }, + "fu_inbirmo": { + "title": "1a. Co-participant's month of birth", + "description": "(MM) 1 - 12, 99 = Unknown", + "type": "string", + "pattern": "^[0]?[1-9]|[1][0-2]|[99]$" + }, + "fu_inbiryr": { + "title": "1b. Co-participant's year of birth", + "description": "(YYYY) 1875 to (current year minus 15), 9999 = Unknown", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "fu_insex": { + "title": "2. Co-participant's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "fu_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?", + "description": "If No, SKIP TO QUESTION 9;If Yes, continue to 4.", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 9)", + "1 Yes" + ] + }, + "fu_inhisp": { + "title": "4a. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?", + "description": "If No, SKIP TO QUESTION 5;if Unknown, SKIP TO QUESTION 5;If Yes, continue to 4a.", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 5)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 5)" + ] + }, + "fu_inhispor": { + "title": "4b. If yes, what are the co-participant's reported origins?", + "description": "If Other, please specify in 4b1.", + "type": "string", + "enum": [ + "1 Mexican/Chicano/Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other (specify)", + "99 Unknown" + ] + }, + "fu_inhispox": { + "title": "4b1. If other ethnic origins please specify:", + "type": "string" + }, + "fu_inrace": { + "title": "5. What does co-participant report as his or her race?", + "description": "If Other, please specify in 5a.", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "99 Unknown" + ] + }, + "fu_inracex": { + "title": "5a. If other race, please specify:", + "type": "string" + }, + "fu_inrasec": { + "title": "6. What additional race does the co-participant report?", + "description": "If Other, please specify in 6a.", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "fu_inrasecx": { + "title": "6a. If other 2nd race, please specify:", + "type": "string" + }, + "fu_inrater": { + "title": "7. What additional race, beyond those reported in questions 5 and 6, does the co-participant report?", + "description": "If Other, please specify in 7a.", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "fu_inraterx": { + "title": "7a. If other 3rd race, please specify:", + "type": "string" + }, + "fu_ineduc": { + "title": "8. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:", + "description": "12 = high school GED, 16 = bachelor's degree, 18 = master's degree,20 = doctorate,99 = unknown(0-36, 99=unknown)", + "type": "integer", + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 99 + ] + }, + + + "fu_inrelto": { + "title": "9. What is co-participant's relationship to the subject?", + "type": "string", + "enum": [ + "1 Spouse, partner, or companion (include ex-spouse, ex-partner, fiance(e). boyfriend, girlfriend)", + "2 Child (by blood or through marriage or adoption)", + "3 Sibling (by blood or through marriage or adoption)", + "4 Other relative (by blood or through marriage or adoption)", + "5 Friend, neighbor, or someone known through family, friends, work, or community (e.g., church)", + "6 Paid caregiver, health care provider, or clinician", + "7 Other" + + ] + }, + "fu_INRELTOX": { + "title": "9a. Informant relationship, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + + }, + + "fu_inlivwth": { + "title": "10. Does the co-participant live with the subject?", + "description": "If Yes, SKIP TO QUESTION 11;If No, continue to 10a and 10b.", + "type": "string", + "enum": [ + "0 No", + "1 Yes (If Yes, SKIP TO QUESTION 11)" + ] + }, + "fu_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:", + "type": "string", + "enum": [ + "1 Daily", + "2 At least", + "3 times per week", + "3 Weekly", + "4 At least", + "3 times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "fu_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:", + "type": "string", + "enum": [ + "1 Daily", + "2 At least", + "3 times per week", + "3 Weekly", + "4 At least", + "3 times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "fu_inrely": { + "title": "11. Is there a question about the co-participant's reliability?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + }, + + + + "facets": { + "status": { + "title": "Status" + }, + "fu_inbirmo": { + "title": "1a. Co-participant's month of birth" + }, + "fu_inbiryr": { + "title": "1b. Co-participant's year of birth" + }, + "fu_insex": { + "title": "2. Co-participant's sex:" + }, + "fu_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?" + }, + "fu_inhisp": { + "title": "4a. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "fu_inhispor": { + "title": "4b. If yes, what are the co-participant's reported origins?" + }, + "fu_inhispox": { + "title": "4b1. If other ethnic origins please specify:" + }, + "fu_inrace": { + "title": "5. What does co-participant report as his or her race?" + }, + "fu_inracex": { + "title": "5a. If other race, please specify:" + }, + "fu_inrasec": { + "title": "6. What additional race does the co-participant report?" + }, + "fu_inrasecx": { + "title": "6a. If other 2nd race, please specify:" + }, + "fu_inrater": { + "title": "7. What additional race, beyond those reported in questions 5 and 6, does the co-participant report?" + }, + "fu_inraterx": { + "title": "7a. If other 3rd race, please specify:" + }, + "fu_ineduc": { + "title": "8. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + "fu_inrelto": { + "title": "9. What is co-participant's relationship to the subject?" + }, + + "fu_inlivwth": { + "title": "10. Does the co-participant live with the subject?" + }, + "fu_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:" + }, + "fu_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:" + }, + "fu_inrely": { + "title": "11. Is there a question about the co-participant's reliability?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_inbirmo": { + "title": "1a. Co-participant's month of birth" + }, + "fu_inbiryr": { + "title": "1b. Co-participant's year of birth" + }, + "fu_insex": { + "title": "2. Co-participant's sex:" + }, + "fu_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?" + }, + "fu_inhisp": { + "title": "4a. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "fu_inhispor": { + "title": "4b. If yes, what are the co-participant's reported origins?" + }, + "fu_inhispox": { + "title": "4b1. If other ethnic origins please specify:" + }, + "fu_inrace": { + "title": "5. What does co-participant report as his or her race?" + }, + "fu_inracex": { + "title": "5a. If other race, please specify:" + }, + "fu_inrasec": { + "title": "6. What additional race does the co-participant report?" + }, + "fu_inrasecx": { + "title": "6a. If other 2nd race, please specify:" + }, + "fu_inrater": { + "title": "7. What additional race, beyond those reported in questions 5 and 6, does the co-participant report?" + }, + "fu_inraterx": { + "title": "7a. If other 3rd race, please specify:" + }, + "fu_ineduc": { + "title": "8. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + "fu_inrelto": { + "title": "9. What is co-participant's relationship to the subject?" + }, + + "fu_inlivwth": { + "title": "10. Does the co-participant live with the subject?" + }, + "fu_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:" + }, + "fu_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:" + }, + "fu_inrely": { + "title": "11. Is there a question about the co-participant's reliability?" + } + }, + "boost_values": { + "patient":1.0, + "fu_inbirmo": 1.0, + "fu_inbiryr": 1.0, + "fu_insex": 1.0, + "fu_newinf": 1.0, + "fu_inhisp": 1.0, + "fu_inhispor": 1.0, + "fu_inhispox": 1.0, + "fu_inrace": 1.0, + "fu_inracex": 1.0, + "fu_inrasec": 1.0, + "fu_inrasecx": 1.0, + "fu_inrater": 1.0, + "fu_inraterx": 1.0, + "fu_ineduc": 1.0, + "fu_inrelto": 1.0, + "fu_inlivwth": 1.0, + "fu_invisits": 1.0, + "fu_incalls": 1.0, + "fu_inrely": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a2v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a2v2.json b/src/encoded/schemas/fvp_a2v2.json new file mode 100644 index 0000000000..2f45994807 --- /dev/null +++ b/src/encoded/schemas/fvp_a2v2.json @@ -0,0 +1,774 @@ +{ + "title": "NACC UNIFORM DATA SET (UDS) - FOLLOW-UP VISIT PACKET Form A2: Co-participant Demographics", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on co-participant's report. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A2.Link to NACC Coding Guidebook. Check only one box per question.To print a copy of data collected for this form at previous UDS visit, go to https: //www.alz.washington.edu/MEMBER/siteprint.html", + "id": "/profiles/fvp_a2v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "patient": { + "title": "Patient", + "description": "The patient the form belongs for.", + "type": "string", + "linkTo": "Patient" + }, + "fu_inbirmo": { + "title": "1a. Co-participant's month of birth", + "description": "(MM) 1 - 12, 99 = Unknown", + "type": "string", + "pattern": "^[0]?[1-9]|[1][0-2]|[99]$" + }, + "fu_inbiryr": { + "title": "1b. Co-participant's year of birth", + "description": "(YYYY) 1875 to (current year minus 15), 9999 = Unknown", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "fu_insex": { + "title": "2. Co-participant's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "fu_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?", + "description": "If No, SKIP TO QUESTION 9;If Yes, continue to 4.", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 9)", + "1 Yes" + ] + }, + "fu_inhisp": { + "title": "4. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?", + "description": "If No, SKIP TO QUESTION 5;if Unknown, SKIP TO QUESTION 5;If Yes, continue to 4a.", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 5)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 5)" + ] + }, + "fu_inhispor": { + "title": "4a. If yes, what are the co-participant's reported origins?", + "description": "If Other, please specify in 4a1.", + "type": "string", + "enum": [ + "1 Mexican/Chicano/Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other (specify)", + "99 Unknown" + ] + }, + "fu_inhispox": { + "title": "4a1. If other ethnic origins please specify:", + "type": "string" + }, + "fu_inrace": { + "title": "5. What does co-participant report as his or her race?", + "description": "If Other, please specify in 5a.", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "99 Unknown" + ] + }, + "fu_inracex": { + "title": "5a. If other race, please specify:", + "type": "string" + }, + "fu_inrasec": { + "title": "6. What additional race does the co-participant report?", + "description": "If Other, please specify in 6a.", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "fu_inrasecx": { + "title": "6a. If other 2nd race, please specify:", + "type": "string" + }, + "fu_inrater": { + "title": "7. What additional race, beyond those reported in questions 5 and 6, does the co-participant report?", + "description": "If Other, please specify in 7a.", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "fu_inraterx": { + "title": "7a. If other 3rd race, please specify:", + "type": "string" + }, + "fu_ineduc": { + "title": "8. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:", + "description": "12 = high school GED, 16 = bachelor's degree, 18 = master's degree,20 = doctorate,99 = unknown(0-36, 99=unknown)", + "type": "integer", + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 99 + ] + }, + + + "fu_inrelto": { + "title": "9. What is co-participant's relationship to the subject?", + "type": "string", + "enum": [ + "1 Spouse, partner, or companion (include ex-spouse, ex-partner, fiance(e). boyfriend, girlfriend)", + "2 Child (by blood or through marriage or adoption)", + "3 Sibling (by blood or through marriage or adoption)", + "4 Other relative (by blood or through marriage or adoption)", + "5 Friend, neighbor, or someone known through family, friends, work, or community (e.g., church)", + "6 Paid caregiver, health care provider, or clinician", + "7 Other" + + ] + }, + "fu_INRELTOX": { + "title": "9a. Informant relationship, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + + }, + + "fu_inlivwth": { + "title": "10. Does the co-participant live with the subject?", + "description": "If Yes, SKIP TO QUESTION 11;If No, continue to 10a and 10b.", + "type": "string", + "enum": [ + "0 No", + "1 Yes (If Yes, SKIP TO QUESTION 11)" + ] + }, + "fu_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:", + "type": "string", + "enum": [ + "1 Daily", + "2 At least", + "3 times per week", + "3 Weekly", + "4 At least", + "3 times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "fu_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:", + "type": "string", + "enum": [ + "1 Daily", + "2 At least", + "3 times per week", + "3 Weekly", + "4 At least", + "3 times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "fu_inrely": { + "title": "11. Is there a question about the co-participant's reliability?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + }, + + "allOf":[ + { + "oneOf": [ + { + "properties": { + "fu_newinf": { + "enum": [ + "0 No (If No, SKIP TO QUESTION 9)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_inhisp" + ] + } + }, + { + "not": { + "required": [ + "fu_inhispor" + ] + } + }, + { + "not": { + "required": [ + "fu_inhispox" + ] + } + }, + { + "not": { + "required": [ + "fu_inrace" + ] + } + }, + { + "not": { + "required": [ + "fu_inracex" + ] + } + }, + { + "not": { + "required": [ + "fu_inrasec" + ] + } + }, + { + "not": { + "required": [ + "fu_inrasecx" + ] + } + }, + { + "not": { + "required": [ + "fu_inrater" + ] + } + }, + { + "not": { + "required": [ + "fu_inraterx" + ] + } + }, + { + "not": { + "required": [ + "fu_ineduc" + ] + } + } + ] + }, + { + "properties": { + "fu_newinf": { + "enum": [ + "1 Yes" + ] + } + }, + "required": [ + "fu_inhisp", + "fu_inrace", + "fu_inrasec", + "fu_inrater", + "fu_ineduc" + ], + "allOf": [ + { + "oneOf": [ + { + "properties": { + + "fu_inhisp": { + "enum": [ + "1 Yes" + ] + }, + "fu_inhispor": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "fu_inhispox" + ] + }, + { + "properties": { + + "fu_inhisp": { + "enum": [ + "1 Yes" + ] + }, + "fu_inhispor": { + "enum": [ + "1 Mexican/Chicano/Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "fu_inhispox" + ] + } + + }, + { + "properties": { + "fu_inhisp": { + "enum": [ + "0 No (If No, SKIP TO QUESTION 5)", + "9 Unknown (If Unknown, SKIP TO QUESTION 5)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_inhispor" + ] + } + }, + { + "not": { + "required": [ + "fu_inhispox" + ] + } + } + ] + } + + + ] + }, + { + "oneOf": [ + { + "properties": { + + "fu_inrace": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "99 Unknown" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_inracex" + ] + } + } + ] + }, + { + "properties": { + + "fu_inrace": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "fu_inracex" + ] + } + ] + }, + { + "oneOf": [ + { + "properties": { + + "fu_inrasec": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "88 None Reported", + "99 Unknown" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_inrasecx" + ] + } + } + ] + }, + { + "properties": { + + "fu_inrasec": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "fu_inrasecx" + ] + } + ] + }, + { + "oneOf": [ + { + "properties": { + + "fu_inrater": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "88 None Reported", + "99 Unknown" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_inraterx" + ] + } + } + ] + }, + { + "properties": { + + "fu_inrater": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "fu_inraterx" + ] + } + ] + } + + ] + + } + ] + }, + { + "oneOf": [ + { + "properties": { + "fu_inlivwth": { + "enum": [ + "1 Yes (If Yes, SKIP TO QUESTION 11)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_invisits" + ] + } + }, + { + "not": { + "required": [ + "fu_incalls" + ] + } + } + ] + }, + { + "properties": { + "fu_inlivwth": { + "enum": [ + "0 No" + ] + } + }, + "required": [ + "fu_invisits", + "fu_incalls" + ] + } + ] + } + ], + + "facets": { + "status": { + "title": "Status" + }, + "fu_inbirmo": { + "title": "1a. Co-participant's month of birth" + }, + "fu_inbiryr": { + "title": "1b. Co-participant's year of birth" + }, + "fu_insex": { + "title": "2. Co-participant's sex:" + }, + "fu_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?" + }, + "fu_inhisp": { + "title": "4. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "fu_inhispor": { + "title": "4a. If yes, what are the co-participant's reported origins?" + }, + "fu_inhispox": { + "title": "4a1. If other ethnic origins please specify:" + }, + "fu_inrace": { + "title": "5. What does co-participant report as his or her race?" + }, + "fu_inracex": { + "title": "5a. If other race, please specify:" + }, + "fu_inrasec": { + "title": "6. What additional race does the co-participant report?" + }, + "fu_inrasecx": { + "title": "6a. If other 2nd race, please specify:" + }, + "fu_inrater": { + "title": "7. What additional race, beyond those reported in questions 5 and 6, does the co-participant report?" + }, + "fu_inraterx": { + "title": "7a. If other 3rd race, please specify:" + }, + "fu_ineduc": { + "title": "8. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + "fu_inrelto": { + "title": "9. What is co-participant's relationship to the subject?" + }, + + "fu_inlivwth": { + "title": "10. Does the co-participant live with the subject?" + }, + "fu_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:" + }, + "fu_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:" + }, + "fu_inrely": { + "title": "11. Is there a question about the co-participant's reliability?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_inbirmo": { + "title": "1a. Co-participant's month of birth" + }, + "fu_inbiryr": { + "title": "1b. Co-participant's year of birth" + }, + "fu_insex": { + "title": "2. Co-participant's sex:" + }, + "fu_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?" + }, + "fu_inhisp": { + "title": "4. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "fu_inhispor": { + "title": "4a. If yes, what are the co-participant's reported origins?" + }, + "fu_inhispox": { + "title": "4a1. If other ethnic origins please specify:" + }, + "fu_inrace": { + "title": "5. What does co-participant report as his or her race?" + }, + "fu_inracex": { + "title": "5a. If other race, please specify:" + }, + "fu_inrasec": { + "title": "6. What additional race does the co-participant report?" + }, + "fu_inrasecx": { + "title": "6a. If other 2nd race, please specify:" + }, + "fu_inrater": { + "title": "7. What additional race, beyond those reported in questions 5 and 6, does the co-participant report?" + }, + "fu_inraterx": { + "title": "7a. If other 3rd race, please specify:" + }, + "fu_ineduc": { + "title": "8. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + "fu_inrelto": { + "title": "9. What is co-participant's relationship to the subject?" + }, + + "fu_inlivwth": { + "title": "10. Does the co-participant live with the subject?" + }, + "fu_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:" + }, + "fu_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:" + }, + "fu_inrely": { + "title": "11. Is there a question about the co-participant's reliability?" + } + }, + "boost_values": { + "patient":1.0, + "fu_inbirmo": 1.0, + "fu_inbiryr": 1.0, + "fu_insex": 1.0, + "fu_newinf": 1.0, + "fu_inhisp": 1.0, + "fu_inhispor": 1.0, + "fu_inhispox": 1.0, + "fu_inrace": 1.0, + "fu_inracex": 1.0, + "fu_inrasec": 1.0, + "fu_inrasecx": 1.0, + "fu_inrater": 1.0, + "fu_inraterx": 1.0, + "fu_ineduc": 1.0, + "fu_inrelto": 1.0, + "fu_inlivwth": 1.0, + "fu_invisits": 1.0, + "fu_incalls": 1.0, + "fu_inrely": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a2v2.md" +} diff --git a/src/encoded/schemas/fvp_a2v3.json b/src/encoded/schemas/fvp_a2v3.json new file mode 100644 index 0000000000..d10e30a482 --- /dev/null +++ b/src/encoded/schemas/fvp_a2v3.json @@ -0,0 +1,789 @@ +{ + "title": "NACC UNIFORM DATA SET (UDS) - FOLLOW-UP VISIT PACKET Form A2: Co-participant Demographics", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on co-participant's report. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A2.Link to NACC Coding Guidebook. Check only one box per question.To print a copy of data collected for this form at previous UDS visit, go to https: //www.alz.washington.edu/MEMBER/siteprint.html", + "id": "/profiles/uds_fvp_a2v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "patient", + "adcid", + "visdate", + "visitnum", + "initials", + "fu_inbirmo", + "fu_inbiryr", + "fu_insex", + "fu_newinf", + "fu_inrelto", + "fu_inknown", + "fu_inlivwth", + "fu_inrely" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "patient": { + "title": "Patient", + "description": "The patient the form belongs for.", + "type": "string", + "linkTo": "Patient" + }, + "fu_inbirmo": { + "title": "1a. Co-participant's month of birth", + "description": "(MM) 1 - 12, 99 = Unknown", + "type": "string", + "pattern": "^[0]?[1-9]|[1][0-2]|[99]$" + }, + "fu_inbiryr": { + "title": "1b. Co-participant's year of birth", + "description": "(YYYY) 1875 to (current year minus 15), 9999 = Unknown", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "fu_insex": { + "title": "2. Co-participant's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "fu_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?", + "description": "If No, SKIP TO QUESTION 9;If Yes, continue to 4.", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 9)", + "1 Yes" + ] + }, + "fu_inhisp": { + "title": "4. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?", + "description": "If No, SKIP TO QUESTION 5;if Unknown, SKIP TO QUESTION 5;If Yes, continue to 4a.", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 5)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 5)" + ] + }, + "fu_inhispor": { + "title": "4a. If yes, what are the co-participant's reported origins?", + "description": "If Other, please specify in 4a1.", + "type": "string", + "enum": [ + "1 Mexican/Chicano/Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other (specify)", + "99 Unknown" + ] + }, + "fu_inhispox": { + "title": "4a1. If other ethnic origins please specify:", + "type": "string" + }, + "fu_inrace": { + "title": "5. What does co-participant report as his or her race?", + "description": "If Other, please specify in 5a.", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "99 Unknown" + ] + }, + "fu_inracex": { + "title": "5a. If other race, please specify:", + "type": "string" + }, + "fu_inrasec": { + "title": "6. What additional race does the co-participant report?", + "description": "If Other, please specify in 6a.", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "fu_inrasecx": { + "title": "6a. If other 2nd race, please specify:", + "type": "string" + }, + "fu_inrater": { + "title": "7. What additional race, beyond those reported in questions 5 and 6, does the co-participant report?", + "description": "If Other, please specify in 7a.", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "fu_inraterx": { + "title": "7a. If other 3rd race, please specify:", + "type": "string" + }, + "fu_ineduc": { + "title": "8. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:", + "description": "12 = high school GED, 16 = bachelor's degree, 18 = master's degree,20 = doctorate,99 = unknown(0-36, 99=unknown)", + "type": "integer", + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 99 + ] + }, + "fu_inrelto": { + "title": "9. What is co-participant's relationship to the subject?", + "type": "string", + "enum": [ + "1 Spouse, partner, or companion (include ex-spouse, ex-partner, fiance(e). boyfriend, girlfriend)", + "2 Child (by blood or through marriage or adoption)", + "3 Sibling (by blood or through marriage or adoption)", + "4 Other relative (by blood or through marriage or adoption)", + "5 Friend, neighbor, or someone known through family, friends, work, or community (e.g., church)", + "6 Paid caregiver, health care provider, or clinician" + ] + }, + "fu_inknown": { + "title": "9a. How long has the co-participant known the subject?", + "description": "(Years) 0 - 120, 999 = Unknown", + "type": "string", + "pattern": "^[0-9][0-9]?|[1][0-1][0-9]|[1][2][0]|999$" + }, + "fu_inlivwth": { + "title": "10. Does the co-participant live with the subject?", + "description": "If Yes, SKIP TO QUESTION 11;If No, continue to 10a and 10b.", + "comment": "", + "type": "string", + "enum": [ + "0 No", + "1 Yes (If Yes, SKIP TO QUESTION 11)" + ] + }, + "fu_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:", + "type": "string", + "enum": [ + "1 Daily", + "2 At least", + "3 times per week", + "3 Weekly", + "4 At least", + "3 times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "fu_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:", + "type": "string", + "enum": [ + "1 Daily", + "2 At least", + "3 times per week", + "3 Weekly", + "4 At least", + "3 times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "fu_inrely": { + "title": "11. Is there a question about the co-participant's reliability?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + }, + + "allOf":[ + { + "oneOf": [ + { + "properties": { + "fu_newinf": { + "enum": [ + "0 No (If No, SKIP TO QUESTION 9)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_inhisp" + ] + } + }, + { + "not": { + "required": [ + "fu_inhispor" + ] + } + }, + { + "not": { + "required": [ + "fu_inhispox" + ] + } + }, + { + "not": { + "required": [ + "fu_inrace" + ] + } + }, + { + "not": { + "required": [ + "fu_inracex" + ] + } + }, + { + "not": { + "required": [ + "fu_inrasec" + ] + } + }, + { + "not": { + "required": [ + "fu_inrasecx" + ] + } + }, + { + "not": { + "required": [ + "fu_inrater" + ] + } + }, + { + "not": { + "required": [ + "fu_inraterx" + ] + } + }, + { + "not": { + "required": [ + "fu_ineduc" + ] + } + } + ] + }, + { + "properties": { + "fu_newinf": { + "enum": [ + "1 Yes" + ] + } + }, + "required": [ + "fu_inhisp", + "fu_inrace", + "fu_inrasec", + "fu_inrater", + "fu_ineduc" + ], + "allOf": [ + { + "oneOf": [ + { + "properties": { + + "fu_inhisp": { + "enum": [ + "1 Yes" + ] + }, + "fu_inhispor": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "fu_inhispox" + ] + }, + { + "properties": { + + "fu_inhisp": { + "enum": [ + "1 Yes" + ] + }, + "fu_inhispor": { + "enum": [ + "1 Mexican/Chicano/Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "fu_inhispox" + ] + } + + }, + { + "properties": { + "fu_inhisp": { + "enum": [ + "0 No (If No, SKIP TO QUESTION 5)", + "9 Unknown (If Unknown, SKIP TO QUESTION 5)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_inhispor" + ] + } + }, + { + "not": { + "required": [ + "fu_inhispox" + ] + } + } + ] + } + + + ] + }, + { + "oneOf": [ + { + "properties": { + + "fu_inrace": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "99 Unknown" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_inracex" + ] + } + } + ] + }, + { + "properties": { + + "fu_inrace": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "fu_inracex" + ] + } + ] + }, + { + "oneOf": [ + { + "properties": { + + "fu_inrasec": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "88 None Reported", + "99 Unknown" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_inrasecx" + ] + } + } + ] + }, + { + "properties": { + + "fu_inrasec": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "fu_inrasecx" + ] + } + ] + }, + { + "oneOf": [ + { + "properties": { + + "fu_inrater": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "88 None Reported", + "99 Unknown" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_inraterx" + ] + } + } + ] + }, + { + "properties": { + + "fu_inrater": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "fu_inraterx" + ] + } + ] + } + + ] + + } + ] + }, + { + "oneOf": [ + { + "properties": { + "fu_inlivwth": { + "enum": [ + "1 Yes (If Yes, SKIP TO QUESTION 11)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "fu_invisits" + ] + } + }, + { + "not": { + "required": [ + "fu_incalls" + ] + } + } + ] + }, + { + "properties": { + "fu_inlivwth": { + "enum": [ + "0 No" + ] + } + }, + "required": [ + "fu_invisits", + "fu_incalls" + ] + } + ] + } + ], + + "facets": { + "status": { + "title": "Status" + }, + "fu_inbirmo": { + "title": "1a. Co-participant's month of birth" + }, + "fu_inbiryr": { + "title": "1b. Co-participant's year of birth" + }, + "fu_insex": { + "title": "2. Co-participant's sex:" + }, + "fu_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?" + }, + "fu_inhisp": { + "title": "4. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "fu_inhispor": { + "title": "4a. If yes, what are the co-participant's reported origins?" + }, + "fu_inhispox": { + "title": "4a1. If other ethnic origins please specify:" + }, + "fu_inrace": { + "title": "5. What does co-participant report as his or her race?" + }, + "fu_inracex": { + "title": "5a. If other race, please specify:" + }, + "fu_inrasec": { + "title": "6. What additional race does the co-participant report?" + }, + "fu_inrasecx": { + "title": "6a. If other 2nd race, please specify:" + }, + "fu_inrater": { + "title": "7. What additional race, beyond those reported in questions 5 and 6, does the co-participant report?" + }, + "fu_inraterx": { + "title": "7a. If other 3rd race, please specify:" + }, + "fu_ineduc": { + "title": "8. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + "fu_inrelto": { + "title": "9. What is co-participant's relationship to the subject?" + }, + "fu_inknown": { + "title": "9a. How long has the co-participant known the subject?" + }, + "fu_inlivwth": { + "title": "10. Does the co-participant live with the subject?" + }, + "fu_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:" + }, + "fu_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:" + }, + "fu_inrely": { + "title": "11. Is there a question about the co-participant's reliability?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_inbirmo": { + "title": "1a. Co-participant's month of birth" + }, + "fu_inbiryr": { + "title": "1b. Co-participant's year of birth" + }, + "fu_insex": { + "title": "2. Co-participant's sex:" + }, + "fu_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?" + }, + "fu_inhisp": { + "title": "4. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "fu_inhispor": { + "title": "4a. If yes, what are the co-participant's reported origins?" + }, + "fu_inhispox": { + "title": "4a1. If other ethnic origins please specify:" + }, + "fu_inrace": { + "title": "5. What does co-participant report as his or her race?" + }, + "fu_inracex": { + "title": "5a. If other race, please specify:" + }, + "fu_inrasec": { + "title": "6. What additional race does the co-participant report?" + }, + "fu_inrasecx": { + "title": "6a. If other 2nd race, please specify:" + }, + "fu_inrater": { + "title": "7. What additional race, beyond those reported in questions 5 and 6, does the co-participant report?" + }, + "fu_inraterx": { + "title": "7a. If other 3rd race, please specify:" + }, + "fu_ineduc": { + "title": "8. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + "fu_inrelto": { + "title": "9. What is co-participant's relationship to the subject?" + }, + "fu_inknown": { + "title": "9a. How long has the co-participant known the subject?" + }, + "fu_inlivwth": { + "title": "10. Does the co-participant live with the subject?" + }, + "fu_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:" + }, + "fu_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:" + }, + "fu_inrely": { + "title": "11. Is there a question about the co-participant's reliability?" + } + }, + "boost_values": { + "patient":1.0, + "fu_inbirmo": 1.0, + "fu_inbiryr": 1.0, + "fu_insex": 1.0, + "fu_newinf": 1.0, + "fu_inhisp": 1.0, + "fu_inhispor": 1.0, + "fu_inhispox": 1.0, + "fu_inrace": 1.0, + "fu_inracex": 1.0, + "fu_inrasec": 1.0, + "fu_inrasecx": 1.0, + "fu_inrater": 1.0, + "fu_inraterx": 1.0, + "fu_ineduc": 1.0, + "fu_inrelto": 1.0, + "fu_inknown": 1.0, + "fu_inlivwth": 1.0, + "fu_invisits": 1.0, + "fu_incalls": 1.0, + "fu_inrely": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a2v3.md" +} diff --git a/src/encoded/schemas/fvp_a3v1.json b/src/encoded/schemas/fvp_a3v1.json new file mode 100644 index 0000000000..4c85b6dd33 --- /dev/null +++ b/src/encoded/schemas/fvp_a3v1.json @@ -0,0 +1,791 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Follow-up Visit Packet, Form A3: Subject Family History", + "description": "NOTE: This form is to be completed by intake interviewer per \nsubject/informant report.For additional clarification and examples,\nsee UDS Coding Guidebook pages 15–18. Check only one box per question.\n\nFor the following questions:\nDementia refers to progressive loss of memory and cognition, and is often described as senility, dementia,\nAlzheimer’s Disease, hardening of the arteries, or other causes that compromised the subject’s social or\noccupational functioning and from which they did not recover.\nAge at onset refers to the age at which dementia symptoms began, not the age at which the diagnosis was made.\nPlease consider blood relatives only.", + "id": "/profiles/fvp_a3v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "A3CHG": { + "title": "Review with the subject/informant the data collected for this form at the previous UDS visit; if there have been no changes, check this box and end form here.", + "type": "boolean" + }, + "parents": { + "title": "Parents", + "type": "object", + "properties": { + "PARCHG": { + "title": "Check this box if there has been no change to PARENTS information\n and then proceed to SIBLINGS. Otherwise, complete items 1 and 2\n below.", + "type": "boolean" + }, + "MOMDEM": { + "title": "1 Did the subject’s mother have dementia (as defined on form), as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOMONSET": { + "title": "1A If the subject’s mother had dementia, indicate the age at which she developed dementia symptoms (age at onset, as defined on form).", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "MOMAGE": { + "title": "1B If the subject’s mother has dementia and is living, indicate her current age.", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "MOMDAGE": { + "title": "1C If the subject’s mother had dementia and is deceased, indicate her age at death.", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "DADDEM": { + "title": "2 Did the subject’s father have dementia (as defined on form), as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "DADONSET": { + "title": "2A If the subject’s father had dementia, indicate the age at which he developed dementia symptoms (age at onset, as defined on form).", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "DADAGE": { + "title": "2B If the subject’s father has dementia and is living, indicate his current age.", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "DADDAGE": { + "title": "2C If the subject’s father had dementia and is deceased, indicate his age at death.", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + } + } + }, + "siblings": { + "title": "SIBLINGS", + "type": "object", + "properties": { + "SIBCHG": { + "title": "Check this box if there has been no change to SIBLINGS information\nand then proceed to CHILDREN. Otherwise, complete items 3–5\nbelow.", + "type": "boolean" + }, + "TWIN": { + "title": "3 Is the subject a twin?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "TWINTYPE": { + "title": "3A If the subject is a twin, indicate type.", + "type": "string", + "enum": [ + "1 Monozygotic (i.e., identical)", + "2 Dizygotic (i.e., fraternal)", + "8 N/A", + "9 Unknown" + ] + }, + "SIBS": { + "title": "4 How many full siblings did the subject have?", + "description": "0 – 25, 99 = Unknown", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^99$" + }, + "SIBSDEM": { + "title": "5 How many of these siblings had dementia (as defined on form), as indicated by symptoms, history or diagnosis?", + "description": "0 – 25, 88 = N/A, 99 = Unknown", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$|^99$" + }, + "sibs_info": { + "title": "For each sibling with dementia, indicate age at onset (as defined above) if living or deceased, and current age if living:", + "type": "object", + "properties": { + "SIB1ONS": { + "title": "5A1 Sibling 1 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB1AGE": { + "title": "5A2 Sibling 1 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB2ONS": { + "title": "5B1 Sibling 2 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB2AGE": { + "title": "5B2 Sibling 2 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB3ONS": { + "title": "5C1 Sibling 3 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB3AGE": { + "title": "5C2 Sibling 3 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB4ONS": { + "title": "5D1 Sibling 4 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB4AGE": { + "title": "5D2 Sibling 4 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB5ONS": { + "title": "5E1 Sibling 5 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB5AGE": { + "title": "5E2 Sibling 5 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB6ONS": { + "title": "5F1 Sibling 6 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB6AGE": { + "title": "5F2 Sibling 6 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + } + } + } + } + }, + "children": { + "title": "CHILDREN", + "type": "object", + "properties": { + "KIDCHG": { + "title": "Check this box if there has been no change to CHILDREN information and then proceed to OTHER RELATIVES. Otherwise, complete items 6 and 7 below", + "type": "boolean" + }, + "KIDS": { + "title": "6 How many biological children did the subject have?", + "description": "0 – 25, 99 = Unknown", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^99$" + }, + "KIDSDEM": { + "title": "7 How many of these children had dementia (as defined on form), as indicated by symptoms, history or diagnosis?", + "description": "0 – 25, 88 = N/A, 99 = Unknown", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$|^99$" + }, + "children_info": { + "title": "For each child with dementia, indicateage at onset (as defined above) if living or deceased, and current age if living:", + "type": "object", + "properties": { + "KID1ONS": { + "title": "7A1 Child 1 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID1AGE": { + "title": "7A2 Child 1 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID2ONS": { + "title": "7B1 Child 2 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID2AGE": { + "title": "7B2 Child 2 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID3ONS": { + "title": "7C1 Child 3 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID3AGE": { + "title": "7C2 Child 3 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID4ONS": { + "title": "7D1 Child 4 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID4AGE": { + "title": "7D2 Child 4 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID5ONS": { + "title": "7E1 Child 5 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID5AGE": { + "title": "7E2 Child 5 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID6ONS": { + "title": "7F1 Child 6 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID6AGE": { + "title": "7F2 Child 6 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + } + } + } + } + }, + "other_relatives": { + "title": "OTHER RELATIVES", + "type": "object", + "properties": { + "RELCHG": { + "title": "Check this box if there has been no change to OTHER RELATIVES\n information and then end form here. Otherwise, complete item 8\n below.", + "type": "boolean" + }, + "RELSDEM": { + "title": "8 Number of other blood relatives with dementia (as defined on form) (cousins, aunts, uncles, grandparents, half siblings), as indicated by symptoms, history or diagnosis.", + "description": "0 – 50,99 = Unknown", + "type": "string", + "pattern": "^[0-4]?[0-9]$|^50$|^99$" + }, + "other_relatives_info": { + "title": "For each other blood relative with dementia, indicate age at onset (as defined above) if living or deceased, and current age if living:", + "type": "object", + "properties": { + "REL1ONS": { + "title": "8A1 Relative 1 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL1AGE": { + "title": "8A2 Relative 1 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL2ONS": { + "title": "8B1 Relative 2 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL2AGE": { + "title": "8B2 Relative 2 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL3ONS": { + "title": "8C1 Relative 3 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL3AGE": { + "title": "8C2 Relative 3 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL4ONS": { + "title": "8D1 Relative 4 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL4AGE": { + "title": "8D2 Relative 4 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL5ONS": { + "title": "8E1 Relative 5 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL5AGE": { + "title": "8E2 Relative 5 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL6ONS": { + "title": "8F1 Relative 6 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL6AGE": { + "title": "8F2 Relative 6 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "parents.MOMDEM": { + "title": "1 Did the subject’s mother have dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "parents.MOMONSET": { + "title": "1A If the subject’s mother had dementia, indicate the age at which she developed dementia symptoms (age at onset, as defined on form)." + }, + "parents.MOMAGE": { + "title": "1B If the subject’s mother has dementia and is living, indicate her current age." + }, + "parents.MOMDAGE": { + "title": "1C If the subject’s mother had dementia and is deceased, indicate her age at death." + }, + "parents.DADDEM": { + "title": "2 Did the subject’s father have dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "parents.DADONSET": { + "title": "2A If the subject’s father had dementia, indicate the age at which he developed dementia symptoms (age at onset, as defined on form)." + }, + "parents.DADAGE": { + "title": "2B If the subject’s father has dementia and is living, indicate his current age." + }, + "parents.DADDAGE": { + "title": "2C If the subject’s father had dementia and is deceased, indicate his age at death." + }, + "siblings.TWIN": { + "title": "3 Is the subject a twin?" + }, + "siblings.TWINTYPE": { + "title": "3A If the subject is a twin, indicate type." + }, + "siblings.SIBS": { + "title": "4 How many full siblings did the subject have?" + }, + "siblings.SIBSDEM": { + "title": "5 How many of these siblings had dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_info.SIB1ONS": { + "title": "5A1 Sibling 1 age at onset" + }, + "siblings.sibs_info.SIB1AGE": { + "title": "5A2 Sibling 1 current age if living" + }, + "siblings.sibs_info.SIB2ONS": { + "title": "5B1 Sibling 2 age at onset" + }, + "siblings.sibs_info.SIB2AGE": { + "title": "5B2 Sibling 2 current age if living" + }, + "siblings.sibs_info.SIB3ONS": { + "title": "5C1 Sibling 3 age at onset" + }, + "siblings.sibs_info.SIB3AGE": { + "title": "5C2 Sibling 3 current age if living" + }, + "siblings.sibs_info.SIB4ONS": { + "title": "5D1 Sibling 4 age at onset" + }, + "siblings.sibs_info.SIB4AGE": { + "title": "5D2 Sibling 4 current age if living" + }, + "siblings.sibs_info.SIB5ONS": { + "title": "5E1 Sibling 5 age at onset" + }, + "siblings.sibs_info.SIB5AGE": { + "title": "5E2 Sibling 5 current age if living" + }, + "siblings.sibs_info.SIB6ONS": { + "title": "5F1 Sibling 6 age at onset" + }, + "siblings.sibs_info.SIB6AGE": { + "title": "5F2 Sibling 6 current age if living" + }, + "children.KIDS": { + "title": "6 How many biological children did the subject have?" + }, + "children.KIDSDEM": { + "title": "7 How many of these children had dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "children.children_info.KID1ONS": { + "title": "7A1 Child 1 age at onset" + }, + "children.children_info.KID1AGE": { + "title": "7A2 Child 1 current age if living" + }, + "children.children_info.KID2ONS": { + "title": "7B1 Child 2 age at onset" + }, + "children.children_info.KID2AGE": { + "title": "7B2 Child 2 current age if living" + }, + "children.children_info.KID3ONS": { + "title": "7C1 Child 3 age at onset" + }, + "children.children_info.KID3AGE": { + "title": "7C2 Child 3 current age if living" + }, + "children.children_info.KID4ONS": { + "title": "7D1 Child 4 age at onset" + }, + "children.children_info.KID4AGE": { + "title": "7D2 Child 4 current age if living" + }, + "children.children_info.KID5ONS": { + "title": "7E1 Child 5 age at onset" + }, + "children.children_info.KID5AGE": { + "title": "7E2 Child 5 current age if living" + }, + "children.children_info.KID6ONS": { + "title": "7F1 Child 6 age at onset" + }, + "children.children_info.KID6AGE": { + "title": "7F2 Child 6 current age if living" + }, + "other_relatives.RELSDEM": { + "title": "8 Number of other blood relatives with dementia (as defined on form) (cousins, aunts, uncles, grandparents, half siblings), as indicated by symptoms, history or diagnosis." + }, + "other_relatives.other_relatives_info.REL1ONS": { + "title": "8A1 Relative 1 age at onset" + }, + "other_relatives.other_relatives_info.REL1AGE": { + "title": "8A2 Relative 1 current age if living" + }, + "other_relatives.other_relatives_info.REL2ONS": { + "title": "8B1 Relative 2 age at onset" + }, + "other_relatives.other_relatives_info.REL2AGE": { + "title": "8B2 Relative 2 current age if living" + }, + "other_relatives.other_relatives_info.REL3ONS": { + "title": "8C1 Relative 3 age at onset" + }, + "other_relatives.other_relatives_info.REL3AGE": { + "title": "8C2 Relative 3 current age if living" + }, + "other_relatives.other_relatives_info.REL4ONS": { + "title": "8D1 Relative 4 age at onset" + }, + "other_relatives.other_relatives_info.REL4AGE": { + "title": "8D2 Relative 4 current age if living" + }, + "other_relatives.other_relatives_info.REL5ONS": { + "title": "8E1 Relative 5 age at onset" + }, + "other_relatives.other_relatives_info.REL5AGE": { + "title": "8E2 Relative 5 current age if living" + }, + "other_relatives.other_relatives_info.REL6ONS": { + "title": "8F1 Relative 6 age at onset" + }, + "other_relatives.other_relatives_info.REL6AGE": { + "title": "8F2 Relative 6 current age if living" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "parents.MOMDEM": { + "title": "1 Did the subject’s mother have dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "parents.MOMONSET": { + "title": "1A If the subject’s mother had dementia, indicate the age at which she developed dementia symptoms (age at onset, as defined on form)." + }, + "parents.MOMAGE": { + "title": "1B If the subject’s mother has dementia and is living, indicate her current age." + }, + "parents.MOMDAGE": { + "title": "1C If the subject’s mother had dementia and is deceased, indicate her age at death." + }, + "parents.DADDEM": { + "title": "2 Did the subject’s father have dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "parents.DADONSET": { + "title": "2A If the subject’s father had dementia, indicate the age at which he developed dementia symptoms (age at onset, as defined on form)." + }, + "parents.DADAGE": { + "title": "2B If the subject’s father has dementia and is living, indicate his current age." + }, + "parents.DADDAGE": { + "title": "2C If the subject’s father had dementia and is deceased, indicate his age at death." + }, + "siblings.TWIN": { + "title": "3 Is the subject a twin?" + }, + "siblings.TWINTYPE": { + "title": "3A If the subject is a twin, indicate type." + }, + "siblings.SIBS": { + "title": "4 How many full siblings did the subject have?" + }, + "siblings.SIBSDEM": { + "title": "5 How many of these siblings had dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_info.SIB1ONS": { + "title": "5A1 Sibling 1 age at onset" + }, + "siblings.sibs_info.SIB1AGE": { + "title": "5A2 Sibling 1 current age if living" + }, + "siblings.sibs_info.SIB2ONS": { + "title": "5B1 Sibling 2 age at onset" + }, + "siblings.sibs_info.SIB2AGE": { + "title": "5B2 Sibling 2 current age if living" + }, + "siblings.sibs_info.SIB3ONS": { + "title": "5C1 Sibling 3 age at onset" + }, + "siblings.sibs_info.SIB3AGE": { + "title": "5C2 Sibling 3 current age if living" + }, + "siblings.sibs_info.SIB4ONS": { + "title": "5D1 Sibling 4 age at onset" + }, + "siblings.sibs_info.SIB4AGE": { + "title": "5D2 Sibling 4 current age if living" + }, + "siblings.sibs_info.SIB5ONS": { + "title": "5E1 Sibling 5 age at onset" + }, + "siblings.sibs_info.SIB5AGE": { + "title": "5E2 Sibling 5 current age if living" + }, + "siblings.sibs_info.SIB6ONS": { + "title": "5F1 Sibling 6 age at onset" + }, + "siblings.sibs_info.SIB6AGE": { + "title": "5F2 Sibling 6 current age if living" + }, + "children.KIDS": { + "title": "6 How many biological children did the subject have?" + }, + "children.KIDSDEM": { + "title": "7 How many of these children had dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "children.children_info.KID1ONS": { + "title": "7A1 Child 1 age at onset" + }, + "children.children_info.KID1AGE": { + "title": "7A2 Child 1 current age if living" + }, + "children.children_info.KID2ONS": { + "title": "7B1 Child 2 age at onset" + }, + "children.children_info.KID2AGE": { + "title": "7B2 Child 2 current age if living" + }, + "children.children_info.KID3ONS": { + "title": "7C1 Child 3 age at onset" + }, + "children.children_info.KID3AGE": { + "title": "7C2 Child 3 current age if living" + }, + "children.children_info.KID4ONS": { + "title": "7D1 Child 4 age at onset" + }, + "children.children_info.KID4AGE": { + "title": "7D2 Child 4 current age if living" + }, + "children.children_info.KID5ONS": { + "title": "7E1 Child 5 age at onset" + }, + "children.children_info.KID5AGE": { + "title": "7E2 Child 5 current age if living" + }, + "children.children_info.KID6ONS": { + "title": "7F1 Child 6 age at onset" + }, + "children.children_info.KID6AGE": { + "title": "7F2 Child 6 current age if living" + }, + "other_relatives.RELSDEM": { + "title": "8 Number of other blood relatives with dementia (as defined on form) (cousins, aunts, uncles, grandparents, half siblings), as indicated by symptoms, history or diagnosis." + }, + "other_relatives.other_relatives_info.REL1ONS": { + "title": "8A1 Relative 1 age at onset" + }, + "other_relatives.other_relatives_info.REL1AGE": { + "title": "8A2 Relative 1 current age if living" + }, + "other_relatives.other_relatives_info.REL2ONS": { + "title": "8B1 Relative 2 age at onset" + }, + "other_relatives.other_relatives_info.REL2AGE": { + "title": "8B2 Relative 2 current age if living" + }, + "other_relatives.other_relatives_info.REL3ONS": { + "title": "8C1 Relative 3 age at onset" + }, + "other_relatives.other_relatives_info.REL3AGE": { + "title": "8C2 Relative 3 current age if living" + }, + "other_relatives.other_relatives_info.REL4ONS": { + "title": "8D1 Relative 4 age at onset" + }, + "other_relatives.other_relatives_info.REL4AGE": { + "title": "8D2 Relative 4 current age if living" + }, + "other_relatives.other_relatives_info.REL5ONS": { + "title": "8E1 Relative 5 age at onset" + }, + "other_relatives.other_relatives_info.REL5AGE": { + "title": "8E2 Relative 5 current age if living" + }, + "other_relatives.other_relatives_info.REL6ONS": { + "title": "8F1 Relative 6 age at onset" + }, + "other_relatives.other_relatives_info.REL6AGE": { + "title": "8F2 Relative 6 current age if living" + } + }, + "boost_values": { + "patient": 1.0, + "parents.MOMDEM": 1.0, + "parents.MOMONSET": 1.0, + "parents.MOMAGE": 1.0, + "parents.MOMDAGE": 1.0, + "parents.DADDEM": 1.0, + "parents.DADONSET": 1.0, + "parents.DADAGE": 1.0, + "parents.DADDAGE": 1.0, + "siblings.TWIN": 1.0, + "siblings.TWINTYPE": 1.0, + "siblings.SIBS": 1.0, + "siblings.SIBSDEM": 1.0, + "siblings.sibs_info.SIB1ONS": 1.0, + "siblings.sibs_info.SIB1AGE": 1.0, + "siblings.sibs_info.SIB2ONS": 1.0, + "siblings.sibs_info.SIB2AGE": 1.0, + "siblings.sibs_info.SIB3ONS": 1.0, + "siblings.sibs_info.SIB3AGE": 1.0, + "siblings.sibs_info.SIB4ONS": 1.0, + "siblings.sibs_info.SIB4AGE": 1.0, + "siblings.sibs_info.SIB5ONS": 1.0, + "siblings.sibs_info.SIB5AGE": 1.0, + "siblings.sibs_info.SIB6ONS": 1.0, + "siblings.sibs_info.SIB6AGE": 1.0, + "children.KIDS": 1.0, + "children.KIDSDEM": 1.0, + "children.children_info.KID1ONS": 1.0, + "children.children_info.KID1AGE": 1.0, + "children.children_info.KID2ONS": 1.0, + "children.children_info.KID2AGE": 1.0, + "children.children_info.KID3ONS": 1.0, + "children.children_info.KID3AGE": 1.0, + "children.children_info.KID4ONS": 1.0, + "children.children_info.KID4AGE": 1.0, + "children.children_info.KID5ONS": 1.0, + "children.children_info.KID5AGE": 1.0, + "children.children_info.KID6ONS": 1.0, + "children.children_info.KID6AGE": 1.0, + "other_relatives.RELSDEM": 1.0, + "other_relatives.other_relatives_info.REL1ONS": 1.0, + "other_relatives.other_relatives_info.REL1AGE": 1.0, + "other_relatives.other_relatives_info.REL2ONS": 1.0, + "other_relatives.other_relatives_info.REL2AGE": 1.0, + "other_relatives.other_relatives_info.REL3ONS": 1.0, + "other_relatives.other_relatives_info.REL3AGE": 1.0, + "other_relatives.other_relatives_info.REL4ONS": 1.0, + "other_relatives.other_relatives_info.REL4AGE": 1.0, + "other_relatives.other_relatives_info.REL5ONS": 1.0, + "other_relatives.other_relatives_info.REL5AGE": 1.0, + "other_relatives.other_relatives_info.REL6ONS": 1.0, + "other_relatives.other_relatives_info.REL6AGE": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a3v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a3v2.json b/src/encoded/schemas/fvp_a3v2.json new file mode 100644 index 0000000000..fe8d88b3d2 --- /dev/null +++ b/src/encoded/schemas/fvp_a3v2.json @@ -0,0 +1,2123 @@ +{ + "title": "NACC Uniform Data Set (UDS)\nFollow-up Form A3: Subject Family History", + "description": "NOTE: This form is to be completed by intake interviewer per subject/informant\nreport. For additional clarification and examples, see UDS Coding Guidebook\nfor Follow-up Visit Packet, Form A3.\nTo print a copy of data collected for this form at previous UDS visit, go to\nhttps:\/\/www.alz.washington.edu/MEMBER/siteprint.html.\nFor the following questions:\nDementia refers to progressive loss of memory and cognition, and is often described as senility, dementia,\nAlzheimer’s Disease, hardening of the arteries, or other causes that compromised the subject’s social or\noccupational functioning and from which they did not recover.\nAge at onset refers to the age at which dementia symptoms began, not the age at which the diagnosis was made.\n", + "id": "/profiles/fvp_a3v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "A3CHG": { + "title": "G1 Review with the subject/informant the data collected for this form at the previous UDS visit. If a .0 Form A3 has been submitted previously and if there have been no changes, check this box and end form here.", + "description": "Allowable Codes 0 = box is not checked – subject/informant has changes in family\nhistory\n1 = box is checked – no changes since previous visit, end form\nSkip If box is checked, end form here.", + "type": "boolean" + }, + "parents": { + "title": "Parents", + "type": "object", + "properties": { + "PARCHG": { + "title": "G2 Provide all information below if it has not been previously submitted. If there has been any change, enter all data in the row for the appropriate parent. Otherwise, check this box and proceed to the next section.", + "description": "Allowable Codes 0 = box is not checked – subject/informant has changes in parent history\n1 = box is checked – no changes since previous visit\nBlanks Blank if #G1, A3CHG = 1.\nSkip If box is checked proceed to the next section, siblings", + "type": "boolean" + }, + "mother": { + "title": "Mother", + "type": "object", + "properties": { + "MOMYOB": { + "title": "1A Mother’s year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1850 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^185[0-9]|18[6-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "MOMLIV": { + "title": "1B Is subject’s mother still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOMYOD": { + "title": "1C If subject’s mother is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "MOMDEM": { + "title": "1D Does/did subject’s mother have dementia, as indicated by symptoms,history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOMONSET": { + "title": "1E If subject’s mother was demented, indicate age at onset.", + "description": "Allowable Codes 15 – 110,999 = Unknown,Blank if #G1, A3CHG = 1 or #G2, PARCHG = 1 or #1D, MOMDEM ≠ 1(Yes).", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "father": { + "title": "Father", + "type": "object", + "properties": { + "DADYOB": { + "title": "2A Father’s year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1850 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^185[0-9]|18[6-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "DADLIV": { + "title": "2B Is subject’s father still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "DADYOD": { + "title": "2C If subject’s father is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "DADDEM": { + "title": "2D Does/did subject’s father have dementia, as indicated by symptoms,history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "DADONSET": { + "title": "2E If subject’s father was demented, indicate age at onset.", + "description": "Allowable Codes 15 – 110,999 = Unknown,Blank if #G1, A3CHG = 1 or #G2, PARCHG = 1 or #2D, DADDEM ≠ 1(Yes).", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + } + } + }, + "siblings": { + "title": "SIBLINGS", + "type": "object", + "properties": { + "SIBCHG": { + "title": "G3 Provide all information below if it has not been previously submitted. If there has been any change, enter all data in the row for the appropriate sibling. Otherwise, check this box and proceed to the next section.", + "description": "Skip If box is checked proceed to the next section, children", + "type": "boolean" + }, + "SIBS": { + "title": "3 How many full siblings did the subject have?", + "description": "Allowable Codes 0 – 20,99 = Unknown,Blank if #G1, A3CHG = 1 or #G3, SIBCHG = 1.", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^20$|^99$" + + }, + "sibs_indicate": { + "title": "4. For full siblings, indicate the following", + "type": "object", + "properties": { + "sib1": { + "title": "Sibling 1", + "type": "object", + "properties": { + "SIB1YOB": { + "title": "4A1 Sibling 1 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB1LIV": { + "title": "4B1 Is Sibling 1 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB1YOD": { + "title": "4C1 If Sibling 1 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB1DEM": { + "title": "4D1 Does/did Sibling 1 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB1ONS": { + "title": "4E1 If Sibling 1 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib2": { + "title": "Sibling 2", + "type": "object", + "properties": { + "SIB2YOB": { + "title": "4A2 Sibling 2 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB2LIV": { + "title": "4B2 Is Sibling 2 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB2YOD": { + "title": "4C2 If Sibling 2 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB2DEM": { + "title": "4D2 Does/did Sibling 2 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB2ONS": { + "title": "4E2 If Sibling 2 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib3": { + "title": "Sibling 3", + "type": "object", + "properties": { + "SIB3YOB": { + "title": "4A3 Sibling 3 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB3LIV": { + "title": "4B3 Is Sibling 3 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB3YOD": { + "title": "4C3 If Sibling 3 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB3DEM": { + "title": "4D3 Does/did Sibling 3 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB3ONS": { + "title": "4E3 If Sibling 3 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib4": { + "title": "Sibling 4", + "type": "object", + "properties": { + "SIB4YOB": { + "title": "4A4 Sibling 4 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB4LIV": { + "title": "4B4 Is Sibling 4 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB4YOD": { + "title": "4C4 If Sibling 4 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB4DEM": { + "title": "4D4 Does/did Sibling 4 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB4ONS": { + "title": "4E4 If Sibling 4 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib5": { + "title": "Sibling 5", + "type": "object", + "properties": { + "SIB5YOB": { + "title": "4A5 Sibling 5 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB5LIV": { + "title": "4B5 Is Sibling 5 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB5YOD": { + "title": "4C5 If Sibling 5 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB5DEM": { + "title": "4D5 Does/did Sibling 5 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB5ONS": { + "title": "4E5 If Sibling 5 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib6": { + "title": "Sibling 6", + "type": "object", + "properties": { + "SIB6YOB": { + "title": "4A6 Sibling 6 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB6LIV": { + "title": "4B6 Is Sibling 6 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB6YOD": { + "title": "4C6 If Sibling 6 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB6DEM": { + "title": "4D6 Did Sibling 6 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB6ONS": { + "title": "4E6 If Sibling 6 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib7": { + "title": "Sibling 7", + "type": "object", + "properties": { + "SIB7YOB": { + "title": "4A7 Sibling 7 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB7LIV": { + "title": "4B7 Is Sibling 7 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB7YOD": { + "title": "4C7 If Sibling 7 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB7DEM": { + "title": "4D7 Does/did Sibling 7 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB7ONS": { + "title": "4E7 If Sibling 7 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib8": { + "title": "Sibling 8", + "type": "object", + "properties": { + "SIB8YOB": { + "title": "4A8 Sibling 8 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB8LIV": { + "title": "4B8 Is Sibling 8 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB8YOD": { + "title": "4C8 If Sibling 8 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB8DEM": { + "title": "4D8 Does/did Sibling 8 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB8ONS": { + "title": "4E8 If Sibling 8 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib9": { + "title": "Sibling 9", + "type": "object", + "properties": { + "SIB9YOB": { + "title": "4A9 Sibling 9 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB9LIV": { + "title": "4B9 Is Sibling 9 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB9YOD": { + "title": "4C9 If Sibling 9 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB9DEM": { + "title": "4D9 Does/did Sibling 9 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB9ONS": { + "title": "4E9 If Sibling 9 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib10": { + "title": "Sibling 10", + "type": "object", + "properties": { + "SIB10YOB": { + "title": "4A10 Sibling 10 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB10LIV": { + "title": "4B10 Is Sibling 10 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB10YOD": { + "title": "4C10 If Sibling 10 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB10DEM": { + "title": "4D10 Does/did Sibling 10 have dementia, as indicated by symptoms, history", + "type": "string" + }, + "SIB10ONS": { + "title": "4E10 If Sibling 10 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib11": { + "title": "Sibling 11", + "type": "object", + "properties": { + "SIB11YOB": { + "title": "4A11 Sibling 11 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB11LIV": { + "title": "4B11 Is Sibling 11 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB11YOD": { + "title": "4C11 If Sibling 11 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB11DEM": { + "title": "4D11 Does/did Sibling 11 have dementia, as indicated by symptoms, history", + "type": "string" + }, + "SIB11ONS": { + "title": "4E11 If Sibling 11 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + }, + "SIB12YOB": { + "title": "4A12 Sibling 12 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + } + } + }, + "sib12": { + "title": "Sibling 12", + "type": "object", + "properties": { + "SIB12LIV": { + "title": "4B12 Is Sibling 12 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB12YOD": { + "title": "4C12 If Sibling 12 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB12DEM": { + "title": "4D12 Did Sibling 12 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB12ONS": { + "title": "4E12 If Sibling 12 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib13": { + "title": "Sibling 13", + "type": "object", + "properties": { + "SIB13YOB": { + "title": "4A13 Sibling 13 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB13LIV": { + "title": "4B13 Is Sibling 13 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB13YOD": { + "title": "4C13 If Sibling 13 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB13DEM": { + "title": "4D13 Does/did Sibling 13 have dementia, as indicated by symptoms, history", + "type": "string" + }, + "SIB13ONS": { + "title": "4E13 If Sibling 13 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib14": { + "title": "Sibling 14", + "type": "object", + "properties": { + "SIB14YOB": { + "title": "4A14 Sibling 14 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB14LIV": { + "title": "4B14 Is Sibling 14 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB14YOD": { + "title": "4C14 If Sibling 14 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB14DEM": { + "title": "4D14 Does/did Sibling 14 have dementia, as indicated by symptoms, history", + "type": "string" + }, + "SIB14ONS": { + "title": "4E14 If Sibling 14 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib15": { + "title": "Sibling 15", + "type": "object", + "properties": { + "SIB15YOB": { + "title": "4A15 Sibling 15 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB15LIV": { + "title": "4B15 Is Sibling 15 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB15YOD": { + "title": "4C15 If Sibling 15 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB15DEM": { + "title": "4D15 Does/did Sibling 15 have dementia, as indicated by symptoms, history", + "type": "string" + }, + "SIB15ONS": { + "title": "4E15 If Sibling 15 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib16": { + "title": "Sibling 16", + "type": "object", + "properties": { + "SIB16YOB": { + "title": "4A16 Sibling 16 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB16LIV": { + "title": "4B16 Is Sibling 16 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB16YOD": { + "title": "4C16 If Sibling 16 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB16DEM": { + "title": "4D16 Does/did Sibling 16 have dementia, as indicated by symptoms, history", + "type": "string" + }, + "SIB16ONS": { + "title": "4E16 If Sibling 16 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib17": { + "title": "Sibling 17", + "type": "object", + "properties": { + "SIB17YOB": { + "title": "4A17 Sibling 17 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB17LIV": { + "title": "4B17 Is Sibling 17 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB17YOD": { + "title": "4C17 If Sibling 17 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB17DEM": { + "title": "4D17 Does/did Sibling 17 have dementia, as indicated by symptoms, history", + "type": "string" + }, + "SIB17ONS": { + "title": "4E17 If Sibling 17 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib18": { + "title": "Sibling 18", + "type": "object", + "properties": { + "SIB18YOB": { + "title": "4A18 Sibling 18 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB18LIV": { + "title": "4B18 Is Sibling 18 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB18YOD": { + "title": "4C18 If Sibling 18 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB18DEM": { + "title": "4D18 Does/did Sibling 18 have dementia, as indicated by symptoms, history", + "type": "string" + }, + "SIB18ONS": { + "title": "4E18 If Sibling 18 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib19": { + "title": "Sibling 19", + "type": "object", + "properties": { + "SIB19YOB": { + "title": "4A19 Sibling 19 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB19LIV": { + "title": "4B19 Is Sibling 19 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB19YOD": { + "title": "4C19 If Sibling 19 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB19DEM": { + "title": "4D19 Does/did Sibling 19 have dementia, as indicated by symptoms, history", + "type": "string" + }, + "SIB19ONS": { + "title": "4E19 If Sibling 19 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib20": { + "title": "Sibling 20", + "type": "object", + "properties": { + "SIB20YOB": { + "title": "4A20 Sibling 20 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB20LIV": { + "title": "4B20 Is Sibling 20 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SIB20YOD": { + "title": "4C20 If Sibling 20 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "SIB20DEM": { + "title": "4D20 Does/did Sibling 20 have dementia, as indicated by symptoms, history", + "type": "string" + }, + "SIB20ONS": { + "title": "4E20 If Sibling 20 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + } + } + } + } + }, + "children": { + "title": "Children", + "type": "object", + "properties": { + "KIDCHG": { + "title": "G4 Provide all information below if it has not been previously submitted. If there has been any change, enter all data in the row for the appropriate\nchild. Otherwise, check this box and proceed to the next section.", + "type": "boolean" + }, + "KIDS": { + "title": "5 How many biological children did the subject have?", + "description": "0-15, 99 = Unknown", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$|^99$" + }, + "kids_indicate": { + "title": "6 For biological children, indicate the following:", + "type": "object", + "properties": { + "kid1": { + "title": "Child 1", + "type": "object", + "properties": { + "KID1YOB": { + "title": "6A1 Child 1 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID1LIV": { + "title": "6B1 Is Child 1 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID1YOD": { + "title": "6C1 If Child 1 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID1DEM": { + "title": "6D1 Does/did Child 1 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID1ONS": { + "title": "6E1 If Child 1 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid2": { + "title": "Child 2", + "type": "object", + "properties": { + "KID2YOB": { + "title": "6A2 Child 2 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID2LIV": { + "title": "6B2 Is Child 2 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID2YOD": { + "title": "6C2 If Child 2 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID2DEM": { + "title": "6D2 Does/did Child 2 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID2ONS": { + "title": "6E2 If Child 2 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid3": { + "title": "Child 3", + "type": "object", + "properties": { + "KID3YOB": { + "title": "6A3 Child 3 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID3LIV": { + "title": "6B3 Is Child 3 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID3YOD": { + "title": "6C3 If Child 3 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID3DEM": { + "title": "6D3 Does/did Child 3 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID3ONS": { + "title": "6E3 If Child 3 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid4": { + "title": "Child 4", + "type": "object", + "properties": { + "KID4YOB": { + "title": "6A4 Child 4 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID4LIV": { + "title": "6B4 Is Child 4 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID4YOD": { + "title": "6C4 If Child 4 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID4DEM": { + "title": "6D4 Does/did Child 4 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID4ONS": { + "title": "6E4 If Child 4 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid5": { + "title": "Child 5", + "type": "object", + "properties": { + "KID5YOB": { + "title": "6A5 Child 5 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID5LIV": { + "title": "6B5 Is Child 5 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID5YOD": { + "title": "6C5 If Child 5 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID5DEM": { + "title": "6D5 Does/did Child 5 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID5ONS": { + "title": "6E5 If Child 5 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid6": { + "title": "Child 6", + "type": "object", + "properties": { + "KID6YOB": { + "title": "6A6 Child 6 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID6LIV": { + "title": "6B6 Is Child 6 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID6YOD": { + "title": "6C6 If Child 6 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID6DEM": { + "title": "6D6 Does/did Child 6 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID6ONS": { + "title": "6E6 If Child 6 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid7": { + "title": "Child 7", + "type": "object", + "properties": { + "KID7YOB": { + "title": "6A7 Child 7 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID7LIV": { + "title": "6B7 Is Child 7 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID7YOD": { + "title": "6C7 If Child 7 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID7DEM": { + "title": "6D7 Does/did Child 7 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID7ONS": { + "title": "6E7 If Child 7 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid8": { + "title": "Child 8", + "type": "object", + "properties": { + "KID8YOB": { + "title": "6A8 Child 8 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID8LIV": { + "title": "6B8 Is Child 8 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID8YOD": { + "title": "6C8 If Child 8 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID8DEM": { + "title": "6D8 Does/did Child 8 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID8ONS": { + "title": "6E8 If Child 8 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid9": { + "title": "Child 9", + "type": "object", + "properties": { + "KID9YOB": { + "title": "6A9 Child 9 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID9LIV": { + "title": "6B9 Is Child 9 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID9YOD": { + "title": "6C9 If Child 9 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID9DEM": { + "title": "6D9 Does/did Child 9 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID9ONS": { + "title": "6E9 If Child 9 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid10": { + "title": "Child 10", + "type": "object", + "properties": { + "KID10YOB": { + "title": "6A10 Child 10 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID10LIV": { + "title": "6B10 Is Child 10 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID10YOD": { + "title": "6C10 If Child 10 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID10DEM": { + "title": "6D10 Does/did Child 10 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID10ONS": { + "title": "6E10 If Child 10 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid11": { + "title": "Child 11", + "type": "object", + "properties": { + "KID11YOB": { + "title": "6A11 Child 11 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID11LIV": { + "title": "6B11 Is Child 11 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID11YOD": { + "title": "6C11 If Child 11 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID11DEM": { + "title": "6D11 Does/did Child 11 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID11ONS": { + "title": "6E11 If Child 11 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid12": { + "title": "Child 12", + "type": "object", + "properties": { + "KID12YOB": { + "title": "6A12 Child 12 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID12LIV": { + "title": "6B12 Is Child 12 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID12YOD": { + "title": "6C12 If Child 12 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID12DEM": { + "title": "6D12 Does/did Child 12 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID12ONS": { + "title": "6E12 If Child 12 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid13": { + "title": "Child 13", + "type": "object", + "properties": { + "KID13YOB": { + "title": "6A13 Child 13 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID13LIV": { + "title": "6B13 Is Child 13 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID13YOD": { + "title": "6C13 If Child 13 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID13DEM": { + "title": "6D13 Does/did Child 13 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID13ONS": { + "title": "6E13 If Child 13 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid14": { + "title": "Child 14", + "type": "object", + "properties": { + "KID14YOB": { + "title": "6A14 Child 14 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID14LIV": { + "title": "6B14 Is Child 14 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID14YOD": { + "title": "6C14 If Child 14 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID14DEM": { + "title": "6D14 Does/did Child 14 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID14ONS": { + "title": "6E14 If Child 14 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid15": { + "title": "Child 15", + "type": "object", + "properties": { + "KID15YOB": { + "title": "6A15 Child 15 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID15LIV": { + "title": "6B15 Is Child 15 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID15YOD": { + "title": "6C15 If Child 15 is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "KID15DEM": { + "title": "6D15 Does/did Child 15 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "KID15ONS": { + "title": "6E15 If Child 15 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + } + } + } + } + }, + "other_relatives": { + "title": "OTHER DEMENTED RELATIVES:", + "type": "object", + "properties": { + "RELCHG": { + "title": "G5 Provide all information below if it has not been previously submitted. If", + "type": "boolean" + }, + "RELSDEM": { + "title": "7 Number of other demented (as defined on form) blood relatives", + "description": "(0-15, 99 = Unknown)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$|^99$" + }, + "rels_indicate": { + "title": "8 For all \"other demented relatives\" (cousins, aunts, uncles, grandparents, half\nsiblings), indicate the following:\n", + "type": "object", + "properties": { + "rel1": { + "title": "Relative 1", + "type": "object", + "properties": { + "REL1YOB": { + "title": "8A1 Relative 1 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL1LIV": { + "title": "8B1 Is Relative 1 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL1YOD": { + "title": "8C1 If Relative 1 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL1ONS": { + "title": "8D1 Relative 1 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel2": { + "title": "Relative 2", + "type": "object", + "properties": { + "REL2YOB": { + "title": "8A2 Relative 2 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL2LIV": { + "title": "8B2 Is Relative 2 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL2YOD": { + "title": "8C2 If Relative 2 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL2ONS": { + "title": "8D2 Relative 2 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel3": { + "title": "Relative 3", + "type": "object", + "properties": { + "REL3YOB": { + "title": "8A3 Relative 3 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL3LIV": { + "title": "8B3 Is Relative 3 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL3YOD": { + "title": "8C3 If Relative 3 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL3ONS": { + "title": "8D3 Relative 3 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel4": { + "title": "Relative 4", + "type": "object", + "properties": { + "REL4YOB": { + "title": "8A4 Relative 4 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL4LIV": { + "title": "8B4 Is Relative 4 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL4YOD": { + "title": "8C4 If Relative 4 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL4ONS": { + "title": "8D4 Relative 4 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel5": { + "title": "Relative 5", + "type": "object", + "properties": { + "REL5YOB": { + "title": "8A5 Relative 5 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL5LIV": { + "title": "8B5 Is Relative 5 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL5YOD": { + "title": "8C5 If Relative 5 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL5ONS": { + "title": "8D5 Relative 5 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel6": { + "title": "Relative 6", + "type": "object", + "properties": { + "REL6YOB": { + "title": "8A6 Relative 6 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL6LIV": { + "title": "8B6 Is Relative 6 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL6YOD": { + "title": "8C6 Relative 6 year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL6ONS": { + "title": "8D6 If Relative 6 demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel7": { + "title": "Relative 7", + "type": "object", + "properties": { + "REL7YOB": { + "title": "8A7 Relative 7 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL7LIV": { + "title": "8B7 Is Relative 7 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL7YOD": { + "title": "8C7 If Relative 7 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL7ONS": { + "title": "8D7 Relative 7 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel8": { + "title": "Relative 8", + "type": "object", + "properties": { + "REL8YOB": { + "title": "8A8 Relative 8 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL8LIV": { + "title": "8B8 Is Relative 8 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL8YOD": { + "title": "8C8 If Relative 8 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL8ONS": { + "title": "8D8 Relative 8 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel9": { + "title": "Relative 9", + "type": "object", + "properties": { + "REL9YOB": { + "title": "8A9 Relative 9 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL9LIV": { + "title": "8B9 Is Relative 9 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL9YOD": { + "title": "8C9 If Relative 9 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL9ONS": { + "title": "8D9 Relative 9 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel10": { + "title": "Relative 10", + "type": "object", + "properties": { + "REL10YOB": { + "title": "8A10 Relative 10 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL10LIV": { + "title": "8B10 Is Relative 10 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL10YOD": { + "title": "8C10 If Relative 10 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL10ONS": { + "title": "8D10 Relative 10 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel11": { + "title": "Relative 11", + "type": "object", + "properties": { + "REL11YOB": { + "title": "8A11 Relative 11 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL11LIV": { + "title": "8B11 Is Relative 11 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL11YOD": { + "title": "8C11 If Relative 11 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL11ONS": { + "title": "8D11 Relative 11 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel12": { + "title": "Relative 12", + "type": "object", + "properties": { + "REL12YOB": { + "title": "8A12 Relative 12 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL12LIV": { + "title": "8B12 Is Relative 12 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL12YOD": { + "title": "8C12 If Relative 12 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL12ONS": { + "title": "8D12 Relative 12 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel13": { + "title": "Relative 13", + "type": "object", + "properties": { + "REL13YOB": { + "title": "8A13 Relative 13 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL13LIV": { + "title": "8B13 Is Relative 13 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL13YOD": { + "title": "8C13 If Relative 13 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL13ONS": { + "title": "8D13 Relative 13 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel14": { + "title": "Relative 14", + "type": "object", + "properties": { + "REL14YOB": { + "title": "8A14 Relative 14 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL14LIV": { + "title": "8B14 Is Relative 14 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL14YOD": { + "title": "8C14 If Relative 14 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL14ONS": { + "title": "8D14 Relative 14 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel15": { + "title": "Relative 15", + "type": "object", + "properties": { + "REL15YOB": { + "title": "8A15 Relative 15 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL15LIV": { + "title": "8B15 Is Relative 15 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "REL15YOD": { + "title": "8C15 If Relative 15 is deceased, indicate year of death", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "REL15ONS": { + "title": "8D15 Relative 15 age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + } + } + } + } + } + }, + "changelog": "/profiles/changelogs/fvp_a3v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a3v3.json b/src/encoded/schemas/fvp_a3v3.json new file mode 100644 index 0000000000..b92c7b6227 --- /dev/null +++ b/src/encoded/schemas/fvp_a3v3.json @@ -0,0 +1,4601 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM A3: SUBJECT FAMILY HISTORY", + "description": "INSTRUCTIONS: This form is to be completed by a clinician with experience in evaluating patients with neurological problems and psychiatric conditions. For additional clarification and examples, see UDS Coding Guidebook for Follow-up Visit Packet, Form A3. Link to NACC Coding Guidebook\nSPECIAL INSTRUCTIONS for subjects who are receiving UDS Version 3 of Form A3 for the first time:\n NOTE: A subject is receiving UDS v3 Form A3 for the first time if:\n No A3 data has been submitted yet for this subject -OR-\n A3 data has been submitted for this subject, but it was collected using UDS v2\n For such subjects, you must fill out this form in its entirety, meaning:\n 1. You must answer 1=Yes to Question 1 on genetic mutations and complete 2a-4b.\n 2. You must answer 1=Yes to Question 5 on parents and complete 5a-5b.\n 3. You must answer 1=Yes to Question 6a on siblings and complete 6aa-6at, as appropriate.\n 4. You must answer 1=Yes to Question 7a on children and complete 7aa=7ao, as appropriate.\nCorrections or new information on previously submitted family members - For family members who were denoted as being \"affected\" with a neurological or psychiatric condition or who were not affected at a previous UDS visit, any corrections to their data should be made to that previous A3 Form. Any newly obtained information (e.g., new mutation information, new diagnoses, new method of evaluation), including for family members previously reported as being affeted at a past UDS visit, should be indicated on this form and should not be submitted as a correction to a previously submitted Form A3.\nA summary of all previously submitted family history data can be found at:\n https://www.alz.washington.edu/MEMBERS/siteprint.html.\nThe pdf below contains codes for Method of Evaluation", + "id": "/profiles/fvp_a3v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_nwinfmut": { + "title": "1. Since the last visit, is new information available concerning genetic mutations addressed by Questions 2a through 4b, below?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 5) ", + "1 Yes", + "9 Unknown (SKIP TO QUESTION 5)" + ] + }, + "fu_fadmut": { + "title": "2a. In this family, is there evidence for an AD mutation? If Yes, select predominant mutation.", + "description": "NOTE: APOE Should not be reported here.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 3a)", + "1 Yes, APP", + "2 Yes, PS-1 (PSEN-1)", + "3 Yes, PS-2 (PSEN-2)", + "8 Yes, Other (specify)", + "9 Unknown whether mutation exists (SKIP TO QUESTION 3a)" + ] + }, + "fu_fadmutx": { + "title": "2a1. Other (specify predominant AD mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "fu_fadmuso": { + "title": "2b. Source of evidence for AD mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (specify)", + "9 Unknown" + ] + }, + "fu_fadmusox": { + "title": "2b1. Other (specify the other source of evidence -AD mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "fu_fftdmut": { + "title": "3a. In this family, is there evidence for an FTLD mutation? If Yes, select predominant mutation.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 4a)", + "1 Yes, MAPT", + "2 Yes, PGRN", + "3 Yes, C9orf72", + "4 Yes, FUS", + "8 Yes, Other (specify)", + "9 Unknown whether mutation exists (SKIP TO QUESTION 4a)" + ] + }, + "fu_fftdmutx": { + "title": "3a1. Other (specify the predominant FTLD mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "fu_fftdmuso": { + "title": "3b. Source of evidence for FTLD mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (specify)", + "9 Unknown" + ] + }, + "fu_fftdmusx": { + "title": "3b1. Other (Specify the other source of evidence -FTLD mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "fu_fothmut": { + "title": "4a. In this family, is there evidence for a mutation other than an AD or FTLD mutation? (If No or Unknown, SKIP TO QUESTION 5)", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 5)", + "1 Yes (specify)", + "9 Unknown (SKIP TO QUESTION 5)" + ] + }, + "fu_fothmutx": { + "title": "4a1. Other (specify the other mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "fu_fothmuso": { + "title": "4b. Source of evidence for other mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (specify)", + "9 Unknown" + ] + }, + "fu_fothmusx": { + "title": "4b1. Other (Specify the other source of evidence for other mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "fu_notes_a3": { + "title": "BIOLOGICAL PARENTS:", + "description": "If birth year is unknown, please provide an approximate year on the Initial Visit Form A3 and ensure that it is consistently reported on all Forms A3 submitted (Initial Visit and Follow-up). If it is impossible for the subject and co-participant to estimate year of birth, enter 9999=Unknown. For any biological parent with a neurological or psychiatric problem, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all available evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. If the parent has no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.", + "type": "object", + "properties": { + "fu_nwinfpar": { + "title": "5. Since the last UDS visit, is new information available concerning the status fo the subject's biological mother or father?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 6)", + "1 Yes (SKIP TO QUESTION 5A-5B, AS APPLICABLE)" + ] + }, + "fu_mother": { + "title": "5a. MOTHER:", + "type": "object", + "properties": { + "fu_mommob": { + "title": "5a1. Mother - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_momyob": { + "title": "5a2. Mother - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_momdage": { + "title": "5a3. Mother - Age at death", + "description": "888 = N/A, 999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_momneur": { + "title": "5a4. Mother - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_momprdx": { + "title": "5a5. Mother - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_mommoe": { + "title": "5a6. Mother - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_momageo": { + "title": "5a7. Mother - Age of onset", + "description": "888 = N/A ; 999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + } + } + }, + "fu_father": { + "title": "5b. FATHER:", + "type": "object", + "properties": { + "fu_dadmob": { + "title": "5b1. Father - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_dadyob": { + "title": "5b2. Father - Birth year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_daddage": { + "title": "5b3. Father - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_dadneur": { + "title": "5b4. Father - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_dadprdx": { + "title": "5b5. Father - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_dadmoe": { + "title": "5b6. Father - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_dadageo": { + "title": "5b7. Father - Age of onset", + "description": "888 = N/A ; 999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + } + } + } + } + }, + "fu_note_a3_2": { + "title": "Year of birth for full siblings and biological children", + "description": "If birth year is unknown, please provide an approximate year on UDS Initial Visit Form A3 and UDS Follow-up Visit Form A3 so that the sibling/child with unknown birth year ends up in correct birth order relative to the other siblings/children.Example: A subject is the oldest of three children. The subject was born in 1940 and the middle sibling in 1943; the youngest sibling's birth year is unknown. An approximate birth year of 1944 or later should be assigned to the youngest sibling.Use that same birth year on FTLD Module Form A3a, if applicable, and across all UDS visits so that any new information on a particular sibling or child can be linked to previously submitted information. If it is impossible for the subject and co-participant to estimate year of birth, enter 9999=Unknown.", + "type": "object", + "properties": { + "fu_full_siblings": { + "title": "FULL SIBLINGS:", + "type": "object", + "properties": { + "fu_sibs": { + "title": "6. How many full siblings does the subject have?", + "description": "If subject has no full siblings, SKIP TO QUESTION 7;77 = Adopted, unknown", + "type": "string" + }, + "fu_nwinfsib": { + "title": "6a. Since the last UDS visit, is new information available concerning the status of the subject's siblings?", + "description": "For any full sibling with a neurological or psychiatric problem, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all available evidence, enter 9=unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. If the sibling has no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 7)", + "1 Yes (COMPLETE QUESTIONS 6aa-6at, AS APPLICABLE)" + ] + }, + "fu_sib1": { + "title": "Sibling 1", + "type": "object", + "properties": { + "fu_sib1mob": { + "title": "6a1. Sibling 1 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib1yob": { + "title": "6a2. Sibling 1 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib1agd": { + "title": "6a3. Sibling 1 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib1neu": { + "title": "6a4. Sibling 1 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib1pdx": { + "title": "6a5. Sibling 1 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib1moe": { + "title": "6a6. Sibling 1 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib1ago": { + "title": "6a7. Sibling 1 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib2": { + "title": "Sibling 2", + "type": "object", + "properties": { + "fu_sib2mob": { + "title": "6b1. Sibling 2 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib2yob": { + "title": "6b2. Sibling 2 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib2agd": { + "title": "6b3. Sibling 2 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib2neu": { + "title": "6b4. Sibling 2 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib2pdx": { + "title": "6b5. Sibling 2 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib2moe": { + "title": "6b6. Sibling 2 - Method of evaluation***", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib2ago": { + "title": "6b7. Sibling 2 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib3": { + "title": "Sibling 3", + "type": "object", + "properties": { + "fu_sib3mob": { + "title": "6c1. Sibling 3 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib3yob": { + "title": "6c2. Sibling 3 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib3agd": { + "title": "6c3. Sibling 3 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib3neu": { + "title": "6c4. Sibling 3 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib3pdx": { + "title": "6c5. Sibling 3 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib3moe": { + "title": "6c6. Sibling 3 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib3ago": { + "title": "6c7. Sibling 3 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib4": { + "title": "Sibling 4", + "type": "object", + "properties": { + "fu_sib4mob": { + "title": "6d1. Sibling 4 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib4yob": { + "title": "6d2. Sibling 4 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib4agd": { + "title": "6d3. Sibling 4 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib4neu": { + "title": "6d4. Sibling 4 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib4pdx": { + "title": "6d5. Sibling 4 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib4moe": { + "title": "6d6. Sibling 4 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib4ago": { + "title": "6d7. Sibling 4 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib5": { + "title": "Sibling 5", + "type": "object", + "properties": { + "fu_sib5mob": { + "title": "6e1. Sibling 5 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib5yob": { + "title": "6e2. Sibling 5 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib5agd": { + "title": "6e3. Sibling 5 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib5neu": { + "title": "6e4. Sibling 5 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib5pdx": { + "title": "6e5. Sibling 5 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib5moe": { + "title": "6e6. Sibling 5 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib5ago": { + "title": "6e7. Sibling 5 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib6": { + "title": "Sibling 6", + "type": "object", + "properties": { + "fu_sib6mob": { + "title": "6f1. Sibling 6 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib6yob": { + "title": "6f2. sibling 6 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib6agd": { + "title": "6f3. Sibling 6 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib6neu": { + "title": "6f4. Sibling 6 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib6pdx": { + "title": "6f5. Sibling 6 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib6moe": { + "title": "6f6. Sibling 6 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib6ago": { + "title": "6f7. Sibling 6 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib7": { + "title": "Sibling 7", + "type": "object", + "properties": { + "fu_sib7mob": { + "title": "6g1. Sibling 7 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib7yob": { + "title": "6g2. Sibling 7 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib7agd": { + "title": "6g3. Sibling 7 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib7neu": { + "title": "6g4. Sibling 7 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib7pdx": { + "title": "6g5. Sibling 7 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib7moe": { + "title": "6g6. Sibling 7 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib7ago": { + "title": "6g7. Sibling 7 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib8": { + "title": "Sibling 8", + "type": "object", + "properties": { + "fu_sib8mob": { + "title": "6h1. Sibling 8 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib8yob": { + "title": "6h2. Sibling 8 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib8agd": { + "title": "6h3. Sibling 8 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib8neu": { + "title": "6h4. Sibling 8 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib8pdx": { + "title": "6h5. Sibling 8 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib8moe": { + "title": "6h6. Sibling 8 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib8ago": { + "title": "6h7. Sibling 8 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib9": { + "title": "Sibling 9", + "type": "object", + "properties": { + "fu_sib9mob": { + "title": "6i1. Sibling 9 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib9yob": { + "title": "6i2. Sibling 9 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib9agd": { + "title": "6i3. Sibling 9 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib9neu": { + "title": "6i4. Sibling 9 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib9pdx": { + "title": "6i5. Sibling 9 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib9moe": { + "title": "6i6. Sibling 9 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib9ago": { + "title": "6i7. Sibling 9 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib10": { + "title": "Sibling 10", + "type": "object", + "properties": { + "fu_sib10mob": { + "title": "6j1. Sibling 10 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib10yob": { + "title": "6j2. Sibling 10 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib10agd": { + "title": "6j3. Sibling 10 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib10neu": { + "title": "6j4. Sibling 10 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib10pdx": { + "title": "6j5. Sibling 10 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib10moe": { + "title": "6j6. Sibling 10 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib10ago": { + "title": "6j7. Sibling 10 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib11": { + "title": "Sibling 11", + "type": "object", + "properties": { + "fu_sib11mob": { + "title": "6k1. Sibling 11 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib11yob": { + "title": "6k2. Sibling 11 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib11agd": { + "title": "6k3. Sibling 11 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib11neu": { + "title": "6k4. Sibling 11 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib11pdx": { + "title": "6k5. Sibling 11 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib11moe": { + "title": "6k6. Sibling 11 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib11ago": { + "title": "6k7. Sibling 11 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib12": { + "title": "Sibling 12", + "type": "object", + "properties": { + "fu_sib12mob": { + "title": "6l1. Sibling 12 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib12yob": { + "title": "6l2. Sibling 12 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib12agd": { + "title": "6l3. Sibling 12 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib12neu": { + "title": "6l4. Sibling 12 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib12pdx": { + "title": "6l5. Sibling 12 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib12moe": { + "title": "6l6. Sibling 12 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib12ago": { + "title": "6l7. Sibling 12 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib13": { + "title": "Sibling 13", + "type": "object", + "properties": { + "fu_sib13mob": { + "title": "6m1. Sibling 13 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib13yob": { + "title": "6m2. Sibling 13 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib13agd": { + "title": "6m3. Sibling 13 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib13neu": { + "title": "6m4. Sibling 13 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib13pdx": { + "title": "6m5. Sibling 13 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib13moe": { + "title": "6m6. Sibling 13 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib13ago": { + "title": "6m7. Sibling 13 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib14": { + "title": "Sibling 14", + "type": "object", + "properties": { + "fu_sib14mob": { + "title": "6n1. Sibling 14 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib14yob": { + "title": "6n2. Sibling 14 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib14agd": { + "title": "6n3. Sibling 14 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib14neu": { + "title": "6n4. Sibling 14 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib14pdx": { + "title": "6n5. Sibling 14 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib14moe": { + "title": "6n6. Sibling 14 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib14ago": { + "title": "6n7. Sibling 14 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib15": { + "title": "Sibling 15", + "type": "object", + "properties": { + "fu_sib15mob": { + "title": "6o1. Sibling 15 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib15yob": { + "title": "6o2. Sibling 15 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib15agd": { + "title": "6o3. Sibling 15 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib15neu": { + "title": "6o4. Sibling 15 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib15pdx": { + "title": "6o5. Sibling 15 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib15moe": { + "title": "6o6. Sibling 15 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib15ago": { + "title": "6o7. Sibling 15 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib16": { + "title": "Sibling 16", + "type": "object", + "properties": { + "fu_sib16mob": { + "title": "6p1. Sibling 16 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib16yob": { + "title": "6p2. Sibling 16 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib16agd": { + "title": "6p3. Sibling 16 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib16neu": { + "title": "6p4. Sibling 16 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib16pdx": { + "title": "6p5. Sibling 16 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib16moe": { + "title": "6p6. Sibling 16 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib16ago": { + "title": "6p7. Sibling 16 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib17": { + "title": "Sibling 17", + "type": "object", + "properties": { + "fu_sib17mob": { + "title": "6q1. Sibling 17 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib17yob": { + "title": "6q2. Sibling 17 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib17agd": { + "title": "6q3. Sibling 17 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib17neu": { + "title": "6q4. Sibling 17 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fusib17pdx": { + "title": "6q5. Sibling 17 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib17moe": { + "title": "6q6. Sibling 17 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib17ago": { + "title": "6q7. Sibling 17 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib18": { + "title": "Sibling 18", + "type": "object", + "properties": { + "fu_sib18mob": { + "title": "6r1. Sibling 18 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib18yob": { + "title": "6r2. Sibling 18 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib18agd": { + "title": "6r3. Sibling 18 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib18neu": { + "title": "6r4. Sibling 18 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib18pdx": { + "title": "6r5. Sibling 18 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib18moe": { + "title": "6r6. Sibling 18 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib18ago": { + "title": "6r7. Sibling 18 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib19": { + "title": "Sibling 19", + "type": "object", + "properties": { + "fu_sib19mob": { + "title": "6s1. Sibling 19 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib19yob": { + "title": "6s2. Sibling 19 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib19agd": { + "title": "6s3. Sibling 19 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib19neu": { + "title": "6s4. Sibling 19 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib19pdx": { + "title": "6s5. Sibling 19 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib19moe": { + "title": "6s6. Sibling 19 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib19ago": { + "title": "6s7. Sibling 19 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_sib20": { + "title": "Sibling 20", + "type": "object", + "properties": { + "fu_sib20mob": { + "title": "6t1. Sibling 20 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_sib20yob": { + "title": "6t2. Sibling 20 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_sib20agd": { + "title": "6t3. Sibling 20 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_sib20neu": { + "title": "6t4. Sibling 20 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_sib20pdx": { + "title": "6t5. Sibling 20 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_sib20moe": { + "title": "6t6. Sibling 20 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_sib20ago": { + "title": "6t7. Sibling 20 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + } + } + }, + "fu_biological_children": { + "title": "BIOLOGICAL CHILDREN:", + "description": "For any biological child with a neurological or psychiatric problem, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all avilable evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. If the child has no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.", + "type": "object", + "properties": { + "fu_kids": { + "title": "7. How many biological children does the subject have?", + "description": "If subject has no biological children, END FORM HERE; 99 Unknown", + "type": "string" + }, + "fu_nwinfkid": { + "title": "7a. Since the last UDS visit, is new information available concerning the status of the subject's biological children?", + "type": "string", + "enum": [ + "0 No (END FORM HERE)", + "1 Yes (COMPLETE QUESTIONS 7aa-7ao, AS APPLICABLE)" + ] + }, + "fu_child1": { + "title": "Child 1", + "type": "object", + "properties": { + "fu_kid1mob": { + "title": "7a1. Child 1 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid1yob": { + "title": "7a2. Child 1 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid1agd": { + "title": "7a3. Child 1 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid1neu": { + "title": "7a4. Child 1 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid1pdx": { + "title": "7a5. Child 1 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid1moe": { + "title": "7a6. Child 1 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid1ago": { + "title": "7a7. Child 1 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child2": { + "title": "Child 2", + "type": "object", + "properties": { + "fu_kid2mob": { + "title": "7b1. Child 2 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid2yob": { + "title": "7b2. Child 2 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid2agd": { + "title": "7b3. Child 2 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid2neu": { + "title": "7b4. Child 2 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid2pdx": { + "title": "7b5. Child 2 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid2moe": { + "title": "7b6. Child 2 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid2ago": { + "title": "7b7. Child 2 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child3": { + "title": "Child 3", + "type": "object", + "properties": { + "fu_kid3mob": { + "title": "7c1. Child 3 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid3yob": { + "title": "7c2. Child 3 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid3agd": { + "title": "7c3. Child 3 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid3neu": { + "title": "7c4. Child 3 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid3pdx": { + "title": "7c5. Child 3 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid3moe": { + "title": "7c6. Child 3 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid3ago": { + "title": "7c7. Child 3 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child4": { + "title": "Child 4", + "type": "object", + "properties": { + "fu_kid4mob": { + "title": "7d1. Child 4 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid4yob": { + "title": "7d2. Child 4 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid4agd": { + "title": "7d3. Child 4 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid4neu": { + "title": "7d4. Child 4 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid4pdx": { + "title": "7d5. Child 4 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid4moe": { + "title": "7d6. Child 4 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid4ago": { + "title": "7d7. Child 4 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child5": { + "title": "Child 5", + "type": "object", + "properties": { + "fu_kid5mob": { + "title": "7e1. Child 5 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid5yob": { + "title": "7e2. Child 5 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid5agd": { + "title": "7e3. Child 5 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid5neu": { + "title": "7e4. Child 5 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid5pdx": { + "title": "7e5. Child 5 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid5moe": { + "title": "7e6. Child 5 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid5ago": { + "title": "7e7. Child 5 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child6": { + "title": "Child 6", + "type": "object", + "properties": { + "fu_kid6mob": { + "title": "7f1. Child 6 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid6yob": { + "title": "7f2. Child 6 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid6agd": { + "title": "7f3. Child 6 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid6neu": { + "title": "7f4. Child 6 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid6pdx": { + "title": "7f5. Child 6 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid6moe": { + "title": "7f6. Child 6 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid6ago": { + "title": "7f7. Child 6 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child7": { + "title": "Child 7", + "type": "object", + "properties": { + "fu_kid7mob": { + "title": "7g1. Child 7 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid7yob": { + "title": "7g2. Child 7 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid7agd": { + "title": "7g3. Child 7 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid7neu": { + "title": "7g4. Child 7 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid7pdx": { + "title": "7g5. Child 7 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid7moe": { + "title": "7g6. Child 7 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid7ago": { + "title": "7g7. Child 7 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child8": { + "title": "Child 8", + "type": "object", + "properties": { + "fu_kid8mob": { + "title": "7h1. Child 8 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid8yob": { + "title": "7h2. Child 8 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid8agd": { + "title": "7h3. Child 8 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid8neu": { + "title": "7h4. Child 8 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid8pdx": { + "title": "7h5. Child 8 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid8moe": { + "title": "7h6. Child 8 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid8ago": { + "title": "7h7. Child 8 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child9": { + "title": "Child 9", + "type": "object", + "properties": { + "fu_kid9mob": { + "title": "7i1. Child 9 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid9yob": { + "title": "7i2. Child 9 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fukid9agd": { + "title": "7i3. Child 9 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string" + }, + "fu_kid9neu": { + "title": "7i4. Child 9 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid9pdx": { + "title": "7i5. Child 9 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid9moe": { + "title": "7i6. Child 9 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid9ago": { + "title": "7i7. Child 9 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child10": { + "title": "Child 10", + "type": "object", + "properties": { + "fu_kid10mob": { + "title": "7j1. Child 10 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid10yob": { + "title": "7j2. Child 10 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid10agd": { + "title": "7j3. Child 10 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid10neu": { + "title": "7j4. Child 10 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid10pdx": { + "title": "7j5. Child 10 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid10moe": { + "title": "7j6. Child 10 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid10ago": { + "title": "7j7. Child 10 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child11": { + "title": "Child 11", + "type": "object", + "properties": { + "fu_kid11mob": { + "title": "7k1. Child 11 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid11yob": { + "title": "7k2. Child 11 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid11agd": { + "title": "7k3. Child 11 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid11neu": { + "title": "7k4. Child 11 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid11pdx": { + "title": "7k5. Child 11 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid11moe": { + "title": "7k6. Child 11 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid11ago": { + "title": "7k7. Child 11 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child12": { + "title": "Child 12", + "type": "object", + "properties": { + "fu_kid12mob": { + "title": "7l1. Child 12 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid12yob": { + "title": "7l2. Child 12 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid12agd": { + "title": "7l3. Child 12 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid12neu": { + "title": "7l4. Child 12 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid12pdx": { + "title": "7l5. Child 12 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid12moe": { + "title": "7l6. Child 12 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid12ago": { + "title": "7l7. Child 12 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child13": { + "title": "Child 13", + "type": "object", + "properties": { + "fu_kid13mob": { + "title": "7m1. Child 13 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid13yob": { + "title": "7m2. Child 13 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid13agd": { + "title": "7m3. Child 13 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid13neu": { + "title": "7m4. Child 13 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid13pdx": { + "title": "7m5. Child 13 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid13moe": { + "title": "7m6. Child 13 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid13ago": { + "title": "7m7. Child 13 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child14": { + "title": "Child 14", + "type": "object", + "properties": { + "fu_kid14mob": { + "title": "7n1. Child 14 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid14yob": { + "title": "7n2. Child 14 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid14agd": { + "title": "7n3. Child 14 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid14neu": { + "title": "7n4. Child 14 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid14pdx": { + "title": "7n5. Child 14 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid14moe": { + "title": "7n6. Child 14 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid14ago": { + "title": "7n7. Child 14 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "fu_child15": { + "title": "Child 15", + "type": "object", + "properties": { + "fu_kid15mob": { + "title": "7o1. Child 15 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "fu_kid15yob": { + "title": "7o2. Child 15 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "fu_kid15agd": { + "title": "7o3. Child 15 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "fu_kid15neu": { + "title": "7o4. Child 15 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "fu_kid15pdx": { + "title": "7o5. Child 15 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "fu_kid15moe": { + "title": "7o6. Child 15 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "fu_kid15ago": { + "title": "7o7. Child 15 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_nwinfmut": { + "title": "1. Since the last visit, is new information available concerning genetic mutations addressed by Questions 2a through 4b, below?" + }, + "fu_fadmut": { + "title": "2a. In this family, is there evidence for an AD mutation? If Yes, select predominant mutation." + }, + "fu_fadmutx": { + "title": "2a1. Other (specify predominant AD mutation in this family)" + }, + "fu_fadmuso": { + "title": "2b. Source of evidence for AD mutation (check one):" + }, + "fu_fadmusox": { + "title": "2b1. Other (specify the other source of evidence -AD mutation in this family)" + }, + "fu_fftdmut": { + "title": "3a. In this family, is there evidence for an FTLD mutation? If Yes, select predominant mutation." + }, + "fu_fftdmutx": { + "title": "3a1. Other (specify the predominant FTLD mutation in this family)" + }, + "fu_fftdmuso": { + "title": "3b. Source of evidence for FTLD mutation (check one):" + }, + "fu_fftdmusx": { + "title": "3b1. Other (Specify the other source of evidence -FTLD mutation in this family)" + }, + "fu_fothmut": { + "title": "4a. In this family, is there evidence for a mutation other than an AD or FTLD mutation? (If No or Unknown, SKIP TO QUESTION 5)" + }, + "fu_fothmutx": { + "title": "4a1. Other (specify the other mutation in this family)" + }, + "fu_fothmuso": { + "title": "4b. Source of evidence for other mutation (check one):" + }, + "fu_fothmusx": { + "title": "4b1. Other (Specify the other source of evidence for other mutation in this family)" + }, + "fu_notes_a3.fu_nwinfpar": { + "title": "5. Since the last UDS visit, is new information available concerning the status fo the subject's biological mother or father?" + }, + "fu_note_a3_2.fu_full_siblings.fu_sibs": { + "title": "6. How many full siblings does the subject have?" + }, + "fu_note_a3_2.fu_full_siblings.fu_nwinfsib": { + "title": "6a. Since the last UDS visit, is new information available concerning the status of the subject's siblings?" + }, + "fu_note_a3_2.fu_biological_children.fu_kids": { + "title": "7. How many biological children does the subject have?" + }, + "fu_note_a3_2.fu_biological_children.fu_nwinfkid": { + "title": "7a. Since the last UDS visit, is new information available concerning the status of the subject's biological children?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_nwinfmut": { + "title": "1. Since the last visit, is new information available concerning genetic mutations addressed by Questions 2a through 4b, below?" + }, + "fu_fadmut": { + "title": "2a. In this family, is there evidence for an AD mutation? If Yes, select predominant mutation." + }, + "fu_fadmutx": { + "title": "2a1. Other (specify predominant AD mutation in this family)" + }, + "fu_fadmuso": { + "title": "2b. Source of evidence for AD mutation (check one):" + }, + "fu_fadmusox": { + "title": "2b1. Other (specify the other source of evidence -AD mutation in this family)" + }, + "fu_fftdmut": { + "title": "3a. In this family, is there evidence for an FTLD mutation? If Yes, select predominant mutation." + }, + "fu_fftdmutx": { + "title": "3a1. Other (specify the predominant FTLD mutation in this family)" + }, + "fu_fftdmuso": { + "title": "3b. Source of evidence for FTLD mutation (check one):" + }, + "fu_fftdmusx": { + "title": "3b1. Other (Specify the other source of evidence -FTLD mutation in this family)" + }, + "fu_fothmut": { + "title": "4a. In this family, is there evidence for a mutation other than an AD or FTLD mutation? (If No or Unknown, SKIP TO QUESTION 5)" + }, + "fu_fothmutx": { + "title": "4a1. Other (specify the other mutation in this family)" + }, + "fu_fothmuso": { + "title": "4b. Source of evidence for other mutation (check one):" + }, + "fu_fothmusx": { + "title": "4b1. Other (Specify the other source of evidence for other mutation in this family)" + }, + "fu_notes_a3.fu_nwinfpar": { + "title": "5. Since the last UDS visit, is new information available concerning the status fo the subject's biological mother or father?" + }, + "fu_note_a3_2.fu_full_siblings.fu_sibs": { + "title": "6. How many full siblings does the subject have?" + }, + "fu_note_a3_2.fu_full_siblings.fu_nwinfsib": { + "title": "6a. Since the last UDS visit, is new information available concerning the status of the subject's siblings?" + }, + "fu_note_a3_2.fu_biological_children.fu_kids": { + "title": "7. How many biological children does the subject have?" + }, + "fu_note_a3_2.fu_biological_children.fu_nwinfkid": { + "title": "7a. Since the last UDS visit, is new information available concerning the status of the subject's biological children?" + } + }, + "boost_values": { + "patient": 1.0, + "fu_nwinfmut": 1.0, + "fu_fadmut": 1.0, + "fu_fadmutx": 1.0, + "fu_fadmuso": 1.0, + "fu_fadmusox": 1.0, + "fu_fftdmut": 1.0, + "fu_fftdmutx": 1.0, + "fu_fftdmuso": 1.0, + "fu_fftdmusx": 1.0, + "fu_fothmut": 1.0, + "fu_fothmutx": 1.0, + "fu_fothmuso": 1.0, + "fu_fothmusx": 1.0, + "fu_notes_a3.fu_nwinfpar": 1.0, + "fu_note_a3_2.fu_full_siblings.fu_sibs": 1.0, + "fu_note_a3_2.fu_full_siblings.fu_nwinfsib": 1.0, + "fu_note_a3_2.fu_biological_children.fu_kids": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a3v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a4v1.json b/src/encoded/schemas/fvp_a4v1.json new file mode 100644 index 0000000000..a352051870 --- /dev/null +++ b/src/encoded/schemas/fvp_a4v1.json @@ -0,0 +1,4548 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Follow-up Visit Packet,Form A4: Subject Medications", + "description": "NOTE: This form is to be completed by the clinician or ADC staff.Record ALL medications (prescription,Examiner’s initials:__ __ __\nnon-prescription, and vitamins/supplements) takenby the subject within the past two weeks.For additional\nclarification, see UDS Coding Guidebook page 19.\nInclude the strength of the medication, the corresponding unit (micrograms, milliliters, international units), and the number of doses (pills,injections, drops, puffs)\nprescribed per day/week/month. Indicate if the medication is prescribed to be used only as needed (PRN) and the average frequency of use of the PRN\nmedication (number of pills, injections, drops, puffs taken per day/week/month).It is helpful to ask the subject to bring the medications to the research assessment,\nso more complete information can be obtained.If the subject does not bring the medications or a detailed list to the assessment, telephone follow-up may be\nnecessary. Record the name and dosage of the medication as the subject is actually taking it.\n", + "id": "/profiles/fvp_a4v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "PMEDS": { + "title": "1 Is the subject currently taking any prescription medications?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "PMA": { + "title": "1A Prescription medication A name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1a_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMAS": { + "title": "1A1 Prescription medication A strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMASU": { + "title": "1A2 Prescription medication A strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1a_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMAF": { + "title": "1A3 Prescription medication A frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMAFU": { + "title": "1A4 Prescription medication A frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1a_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMAP": { + "title": "1A5 Prescription medication A – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1a_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMAPF": { + "title": "1A6 Prescription medication A PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMAPFU": { + "title": "1A7 Prescription medication A PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMB": { + "title": "1B Prescription medication B name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1B_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMBS": { + "title": "1B1 Prescription medication B strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMBSU": { + "title": "1B2 Prescription medication B strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1B_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMBF": { + "title": "1B3 Prescription medication B frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMBFU": { + "title": "1B4 Prescription medication B frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1B_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMBP": { + "title": "1B5 Prescription medication B – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1B_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMBPF": { + "title": "1B6 Prescription medication B PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMBPFU": { + "title": "1B7 Prescription medication B PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMC": { + "title": "1C Prescription medication C name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1C_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMCS": { + "title": "1C1 Prescription medication C strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMCSU": { + "title": "1C2 Prescription medication C strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1C_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMCF": { + "title": "1C3 Prescription medication C frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMCFU": { + "title": "1C4 Prescription medication C frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1C_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMCP": { + "title": "1C5 Prescription medication C – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1C_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMCPF": { + "title": "1C6 Prescription medication C PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMCPFU": { + "title": "1C7 Prescription medication C PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMD": { + "title": "1D Prescription medication D name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1D_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMDS": { + "title": "1D1 Prescription medication D strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": false + }, + "PMDSU": { + "title": "1D2 Prescription medication D strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1D_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMDF": { + "title": "1D3 Prescription medication D frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMDFU": { + "title": "1D4 Prescription medication D frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1D_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMDP": { + "title": "1D5 Prescription medication D – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1D_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMDPF": { + "title": "1D6 Prescription medication D PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMDPFU": { + "title": "1D7 Prescription medication D PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PME": { + "title": "1E Prescription medication E name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1E_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMES": { + "title": "1E1 Prescription medication E strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMESU": { + "title": "1E2 Prescription medication E strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1E_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMEF": { + "title": "1E3 Prescription medication E frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMEFU": { + "title": "1E4 Prescription medication E frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1E_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMEP": { + "title": "1E5 Prescription medication E – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1E_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMEPF": { + "title": "1E6 Prescription medication E PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMEPFU": { + "title": "1E7 Prescription medication E PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMF": { + "title": "1F Prescription medication F name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1F_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMFS": { + "title": "1F1 Prescription medication F strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMFSU": { + "title": "1F2 Prescription medication F strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1F_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMFF": { + "title": "1F3 Prescription medication F frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMFFU": { + "title": "1F4 Prescription medication F frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1F_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMFP": { + "title": "1F5 Prescription medication F – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1F_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMFPF": { + "title": "1F6 Prescription medication F PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMFPFU": { + "title": "1F7 Prescription medication F PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMG": { + "title": "1G Prescription medication G name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1G_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMGS": { + "title": "1G1 Prescription medication G strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMGSU": { + "title": "1G2 Prescription medication G strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1G_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMGF": { + "title": "1G3 Prescription medication G frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMGFU": { + "title": "1G4 Prescription medication G frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1G_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMGP": { + "title": "1G5 Prescription medication G – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1G_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMGPF": { + "title": "1G6 Prescription medication G PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMGPFU": { + "title": "1G7 Prescription medication G PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMH": { + "title": "1H Prescription medication H name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1H_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMHS": { + "title": "1H1 Prescription medication H strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMHSU": { + "title": "1H2 Prescription medication H strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1H_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMHF": { + "title": "1H3 Prescription medication H frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMHFU": { + "title": "1H4 Prescription medication H frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1H_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMHP": { + "title": "1H5 Prescription medication H – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1H_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMHPF": { + "title": "1H6 Prescription medication H PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMHPFU": { + "title": "1H7 Prescription medication H PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMI": { + "title": "1I Prescription medication I name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1I_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMIS": { + "title": "1I1 Prescription medication I strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMISU": { + "title": "1I2 Prescription medication I strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1I_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMIF": { + "title": "1I3 Prescription medication I frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMIFU": { + "title": "1I4 Prescription medication I frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1I_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMIP": { + "title": "1I5 Prescription medication I – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1I_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMIPF": { + "title": "1I6 Prescription medication I PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMIPFU": { + "title": "1I7 Prescription medication I PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMJ": { + "title": "1J Prescription medication J name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1J_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMJS": { + "title": "1J1 Prescription medication J strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMJSU": { + "title": "1J2 Prescription medication J strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1J_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMJF": { + "title": "1J3 Prescription medication J frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMJFU": { + "title": "1J4 Prescription medication J frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1J_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMJP": { + "title": "1J5 Prescription medication J – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1J_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMJPF": { + "title": "1J6 Prescription medication J PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMJPFU": { + "title": "1J7 Prescription medication J PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMK": { + "title": "1K Prescription medication K name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1K_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMKS": { + "title": "1K1 Prescription medication K strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMKSU": { + "title": "1K2 Prescription medication K strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1K_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMKF": { + "title": "1K3 Prescription medication K frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMKFU": { + "title": "1K4 Prescription medication K frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1K_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMKP": { + "title": "1K5 Prescription medication K – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1K_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMKPF": { + "title": "1K6 Prescription medication K PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMKPFU": { + "title": "1K7 Prescription medication K PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PML": { + "title": "1L Prescription medication L name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1L_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMLS": { + "title": "1L1 Prescription medication L strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMLSU": { + "title": "1L2 Prescription medication L strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1L_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMLF": { + "title": "1L3 Prescription medication L frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMLFU": { + "title": "1L4 Prescription medication L frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1L_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMLP": { + "title": "1L5 Prescription medication L – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1L_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMLPF": { + "title": "1L6 Prescription medication L PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMLPFU": { + "title": "1L7 Prescription medication L PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMM": { + "title": "1M Prescription medication M name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1M_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMMS": { + "title": "1M1 Prescription medication M strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMMSU": { + "title": "1M2 Prescription medication M strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1M_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMMF": { + "title": "1M3 Prescription medication M frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMMFU": { + "title": "1M4 Prescription medication M frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1M_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMMP": { + "title": "1M5 Prescription medication M – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1M_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMMPF": { + "title": "1M6 Prescription medication M PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMMPFU": { + "title": "1M7 Prescription medication M PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMN": { + "title": "1N Prescription medication N name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1N_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMNS": { + "title": "1N1 Prescription medication N strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMNSU": { + "title": "1N2 Prescription medication N strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1N_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMNF": { + "title": "1N3 Prescription medication N frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMNFU": { + "title": "1N4 Prescription medication N frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1N_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMNP": { + "title": "1N5 Prescription medication N – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1N_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMNPF": { + "title": "1N6 Prescription medication N PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMNPFU": { + "title": "1N7 Prescription medication N PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMO": { + "title": "1O Prescription medication O name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1O_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMOS": { + "title": "1O1 Prescription medication O strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMOSU": { + "title": "1O2 Prescription medication O strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1O_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMOF": { + "title": "1O3 Prescription medication O frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMOFU": { + "title": "1O4 Prescription medication O frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1O_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMOP": { + "title": "1O5 Prescription medication O – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1O_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMOPF": { + "title": "1O6 Prescription medication O PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMOPFU": { + "title": "1O7 Prescription medication O PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMP": { + "title": "1P Prescription medication P name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1P_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMPS": { + "title": "1P1 Prescription medication P strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMPSU": { + "title": "1P2 Prescription medication P strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1P_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMPF": { + "title": "1P3 Prescription medication P frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMPFU": { + "title": "1P4 Prescription medication P frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1P_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMPP": { + "title": "1P5 Prescription medication P – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1P_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMPPF": { + "title": "1P6 Prescription medication P PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMPPFU": { + "title": "1P7 Prescription medication P PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMQ": { + "title": "1Q Prescription medication Q name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1Q_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMQS": { + "title": "1Q1 Prescription medication Q strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMQSU": { + "title": "1Q2 Prescription medication Q strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1Q_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMQF": { + "title": "1Q3 Prescription medication Q frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMQFU": { + "title": "1Q4 Prescription medication Q frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1Q_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMQP": { + "title": "1Q5 Prescription medication Q – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1Q_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMQPF": { + "title": "1Q6 Prescription medication Q PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMQPFU": { + "title": "1Q7 Prescription medication Q PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMR": { + "title": "1R Prescription medication R name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1R_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMRS": { + "title": "1R1 Prescription medication R strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMRSU": { + "title": "1R2 Prescription medication R strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1R_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMRF": { + "title": "1R3 Prescription medication R frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMRFU": { + "title": "1R4 Prescription medication R frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1R_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMRP": { + "title": "1R5 Prescription medication R – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1R_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMRPF": { + "title": "1R6 Prescription medication R PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMRPFU": { + "title": "1R7 Prescription medication R PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMS": { + "title": "1S Prescription medication S name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1S_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMSS": { + "title": "1S1 Prescription medication S strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMSSU": { + "title": "1S2 Prescription medication S strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1S_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMSF": { + "title": "1S3 Prescription medication S frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMSFU": { + "title": "1S4 Prescription medication S frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1S_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMSP": { + "title": "1S5 Prescription medication S – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1S_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMSPF": { + "title": "1S6 Prescription medication S PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMSPFU": { + "title": "1S7 Prescription medication S PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMT": { + "title": "1T Prescription medication T name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1T_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMTS": { + "title": "1T1 Prescription medication T strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMTSU": { + "title": "1T2 Prescription medication T strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1T_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMTF": { + "title": "1T3 Prescription medication T frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMTFU": { + "title": "1T4 Prescription medication T frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1T_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMTP": { + "title": "1T5 Prescription medication T – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1T_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMTPF": { + "title": "1T6 Prescription medication T PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMTPFU": { + "title": "1T7 Prescription medication T PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "NMEDS": { + "title": "2 Is the subject currently taking any non-prescription medications(OTC)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "NMA": { + "title": "2A Non-prescription medication A name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2A_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMAS": { + "title": "2A1 Non-prescription medication A strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMASU": { + "title": "2A2 Non-prescription medication A strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2A_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMAF": { + "title": "2A3 Non-prescription medication A frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMAFU": { + "title": "2A4 Non-prescription medication A frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMB": { + "title": "2B Non-prescription medication B name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2B_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMBS": { + "title": "2B1 Non-prescription medication B strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMBSU": { + "title": "2B2 Non-prescription medication B strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2B_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMBF": { + "title": "2B3 Non-prescription medication B frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMBFU": { + "title": "2B4 Non-prescription medication B frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMC": { + "title": "2C Non-prescription medication C name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2C_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMCS": { + "title": "2C1 Non-prescription medication C strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMCSU": { + "title": "2C2 Non-prescription medication C strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2C_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMCF": { + "title": "2C3 Non-prescription medication C frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMCFU": { + "title": "2C4 Non-prescription medication C frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMD": { + "title": "2D Non-prescription medication D name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2D_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMDS": { + "title": "2D1 Non-prescription medication D strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMDSU": { + "title": "2D2 Non-prescription medication D strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2D_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMDF": { + "title": "2D3 Non-prescription medication D frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMDFU": { + "title": "2D4 Non-prescription medication D frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NME": { + "title": "2E Non-prescription medication E name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2E_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMES": { + "title": "2E1 Non-prescription medication E strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMESU": { + "title": "2E2 Non-prescription medication E strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2E_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMEF": { + "title": "2E3 Non-prescription medication E frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMEFU": { + "title": "2E4 Non-prescription medication E frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMF": { + "title": "2F Non-prescription medication F name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2F_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMFS": { + "title": "2F1 Non-prescription medication F strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMFSU": { + "title": "2F2 Non-prescription medication F strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2F_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMFF": { + "title": "2F3 Non-prescription medication F frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMFFU": { + "title": "2F4 Non-prescription medication F frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMG": { + "title": "2G Non-prescription medication G name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2G_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMGS": { + "title": "2G1 Non-prescription medication G strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMGSU": { + "title": "2G2 Non-prescription medication G strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2G_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMGF": { + "title": "2G3 Non-prescription medication G frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMGFU": { + "title": "2G4 Non-prescription medication G frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMH": { + "title": "2H Non-prescription medication H name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2H_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMHS": { + "title": "2H1 Non-prescription medication H strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMHSU": { + "title": "2H2 Non-prescription medication H strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2H_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMHF": { + "title": "2H3 Non-prescription medication H frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMHFU": { + "title": "2H4 Non-prescription medication H frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMI": { + "title": "2I Non-prescription medication I name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2I_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMIS": { + "title": "2I1 Non-prescription medication I strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMISU": { + "title": "2I2 Non-prescription medication I strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2I_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMIF": { + "title": "2I3 Non-prescription medication I frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMIFU": { + "title": "2I4 Non-prescription medication I frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMJ": { + "title": "2J Non-prescription medication J name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2J_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMJS": { + "title": "2J1 Non-prescription medication J strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMJSU": { + "title": "2J2 Non-prescription medication J strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2J_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMJF": { + "title": "2J3 Non-prescription medication J frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMJFU": { + "title": "2J4 Non-prescription medication J frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMK": { + "title": "2K Non-prescription medication K name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2K_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMKS": { + "title": "2K1 Non-prescription medication K strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMKSU": { + "title": "2K2 Non-prescription medication K strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2K_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMKF": { + "title": "2K3 Non-prescription medication K frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMKFU": { + "title": "2K4 Non-prescription medication K frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NML": { + "title": "2L Non-prescription medication L name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2L_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMLS": { + "title": "2L1 Non-prescription medication L strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMLSU": { + "title": "2L2 Non-prescription medication L strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2L_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMLF": { + "title": "2L3 Non-prescription medication L frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMLFU": { + "title": "2L4 Non-prescription medication L frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMM": { + "title": "2M Non-prescription medication M name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2M_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMMS": { + "title": "2M1 Non-prescription medication M strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMMSU": { + "title": "2M2 Non-prescription medication M strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2M_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMMF": { + "title": "2M3 Non-prescription medication M frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMMFU": { + "title": "2M4 Non-prescription medication M frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMN": { + "title": "2N Non-prescription medication N name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2N_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMNS": { + "title": "2N1 Non-prescription medication N strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMNSU": { + "title": "2N2 Non-prescription medication N strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2N_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMNF": { + "title": "2N3 Non-prescription medication N frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMNFU": { + "title": "2N4 Non-prescription medication N frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMO": { + "title": "2O Non-prescription medication O name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2O_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMOS": { + "title": "2O1 Non-prescription medication O strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMOSU": { + "title": "2O2 Non-prescription medication O strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2O_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMOF": { + "title": "2O3 Non-prescription medication O frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMOFU": { + "title": "2O4 Non-prescription medication O frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMP": { + "title": "2P Non-prescription medication P name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2P_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMPS": { + "title": "2P1 Non-prescription medication P strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMPSU": { + "title": "2P2 Non-prescription medication P strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2P_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMPF": { + "title": "2P3 Non-prescription medication P frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMPFU": { + "title": "2P4 Non-prescription medication P frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMQ": { + "title": "2Q Non-prescription medication Q name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2Q_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMQS": { + "title": "2Q1 Non-prescription medication Q strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMQSU": { + "title": "2Q2 Non-prescription medication Q strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2Q_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMQF": { + "title": "2Q3 Non-prescription medication Q frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMQFU": { + "title": "2Q4 Non-prescription medication Q frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMR": { + "title": "2R Non-prescription medication R name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2R_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMRS": { + "title": "2R1 Non-prescription medication R strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMRSU": { + "title": "2R2 Non-prescription medication R strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2R_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMRF": { + "title": "2R3 Non-prescription medication R frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMRFU": { + "title": "2R4 Non-prescription medication R frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMS": { + "title": "2S Non-prescription medication S name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2S_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMSS": { + "title": "2S1 Non-prescription medication S strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMSSU": { + "title": "2S2 Non-prescription medication S strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2S_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMSF": { + "title": "2S3 Non-prescription medication S frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMSFU": { + "title": "2S4 Non-prescription medication S frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMT": { + "title": "2T Non-prescription medication T name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2T_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMTS": { + "title": "2T1 Non-prescription medication T strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMTSU": { + "title": "2T2 Non-prescription medication T strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2T_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMTF": { + "title": "2T3 Non-prescription medication T frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMTFU": { + "title": "2T4 Non-prescription medication T frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VITASUPS": { + "title": "3 Is the subject currently taking any vitamins or supplements?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "VSA": { + "title": "3A Vitamin/supplement A name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3A_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSAS": { + "title": "3A1 Vitamin/supplement A strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSASU": { + "title": "3A2 Vitamin/supplement A strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3A_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSAF": { + "title": "3A3 Vitamin/supplement A frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSAFU": { + "title": "3A4 Vitamin/supplement A frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSB": { + "title": "3B Vitamin/supplement B name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3B_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSBS": { + "title": "3B1 Vitamin/supplement B strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSBSU": { + "title": "3B2 Vitamin/supplement B strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3B_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSBF": { + "title": "3B3 Vitamin/supplement B frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSBFU": { + "title": "3B4 Vitamin/supplement B frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSC": { + "title": "3C Vitamin/supplement C name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3C_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSCS": { + "title": "3C1 Vitamin/supplement C strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSCSU": { + "title": "3C2 Vitamin/supplement C strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3C_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSCF": { + "title": "3C3 Vitamin/supplement C frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSCFU": { + "title": "3C4 Vitamin/supplement C frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSD": { + "title": "3D Vitamin/supplement D name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3D_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSDS": { + "title": "3D1 Vitamin/supplement D strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSDSU": { + "title": "3D2 Vitamin/supplement D strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3D_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSDF": { + "title": "3D3 Vitamin/supplement D frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSDFU": { + "title": "3D4 Vitamin/supplement D frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSE": { + "title": "3E Vitamin/supplement E name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3E_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSES": { + "title": "3E1 Vitamin/supplement E strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSESU": { + "title": "3E2 Vitamin/supplement E strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3E_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSEF": { + "title": "3E3 Vitamin/supplement E frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSEFU": { + "title": "3E4 Vitamin/supplement E frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSF": { + "title": "3F Vitamin/supplement F name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3F_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSFS": { + "title": "3F1 Vitamin/supplement F strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSFSU": { + "title": "3F2 Vitamin/supplement F strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3F_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSFF": { + "title": "3F3 Vitamin/supplement F frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSFFU": { + "title": "3F4 Vitamin/supplement F frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSG": { + "title": "3G Vitamin/supplement G name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3G_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSGS": { + "title": "3G1 Vitamin/supplement G strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSGSU": { + "title": "3G2 Vitamin/supplement G strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3G_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSGF": { + "title": "3G3 Vitamin/supplement G frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSGFU": { + "title": "3G4 Vitamin/supplement G frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSH": { + "title": "3H Vitamin/supplement H name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3H_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSHS": { + "title": "3H1 Vitamin/supplement H strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSHSU": { + "title": "3H2 Vitamin/supplement H strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3H_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSHF": { + "title": "3H3 Vitamin/supplement H frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSHFU": { + "title": "3H4 Vitamin/supplement H frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSI": { + "title": "3I Vitamin/supplement I name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3I_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSIS": { + "title": "3I1 Vitamin/supplement I strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSISU": { + "title": "3I2 Vitamin/supplement I strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3I_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSIF": { + "title": "3I3 Vitamin/supplement I frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSIFU": { + "title": "3I4 Vitamin/supplement I frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSJ": { + "title": "3J Vitamin/supplement J name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3J_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSJS": { + "title": "3J1 Vitamin/supplement J strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSJSU": { + "title": "3J2 Vitamin/supplement J strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3J_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSJF": { + "title": "3J3 Vitamin/supplement J frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSJFU": { + "title": "3J4 Vitamin/supplement J frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSK": { + "title": "3K Vitamin/supplement K name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3K_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSKS": { + "title": "3K1 Vitamin/supplement K strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSKSU": { + "title": "3K2 Vitamin/supplement K strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3K_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSKF": { + "title": "3K3 Vitamin/supplement K frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSKFU": { + "title": "3K4 Vitamin/supplement K frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSL": { + "title": "3L Vitamin/supplement L name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3L_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSLS": { + "title": "3L1 Vitamin/supplement L strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSLSU": { + "title": "3L2 Vitamin/supplement L strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3L_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSLF": { + "title": "3L3 Vitamin/supplement L frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSLFU": { + "title": "3L4 Vitamin/supplement L frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSM": { + "title": "3M Vitamin/supplement M name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3M_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSMS": { + "title": "3M1 Vitamin/supplement M strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSMSU": { + "title": "3M2 Vitamin/supplement M strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3M_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSMF": { + "title": "3M3 Vitamin/supplement M frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSMFU": { + "title": "3M4 Vitamin/supplement M frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSN": { + "title": "3N Vitamin/supplement N name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3N_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSNS": { + "title": "3N1 Vitamin/supplement N strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSNSU": { + "title": "3N2 Vitamin/supplement N strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3N_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSNF": { + "title": "3N3 Vitamin/supplement N frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSNFU": { + "title": "3N4 Vitamin/supplement N frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSO": { + "title": "3O Vitamin/supplement O name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3O_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSOS": { + "title": "3O1 Vitamin/supplement O strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSOSU": { + "title": "3O2 Vitamin/supplement O strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3O_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSOF": { + "title": "3O3 Vitamin/supplement O frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSOFU": { + "title": "3O4 Vitamin/supplement O frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSP": { + "title": "3P Vitamin/supplement P name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3P_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSPS": { + "title": "3P1 Vitamin/supplement P strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSPSU": { + "title": "3P2 Vitamin/supplement P strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3P_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSPF": { + "title": "3P3 Vitamin/supplement P frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSPFU": { + "title": "3P4 Vitamin/supplement P frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSQ": { + "title": "3Q Vitamin/supplement Q name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3Q_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSQS": { + "title": "3Q1 Vitamin/supplement Q strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSQSU": { + "title": "3Q2 Vitamin/supplement Q strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3Q_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSQF": { + "title": "3Q3 Vitamin/supplement Q frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSQFU": { + "title": "3Q4 Vitamin/supplement Q frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSR": { + "title": "3R Vitamin/supplement R name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3R_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSRS": { + "title": "3R1 Vitamin/supplement R strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSRSU": { + "title": "3R2 Vitamin/supplement R strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3R_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSRF": { + "title": "3R3 Vitamin/supplement R frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSRFU": { + "title": "3R4 Vitamin/supplement R frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSS": { + "title": "3S Vitamin/supplement S name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3S_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSSS": { + "title": "3S1 Vitamin/supplement S strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSSSU": { + "title": "3S2 Vitamin/supplement S strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3S_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSSF": { + "title": "3S3 Vitamin/supplement S frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSSFU": { + "title": "3S4 Vitamin/supplement S frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VST": { + "title": "3T Vitamin/supplement T name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3T_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSTS": { + "title": "3T1 Vitamin/supplement T strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSTSU": { + "title": "3T2 Vitamin/supplement T strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3T_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSTF": { + "title": "3T3 Vitamin/supplement T frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSTFU": { + "title": "3T4 Vitamin/supplement T frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "PMEDS": { + "title": "1 Is the subject currently taking any prescription medications?" + }, + "PMA": { + "title": "1A Prescription medication A name" + }, + "1a_medi_strength.PMAS": { + "title": "1A1 Prescription medication A strength" + }, + "1a_medi_strength.PMASU": { + "title": "1A2 Prescription medication A strength units" + }, + "1a_frequency.PMAF": { + "title": "1A3 Prescription medication A frequency: total number of doses per day, week or month" + }, + "1a_frequency.PMAFU": { + "title": "1A4 Prescription medication A frequency units" + }, + "1a_pre_prn.PMAP": { + "title": "1A5 Prescription medication A – Prescribed as PRN?" + }, + "1a_prn_frequency.PMAPF": { + "title": "1A6 Prescription medication A PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1a_prn_frequency.PMAPFU": { + "title": "1A7 Prescription medication A PRN frequency units" + }, + "PMB": { + "title": "1B Prescription medication B name" + }, + "1B_medi_strength.PMBS": { + "title": "1B1 Prescription medication B strength" + }, + "1B_medi_strength.PMBSU": { + "title": "1B2 Prescription medication B strength units" + }, + "1B_frequency.PMBF": { + "title": "1B3 Prescription medication B frequency: total number of doses per day, week or month" + }, + "1B_frequency.PMBFU": { + "title": "1B4 Prescription medication B frequency units" + }, + "1B_pre_prn.PMBP": { + "title": "1B5 Prescription medication B – Prescribed as PRN?" + }, + "1B_prn_frequency.PMBPF": { + "title": "1B6 Prescription medication B PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1B_prn_frequency.PMBPFU": { + "title": "1B7 Prescription medication B PRN frequency units" + }, + "PMC": { + "title": "1C Prescription medication C name" + }, + "1C_medi_strength.PMCS": { + "title": "1C1 Prescription medication C strength" + }, + "1C_medi_strength.PMCSU": { + "title": "1C2 Prescription medication C strength units" + }, + "1C_frequency.PMCF": { + "title": "1C3 Prescription medication C frequency: total number of doses per day, week or month" + }, + "1C_frequency.PMCFU": { + "title": "1C4 Prescription medication C frequency units" + }, + "1C_pre_prn.PMCP": { + "title": "1C5 Prescription medication C – Prescribed as PRN?" + }, + "1C_prn_frequency.PMCPF": { + "title": "1C6 Prescription medication C PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1C_prn_frequency.PMCPFU": { + "title": "1C7 Prescription medication C PRN frequency units" + }, + "PMD": { + "title": "1D Prescription medication D name" + }, + "1D_medi_strength.PMDS": { + "title": "1D1 Prescription medication D strength" + }, + "1D_medi_strength.PMDSU": { + "title": "1D2 Prescription medication D strength units" + }, + "1D_frequency.PMDF": { + "title": "1D3 Prescription medication D frequency: total number of doses per day, week or month" + }, + "1D_frequency.PMDFU": { + "title": "1D4 Prescription medication D frequency units" + }, + "1D_pre_prn.PMDP": { + "title": "1D5 Prescription medication D – Prescribed as PRN?" + }, + "1D_prn_frequency.PMDPF": { + "title": "1D6 Prescription medication D PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1D_prn_frequency.PMDPFU": { + "title": "1D7 Prescription medication D PRN frequency units" + }, + "PME": { + "title": "1E Prescription medication E name" + }, + "1E_medi_strength.PMES": { + "title": "1E1 Prescription medication E strength" + }, + "1E_medi_strength.PMESU": { + "title": "1E2 Prescription medication E strength units" + }, + "1E_frequency.PMEF": { + "title": "1E3 Prescription medication E frequency: total number of doses per day, week or month" + }, + "1E_frequency.PMEFU": { + "title": "1E4 Prescription medication E frequency units" + }, + "1E_pre_prn.PMEP": { + "title": "1E5 Prescription medication E – Prescribed as PRN?" + }, + "1E_prn_frequency.PMEPF": { + "title": "1E6 Prescription medication E PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1E_prn_frequency.PMEPFU": { + "title": "1E7 Prescription medication E PRN frequency units" + }, + "NMEDS": { + "title": "2 Is the subject currently taking any non-prescription medications(OTC)?" + }, + "NMA": { + "title": "2A Non-prescription medication A name" + }, + "2A_medi_strength.NMAS": { + "title": "2A1 Non-prescription medication A strength" + }, + "2A_medi_strength.NMASU": { + "title": "2A2 Non-prescription medication A strength units" + }, + "2A_frequency.NMAF": { + "title": "2A3 Non-prescription medication A frequency: total number of doses per day, week or month" + }, + "2A_frequency.NMAFU": { + "title": "2A4 Non-prescription medication A frequency units" + }, + "NMB": { + "title": "2B Non-prescription medication B name" + }, + "2B_medi_strength.NMBS": { + "title": "2B1 Non-prescription medication B strength" + }, + "2B_medi_strength.NMBSU": { + "title": "2B2 Non-prescription medication B strength units" + }, + "2B_frequency.NMBF": { + "title": "2B3 Non-prescription medication B frequency: total number of doses per day, week or month" + }, + "2B_frequency.NMBFU": { + "title": "2B4 Non-prescription medication B frequency units" + }, + "NMC": { + "title": "2C Non-prescription medication C name" + }, + "2C_medi_strength.NMCS": { + "title": "2C1 Non-prescription medication C strength" + }, + "2C_medi_strength.NMCSU": { + "title": "2C2 Non-prescription medication C strength units" + }, + "2C_frequency.NMCF": { + "title": "2C3 Non-prescription medication C frequency: total number of doses per day, week or month" + }, + "2C_frequency.NMCFU": { + "title": "2C4 Non-prescription medication C frequency units" + }, + "NMD": { + "title": "2D Non-prescription medication D name" + }, + "2D_medi_strength.NMDS": { + "title": "2D1 Non-prescription medication D strength" + }, + "2D_medi_strength.NMDSU": { + "title": "2D2 Non-prescription medication D strength units" + }, + "2D_frequency.NMDF": { + "title": "2D3 Non-prescription medication D frequency: total number of doses per day, week or month" + }, + "2D_frequency.NMDFU": { + "title": "2D4 Non-prescription medication D frequency units" + }, + "NME": { + "title": "2E Non-prescription medication E name" + }, + "2E_medi_strength.NMES": { + "title": "2E1 Non-prescription medication E strength" + }, + "2E_medi_strength.NMESU": { + "title": "2E2 Non-prescription medication E strength units" + }, + "2E_frequency.NMEF": { + "title": "2E3 Non-prescription medication E frequency: total number of doses per day, week or month" + }, + "2E_frequency.NMEFU": { + "title": "2E4 Non-prescription medication E frequency units" + }, + "VITASUPS": { + "title": "3 Is the subject currently taking any vitamins or supplements?" + }, + "VSA": { + "title": "3A Vitamin/supplement A name" + }, + "3A_medi_strength.VSAS": { + "title": "3A1 Vitamin/supplement A strength" + }, + "3A_medi_strength.VSASU": { + "title": "3A2 Vitamin/supplement A strength units" + }, + "3A_frequency.VSAF": { + "title": "3A3 Vitamin/supplement A frequency: total number of doses per day, week or month" + }, + "3A_frequency.VSAFU": { + "title": "3A4 Vitamin/supplement A frequency units" + }, + "VSB": { + "title": "3B Vitamin/supplement B name" + }, + "3B_medi_strength.VSBS": { + "title": "3B1 Vitamin/supplement B strength" + }, + "3B_medi_strength.VSBSU": { + "title": "3B2 Vitamin/supplement B strength units" + }, + "3B_frequency.VSBF": { + "title": "3B3 Vitamin/supplement B frequency: total number of doses per day, week or month" + }, + "3B_frequency.VSBFU": { + "title": "3B4 Vitamin/supplement B frequency units" + }, + "VSC": { + "title": "3C Vitamin/supplement C name" + }, + "3C_medi_strength.VSCS": { + "title": "3C1 Vitamin/supplement C strength" + }, + "3C_medi_strength.VSCSU": { + "title": "3C2 Vitamin/supplement C strength units" + }, + "3C_frequency.VSCF": { + "title": "3C3 Vitamin/supplement C frequency: total number of doses per day, week or month" + }, + "3C_frequency.VSCFU": { + "title": "3C4 Vitamin/supplement C frequency units" + }, + "VSD": { + "title": "3D Vitamin/supplement D name" + }, + "3D_medi_strength.VSDS": { + "title": "3D1 Vitamin/supplement D strength" + }, + "3D_medi_strength.VSDSU": { + "title": "3D2 Vitamin/supplement D strength units" + }, + "3D_frequency.VSDF": { + "title": "3D3 Vitamin/supplement D frequency: total number of doses per day, week or month" + }, + "3D_frequency.VSDFU": { + "title": "3D4 Vitamin/supplement D frequency units" + }, + "VSE": { + "title": "3E Vitamin/supplement E name" + }, + "3E_medi_strength.VSES": { + "title": "3E1 Vitamin/supplement E strength" + }, + "3E_medi_strength.VSESU": { + "title": "3E2 Vitamin/supplement E strength units" + }, + "3E_frequency.VSEF": { + "title": "3E3 Vitamin/supplement E frequency: total number of doses per day, week or month" + }, + "3E_frequency.VSEFU": { + "title": "3E4 Vitamin/supplement E frequency units" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "PMEDS": { + "title": "1 Is the subject currently taking any prescription medications?" + }, + "PMA": { + "title": "1A Prescription medication A name" + }, + "1a_medi_strength.PMAS": { + "title": "1A1 Prescription medication A strength" + }, + "1a_medi_strength.PMASU": { + "title": "1A2 Prescription medication A strength units" + }, + "1a_frequency.PMAF": { + "title": "1A3 Prescription medication A frequency: total number of doses per day, week or month" + }, + "1a_frequency.PMAFU": { + "title": "1A4 Prescription medication A frequency units" + }, + "1a_pre_prn.PMAP": { + "title": "1A5 Prescription medication A – Prescribed as PRN?" + }, + "1a_prn_frequency.PMAPF": { + "title": "1A6 Prescription medication A PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1a_prn_frequency.PMAPFU": { + "title": "1A7 Prescription medication A PRN frequency units" + }, + "PMB": { + "title": "1B Prescription medication B name" + }, + "1B_medi_strength.PMBS": { + "title": "1B1 Prescription medication B strength" + }, + "1B_medi_strength.PMBSU": { + "title": "1B2 Prescription medication B strength units" + }, + "1B_frequency.PMBF": { + "title": "1B3 Prescription medication B frequency: total number of doses per day, week or month" + }, + "1B_frequency.PMBFU": { + "title": "1B4 Prescription medication B frequency units" + }, + "1B_pre_prn.PMBP": { + "title": "1B5 Prescription medication B – Prescribed as PRN?" + }, + "1B_prn_frequency.PMBPF": { + "title": "1B6 Prescription medication B PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1B_prn_frequency.PMBPFU": { + "title": "1B7 Prescription medication B PRN frequency units" + }, + "PMC": { + "title": "1C Prescription medication C name" + }, + "1C_medi_strength.PMCS": { + "title": "1C1 Prescription medication C strength" + }, + "1C_medi_strength.PMCSU": { + "title": "1C2 Prescription medication C strength units" + }, + "1C_frequency.PMCF": { + "title": "1C3 Prescription medication C frequency: total number of doses per day, week or month" + }, + "1C_frequency.PMCFU": { + "title": "1C4 Prescription medication C frequency units" + }, + "1C_pre_prn.PMCP": { + "title": "1C5 Prescription medication C – Prescribed as PRN?" + }, + "1C_prn_frequency.PMCPF": { + "title": "1C6 Prescription medication C PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1C_prn_frequency.PMCPFU": { + "title": "1C7 Prescription medication C PRN frequency units" + }, + "PMD": { + "title": "1D Prescription medication D name" + }, + "1D_medi_strength.PMDS": { + "title": "1D1 Prescription medication D strength" + }, + "1D_medi_strength.PMDSU": { + "title": "1D2 Prescription medication D strength units" + }, + "1D_frequency.PMDF": { + "title": "1D3 Prescription medication D frequency: total number of doses per day, week or month" + }, + "1D_frequency.PMDFU": { + "title": "1D4 Prescription medication D frequency units" + }, + "1D_pre_prn.PMDP": { + "title": "1D5 Prescription medication D – Prescribed as PRN?" + }, + "1D_prn_frequency.PMDPF": { + "title": "1D6 Prescription medication D PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1D_prn_frequency.PMDPFU": { + "title": "1D7 Prescription medication D PRN frequency units" + }, + "PME": { + "title": "1E Prescription medication E name" + }, + "1E_medi_strength.PMES": { + "title": "1E1 Prescription medication E strength" + }, + "1E_medi_strength.PMESU": { + "title": "1E2 Prescription medication E strength units" + }, + "1E_frequency.PMEF": { + "title": "1E3 Prescription medication E frequency: total number of doses per day, week or month" + }, + "1E_frequency.PMEFU": { + "title": "1E4 Prescription medication E frequency units" + }, + "1E_pre_prn.PMEP": { + "title": "1E5 Prescription medication E – Prescribed as PRN?" + }, + "1E_prn_frequency.PMEPF": { + "title": "1E6 Prescription medication E PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1E_prn_frequency.PMEPFU": { + "title": "1E7 Prescription medication E PRN frequency units" + }, + "NMEDS": { + "title": "2 Is the subject currently taking any non-prescription medications(OTC)?" + }, + "NMA": { + "title": "2A Non-prescription medication A name" + }, + "2A_medi_strength.NMAS": { + "title": "2A1 Non-prescription medication A strength" + }, + "2A_medi_strength.NMASU": { + "title": "2A2 Non-prescription medication A strength units" + }, + "2A_frequency.NMAF": { + "title": "2A3 Non-prescription medication A frequency: total number of doses per day, week or month" + }, + "2A_frequency.NMAFU": { + "title": "2A4 Non-prescription medication A frequency units" + }, + "NMB": { + "title": "2B Non-prescription medication B name" + }, + "2B_medi_strength.NMBS": { + "title": "2B1 Non-prescription medication B strength" + }, + "2B_medi_strength.NMBSU": { + "title": "2B2 Non-prescription medication B strength units" + }, + "2B_frequency.NMBF": { + "title": "2B3 Non-prescription medication B frequency: total number of doses per day, week or month" + }, + "2B_frequency.NMBFU": { + "title": "2B4 Non-prescription medication B frequency units" + }, + "NMC": { + "title": "2C Non-prescription medication C name" + }, + "2C_medi_strength.NMCS": { + "title": "2C1 Non-prescription medication C strength" + }, + "2C_medi_strength.NMCSU": { + "title": "2C2 Non-prescription medication C strength units" + }, + "2C_frequency.NMCF": { + "title": "2C3 Non-prescription medication C frequency: total number of doses per day, week or month" + }, + "2C_frequency.NMCFU": { + "title": "2C4 Non-prescription medication C frequency units" + }, + "NMD": { + "title": "2D Non-prescription medication D name" + }, + "2D_medi_strength.NMDS": { + "title": "2D1 Non-prescription medication D strength" + }, + "2D_medi_strength.NMDSU": { + "title": "2D2 Non-prescription medication D strength units" + }, + "2D_frequency.NMDF": { + "title": "2D3 Non-prescription medication D frequency: total number of doses per day, week or month" + }, + "2D_frequency.NMDFU": { + "title": "2D4 Non-prescription medication D frequency units" + }, + "NME": { + "title": "2E Non-prescription medication E name" + }, + "2E_medi_strength.NMES": { + "title": "2E1 Non-prescription medication E strength" + }, + "2E_medi_strength.NMESU": { + "title": "2E2 Non-prescription medication E strength units" + }, + "2E_frequency.NMEF": { + "title": "2E3 Non-prescription medication E frequency: total number of doses per day, week or month" + }, + "2E_frequency.NMEFU": { + "title": "2E4 Non-prescription medication E frequency units" + }, + "VITASUPS": { + "title": "3 Is the subject currently taking any vitamins or supplements?" + }, + "VSA": { + "title": "3A Vitamin/supplement A name" + }, + "3A_medi_strength.VSAS": { + "title": "3A1 Vitamin/supplement A strength" + }, + "3A_medi_strength.VSASU": { + "title": "3A2 Vitamin/supplement A strength units" + }, + "3A_frequency.VSAF": { + "title": "3A3 Vitamin/supplement A frequency: total number of doses per day, week or month" + }, + "3A_frequency.VSAFU": { + "title": "3A4 Vitamin/supplement A frequency units" + }, + "VSB": { + "title": "3B Vitamin/supplement B name" + }, + "3B_medi_strength.VSBS": { + "title": "3B1 Vitamin/supplement B strength" + }, + "3B_medi_strength.VSBSU": { + "title": "3B2 Vitamin/supplement B strength units" + }, + "3B_frequency.VSBF": { + "title": "3B3 Vitamin/supplement B frequency: total number of doses per day, week or month" + }, + "3B_frequency.VSBFU": { + "title": "3B4 Vitamin/supplement B frequency units" + }, + "VSC": { + "title": "3C Vitamin/supplement C name" + }, + "3C_medi_strength.VSCS": { + "title": "3C1 Vitamin/supplement C strength" + }, + "3C_medi_strength.VSCSU": { + "title": "3C2 Vitamin/supplement C strength units" + }, + "3C_frequency.VSCF": { + "title": "3C3 Vitamin/supplement C frequency: total number of doses per day, week or month" + }, + "3C_frequency.VSCFU": { + "title": "3C4 Vitamin/supplement C frequency units" + }, + "VSD": { + "title": "3D Vitamin/supplement D name" + }, + "3D_medi_strength.VSDS": { + "title": "3D1 Vitamin/supplement D strength" + }, + "3D_medi_strength.VSDSU": { + "title": "3D2 Vitamin/supplement D strength units" + }, + "3D_frequency.VSDF": { + "title": "3D3 Vitamin/supplement D frequency: total number of doses per day, week or month" + }, + "3D_frequency.VSDFU": { + "title": "3D4 Vitamin/supplement D frequency units" + }, + "VSE": { + "title": "3E Vitamin/supplement E name" + }, + "3E_medi_strength.VSES": { + "title": "3E1 Vitamin/supplement E strength" + }, + "3E_medi_strength.VSESU": { + "title": "3E2 Vitamin/supplement E strength units" + }, + "3E_frequency.VSEF": { + "title": "3E3 Vitamin/supplement E frequency: total number of doses per day, week or month" + }, + "3E_frequency.VSEFU": { + "title": "3E4 Vitamin/supplement E frequency units" + } + }, + "boost_values": { + "patient": 1.0, + "PMEDS": 1.0, + "PMA": 1.0, + "1a_medi_strength.PMAS": 1.0, + "1a_medi_strength.PMASU": 1.0, + "1a_frequency.PMAF": 1.0, + "1a_frequency.PMAFU": 1.0, + "1a_pre_prn.PMAP": 1.0, + "1a_prn_frequency.PMAPF": 1.0, + "1a_prn_frequency.PMAPFU": 1.0, + "PMB": 1.0, + "1B_medi_strength.PMBS": 1.0, + "1B_medi_strength.PMBSU": 1.0, + "1B_frequency.PMBF": 1.0, + "1B_frequency.PMBFU": 1.0, + "1B_pre_prn.PMBP": 1.0, + "1B_prn_frequency.PMBPF": 1.0, + "1B_prn_frequency.PMBPFU": 1.0, + "PMC": 1.0, + "1C_medi_strength.PMCS": 1.0, + "1C_medi_strength.PMCSU": 1.0, + "1C_frequency.PMCF": 1.0, + "1C_frequency.PMCFU": 1.0, + "1C_pre_prn.PMCP": 1.0, + "1C_prn_frequency.PMCPF": 1.0, + "1C_prn_frequency.PMCPFU": 1.0, + "PMD": 1.0, + "1D_medi_strength.PMDS": 1.0, + "1D_medi_strength.PMDSU": 1.0, + "1D_frequency.PMDF": 1.0, + "1D_frequency.PMDFU": 1.0, + "1D_pre_prn.PMDP": 1.0, + "1D_prn_frequency.PMDPF": 1.0, + "1D_prn_frequency.PMDPFU": 1.0, + "PME": 1.0, + "1E_medi_strength.PMES": 1.0, + "1E_medi_strength.PMESU": 1.0, + "1E_frequency.PMEF": 1.0, + "1E_frequency.PMEFU": 1.0, + "1E_pre_prn.PMEP": 1.0, + "1E_prn_frequency.PMEPF": 1.0, + "1E_prn_frequency.PMEPFU": 1.0, + "NMEDS": 1.0, + "NMA": 1.0, + "2A_medi_strength.NMAS": 1.0, + "2A_medi_strength.NMASU": 1.0, + "2A_frequency.NMAF": 1.0, + "2A_frequency.NMAFU": 1.0, + "NMB": 1.0, + "2B_medi_strength.NMBS": 1.0, + "2B_medi_strength.NMBSU": 1.0, + "2B_frequency.NMBF": 1.0, + "2B_frequency.NMBFU": 1.0, + "NMC": 1.0, + "2C_medi_strength.NMCS": 1.0, + "2C_medi_strength.NMCSU": 1.0, + "2C_frequency.NMCF": 1.0, + "2C_frequency.NMCFU": 1.0, + "NMD": 1.0, + "2D_medi_strength.NMDS": 1.0, + "2D_medi_strength.NMDSU": 1.0, + "2D_frequency.NMDF": 1.0, + "2D_frequency.NMDFU": 1.0, + "NME": 1.0, + "2E_medi_strength.NMES": 1.0, + "2E_medi_strength.NMESU": 1.0, + "2E_frequency.NMEF": 1.0, + "2E_frequency.NMEFU": 1.0, + "VITASUPS": 1.0, + "VSA": 1.0, + "3A_medi_strength.VSAS": 1.0, + "3A_medi_strength.VSASU": 1.0, + "3A_frequency.VSAF": 1.0, + "3A_frequency.VSAFU": 1.0, + "VSB": 1.0, + "3B_medi_strength.VSBS": 1.0, + "3B_medi_strength.VSBSU": 1.0, + "3B_frequency.VSBF": 1.0, + "3B_frequency.VSBFU": 1.0, + "VSC": 1.0, + "3C_medi_strength.VSCS": 1.0, + "3C_medi_strength.VSCSU": 1.0, + "3C_frequency.VSCF": 1.0, + "3C_frequency.VSCFU": 1.0, + "VSD": 1.0, + "3D_medi_strength.VSDS": 1.0, + "3D_medi_strength.VSDSU": 1.0, + "3D_frequency.VSDF": 1.0, + "3D_frequency.VSDFU": 1.0, + "VSE": 1.0, + "3E_medi_strength.VSES": 1.0, + "3E_medi_strength.VSESU": 1.0, + "3E_frequency.VSEF": 1.0, + "3E_frequency.VSEFU": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a4v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a4v2.json b/src/encoded/schemas/fvp_a4v2.json new file mode 100644 index 0000000000..72f86d1942 --- /dev/null +++ b/src/encoded/schemas/fvp_a4v2.json @@ -0,0 +1,9607 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM A4: SUBJECT MEDICATIONS", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or ADC staff. The purpose of the form is to record all prescription medications taken by the subject within the two weeks before the current visit. For prescription medications not listed here, please follow the instructions at the end of this form. OTC (non-prescription) medications need not be reported; however, a short list of medications that could be either prescription or OTC follows the prescription list. This list includes commonly reported medications that may be purchased over the counter (but that may also be prescription)", + "id": "/profiles/uds_fvp_a4v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "fu_anymeds" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_anymeds": { + "title": "Is the subject currently taking any medications?", + "type": "string", + "enum": [ + "0 No (END FORM HERE)", + "1 Yes" + ] + }, + "fu_drugid_1": { + "title": "Select a medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_2": { + "title": "Select a 2nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_3": { + "title": "Select a 3rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_4": { + "title": "Select a 4th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_5": { + "title": "Select a 5th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_6": { + "title": "Select a 6th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_7": { + "title": "Select a 7th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_8": { + "title": "Select a 8th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_9": { + "title": "Select a 9th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_10": { + "title": "Select a 10th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_11": { + "title": "Select a 11th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_12": { + "title": "Select a 12th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_13": { + "title": "Select a 13th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_14": { + "title": "Select a 14th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_15": { + "title": "Select a 15th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_16": { + "title": "Select a 16th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_17": { + "title": "Select a 17th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_18": { + "title": "Select a 18th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_19": { + "title": "Select a 19th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_20": { + "title": "Select a 20th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_21": { + "title": "Select a 21st medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_22": { + "title": "Select a 22nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_23": { + "title": "Select a 23rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_24": { + "title": "Select a 24th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_25": { + "title": "Select a 25th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_26": { + "title": "Select a 26th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_27": { + "title": "Select a 27th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_28": { + "title": "Select a 28th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_29": { + "title": "Select a 29th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_30": { + "title": "Select a 30th medication", + "description": "(last drop down, use look up)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_not_listed_drugs": { + "title": "If a medication is not listed above, specify the drug or brand name and determine its drugID by using the Lookup Tool on NACC website at NACC online Drug Lookup", + "type": "object", + "properties": { + "fu_drugid_31": { + "title": "Type a drug ID as given in the look up table.", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_31": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_32": { + "title": "Type a 2nd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_32": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_33": { + "title": "Type a 3rd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_33": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_34": { + "title": "Type a 4th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_34": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_35": { + "title": "Type a 5th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_35": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_36": { + "title": "Type a 6th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_36": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_37": { + "title": "Type a 7th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_37": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_38": { + "title": "Type a 8th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_38": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_39": { + "title": "Type a 9th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_39": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_40": { + "title": "Type a 10th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_40": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_41": { + "title": "Type a 11th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_41": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_42": { + "title": "Type a 12th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_42": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_43": { + "title": "Type a 13th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_43": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_44": { + "title": "Type a 14th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_44": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_45": { + "title": "Type a 15th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_45": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_46": { + "title": "Type a 16th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_46": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_47": { + "title": "Type a 17th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_47": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_48": { + "title": "Type a 18th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_48": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_49": { + "title": "Type a 19th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_49": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_50": { + "title": "Type a 20th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_50": { + "title": "Type the name of the drug -", + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_anymeds": { + "title": "Is the subject currently taking any medications?" + }, + "fu_drugid_1": { + "title": "Select a medication" + }, + "fu_drugid_2": { + "title": "Select a 2nd medication" + }, + "fu_drugid_3": { + "title": "Select a 3rd medication" + }, + "fu_drugid_4": { + "title": "Select a 4th medication" + }, + "fu_drugid_5": { + "title": "Select a 5th medication" + }, + "fu_drugid_6": { + "title": "Select a 6th medication" + }, + "fu_drugid_7": { + "title": "Select a 7th medication" + }, + "fu_drugid_8": { + "title": "Select a 8th medication" + }, + "fu_drugid_9": { + "title": "Select a 9th medication" + }, + "fu_drugid_10": { + "title": "Select a 10th medication" + }, + "fu_not_listed_drugs.fu_drugid_31": { + "title": "Type a drug ID as given in the look up table." + }, + "fu_not_listed_drugs.fu_drug_name_31": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_32": { + "title": "Type a 2nd drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_32": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_33": { + "title": "Type a 3rd drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_33": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_34": { + "title": "Type a 4th drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_34": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_35": { + "title": "Type a 5th drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_35": { + "title": "Type the name of the drug -" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_anymeds": { + "title": "Is the subject currently taking any medications?" + }, + "fu_drugid_1": { + "title": "Select a medication" + }, + "fu_drugid_2": { + "title": "Select a 2nd medication" + }, + "fu_drugid_3": { + "title": "Select a 3rd medication" + }, + "fu_drugid_4": { + "title": "Select a 4th medication" + }, + "fu_drugid_5": { + "title": "Select a 5th medication" + }, + "fu_drugid_6": { + "title": "Select a 6th medication" + }, + "fu_drugid_7": { + "title": "Select a 7th medication" + }, + "fu_drugid_8": { + "title": "Select a 8th medication" + }, + "fu_drugid_9": { + "title": "Select a 9th medication" + }, + "fu_drugid_10": { + "title": "Select a 10th medication" + }, + "fu_not_listed_drugs.fu_drugid_31": { + "title": "Type a drug ID as given in the look up table." + }, + "fu_not_listed_drugs.fu_drug_name_31": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_32": { + "title": "Type a 2nd drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_32": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_33": { + "title": "Type a 3rd drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_33": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_34": { + "title": "Type a 4th drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_34": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_35": { + "title": "Type a 5th drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_35": { + "title": "Type the name of the drug -" + } + }, + "boost_values": { + "patient": 1.0, + "fu_anymeds": 1.0, + "fu_drugid_1": 1.0, + "fu_drugid_2": 1.0, + "fu_drugid_3": 1.0, + "fu_drugid_4": 1.0, + "fu_drugid_5": 1.0, + "fu_drugid_6": 1.0, + "fu_drugid_7": 1.0, + "fu_drugid_8": 1.0, + "fu_drugid_9": 1.0, + "fu_drugid_10": 1.0, + "fu_not_listed_drugs.fu_drugid_31": 1.0, + "fu_not_listed_drugs.fu_drug_name_31": 1.0, + "fu_not_listed_drugs.fu_drugid_32": 1.0, + "fu_not_listed_drugs.fu_drug_name_32": 1.0, + "fu_not_listed_drugs.fu_drugid_33": 1.0, + "fu_not_listed_drugs.fu_drug_name_33": 1.0, + "fu_not_listed_drugs.fu_drugid_34": 1.0, + "fu_not_listed_drugs.fu_drug_name_34": 1.0, + "fu_not_listed_drugs.fu_drugid_35": 1.0, + "fu_not_listed_drugs.fu_drug_name_35": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a4v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a4v3.json b/src/encoded/schemas/fvp_a4v3.json new file mode 100644 index 0000000000..e56927f5cc --- /dev/null +++ b/src/encoded/schemas/fvp_a4v3.json @@ -0,0 +1,9607 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM A4: SUBJECT MEDICATIONS", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or ADC staff. The purpose of the form is to record all prescription medications taken by the subject within the two weeks before the current visit. For prescription medications not listed here, please follow the instructions at the end of this form. OTC (non-prescription) medications need not be reported; however, a short list of medications that could be either prescription or OTC follows the prescription list. This list includes commonly reported medications that may be purchased over the counter (but that may also be prescription)", + "id": "/profiles/fvp_a4v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "fu_anymeds" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_anymeds": { + "title": "Is the subject currently taking any medications?", + "type": "string", + "enum": [ + "0 No (END FORM HERE)", + "1 Yes" + ] + }, + "fu_drugid_1": { + "title": "Select a medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_2": { + "title": "Select a 2nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_3": { + "title": "Select a 3rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_4": { + "title": "Select a 4th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_5": { + "title": "Select a 5th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_6": { + "title": "Select a 6th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_7": { + "title": "Select a 7th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_8": { + "title": "Select a 8th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_9": { + "title": "Select a 9th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_10": { + "title": "Select a 10th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_11": { + "title": "Select a 11th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_12": { + "title": "Select a 12th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_13": { + "title": "Select a 13th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_14": { + "title": "Select a 14th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_15": { + "title": "Select a 15th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_16": { + "title": "Select a 16th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_17": { + "title": "Select a 17th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_18": { + "title": "Select a 18th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_19": { + "title": "Select a 19th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_20": { + "title": "Select a 20th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_21": { + "title": "Select a 21st medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_22": { + "title": "Select a 22nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_23": { + "title": "Select a 23rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_24": { + "title": "Select a 24th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_25": { + "title": "Select a 25th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_26": { + "title": "Select a 26th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_27": { + "title": "Select a 27th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_28": { + "title": "Select a 28th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_29": { + "title": "Select a 29th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_drugid_30": { + "title": "Select a 30th medication", + "description": "(last drop down, use look up)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "fu_not_listed_drugs": { + "title": "If a medication is not listed above, specify the drug or brand name and determine its drugID by using the Lookup Tool on NACC website at NACC online Drug Lookup", + "type": "object", + "properties": { + "fu_drugid_31": { + "title": "Type a drug ID as given in the look up table.", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_31": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_32": { + "title": "Type a 2nd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_32": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_33": { + "title": "Type a 3rd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_33": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_34": { + "title": "Type a 4th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_34": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_35": { + "title": "Type a 5th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_35": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_36": { + "title": "Type a 6th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_36": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_37": { + "title": "Type a 7th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_37": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_38": { + "title": "Type a 8th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_38": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_39": { + "title": "Type a 9th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_39": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_40": { + "title": "Type a 10th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_40": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_41": { + "title": "Type a 11th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_41": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_42": { + "title": "Type a 12th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_42": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_43": { + "title": "Type a 13th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_43": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_44": { + "title": "Type a 14th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_44": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_45": { + "title": "Type a 15th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_45": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_46": { + "title": "Type a 16th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_46": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_47": { + "title": "Type a 17th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_47": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_48": { + "title": "Type a 18th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_48": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_49": { + "title": "Type a 19th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_49": { + "title": "Type the name of the drug -", + "type": "string" + }, + "fu_drugid_50": { + "title": "Type a 20th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "fu_drug_name_50": { + "title": "Type the name of the drug -", + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_anymeds": { + "title": "Is the subject currently taking any medications?" + }, + "fu_drugid_1": { + "title": "Select a medication" + }, + "fu_drugid_2": { + "title": "Select a 2nd medication" + }, + "fu_drugid_3": { + "title": "Select a 3rd medication" + }, + "fu_drugid_4": { + "title": "Select a 4th medication" + }, + "fu_drugid_5": { + "title": "Select a 5th medication" + }, + "fu_drugid_6": { + "title": "Select a 6th medication" + }, + "fu_drugid_7": { + "title": "Select a 7th medication" + }, + "fu_drugid_8": { + "title": "Select a 8th medication" + }, + "fu_drugid_9": { + "title": "Select a 9th medication" + }, + "fu_drugid_10": { + "title": "Select a 10th medication" + }, + "fu_not_listed_drugs.fu_drugid_31": { + "title": "Type a drug ID as given in the look up table." + }, + "fu_not_listed_drugs.fu_drug_name_31": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_32": { + "title": "Type a 2nd drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_32": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_33": { + "title": "Type a 3rd drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_33": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_34": { + "title": "Type a 4th drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_34": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_35": { + "title": "Type a 5th drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_35": { + "title": "Type the name of the drug -" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_anymeds": { + "title": "Is the subject currently taking any medications?" + }, + "fu_drugid_1": { + "title": "Select a medication" + }, + "fu_drugid_2": { + "title": "Select a 2nd medication" + }, + "fu_drugid_3": { + "title": "Select a 3rd medication" + }, + "fu_drugid_4": { + "title": "Select a 4th medication" + }, + "fu_drugid_5": { + "title": "Select a 5th medication" + }, + "fu_drugid_6": { + "title": "Select a 6th medication" + }, + "fu_drugid_7": { + "title": "Select a 7th medication" + }, + "fu_drugid_8": { + "title": "Select a 8th medication" + }, + "fu_drugid_9": { + "title": "Select a 9th medication" + }, + "fu_drugid_10": { + "title": "Select a 10th medication" + }, + "fu_not_listed_drugs.fu_drugid_31": { + "title": "Type a drug ID as given in the look up table." + }, + "fu_not_listed_drugs.fu_drug_name_31": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_32": { + "title": "Type a 2nd drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_32": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_33": { + "title": "Type a 3rd drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_33": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_34": { + "title": "Type a 4th drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_34": { + "title": "Type the name of the drug -" + }, + "fu_not_listed_drugs.fu_drugid_35": { + "title": "Type a 5th drug ID" + }, + "fu_not_listed_drugs.fu_drug_name_35": { + "title": "Type the name of the drug -" + } + }, + "boost_values": { + "patient": 1.0, + "fu_anymeds": 1.0, + "fu_drugid_1": 1.0, + "fu_drugid_2": 1.0, + "fu_drugid_3": 1.0, + "fu_drugid_4": 1.0, + "fu_drugid_5": 1.0, + "fu_drugid_6": 1.0, + "fu_drugid_7": 1.0, + "fu_drugid_8": 1.0, + "fu_drugid_9": 1.0, + "fu_drugid_10": 1.0, + "fu_not_listed_drugs.fu_drugid_31": 1.0, + "fu_not_listed_drugs.fu_drug_name_31": 1.0, + "fu_not_listed_drugs.fu_drugid_32": 1.0, + "fu_not_listed_drugs.fu_drug_name_32": 1.0, + "fu_not_listed_drugs.fu_drugid_33": 1.0, + "fu_not_listed_drugs.fu_drug_name_33": 1.0, + "fu_not_listed_drugs.fu_drugid_34": 1.0, + "fu_not_listed_drugs.fu_drug_name_34": 1.0, + "fu_not_listed_drugs.fu_drugid_35": 1.0, + "fu_not_listed_drugs.fu_drug_name_35": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a4v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a5v1.json b/src/encoded/schemas/fvp_a5v1.json new file mode 100644 index 0000000000..2a98c9e541 --- /dev/null +++ b/src/encoded/schemas/fvp_a5v1.json @@ -0,0 +1,906 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet: Form A5: Subject Health History", + "description": "NOTE: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A5. Check only one box per question.", + "id": "/profiles/fvp_a5v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "card_dise": { + "title": "1. Cardiovascular disease", + "type": "object", + "properties": { + "CVHATT": { + "title": "1A Heart attack/cardiac arrest", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVAFIB": { + "title": "1B Atrial fibrillation", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVBYPASS": { + "title": "1D Cardiac bypass procedure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVPACE": { + "title": "1E Pacemaker", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVCHF": { + "title": "1F Congestive heart failure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVOTHR": { + "title": "1G Cardiovascular disease, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #1G, CVOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "cere_dise": { + "title": "2. Cerebrovascular disease", + "type": "object", + "properties": { + "CBSTROKE": { + "title": "2A Stroke", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown,Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown, Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown.Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown.Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "CBTIA": { + "title": "2B Transient ischemic attack", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown.Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown.Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "CBOTHR": { + "title": "2C Cerebrovascular disease, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #2C, CBOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "park_dise": { + "title": "3. Parkinsonian features ", + "type": "object", + "properties": { + "PD": { + "title": "3A Parkinson’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis.", + "description": "Between year of birth and date of visit. 9999 = Year unknown, Blank if #3A, PD ≠ 1 (Recent/Active).", + "type": "string" + }, + "PDOTHR": { + "title": "3B Other Parkinsonism disorder", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis.", + "description": "Between year of birth and date of visit.9999 = Year unknown, Blank if #3B, PDOTHR ≠ 1 (Recent/Active).", + "type": "string" + } + } + }, + "other_neur_cond": { + "title": "4. Other neurologic conditions ", + "type": "object", + "properties": { + "SEIZURES": { + "title": "4A Seizures", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "NCOTHR": { + "title": "4C Other neurologic conditions, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #4C, NCOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "medi_cond": { + "title": "5. Medical/metabolic conditions", + "type": "object", + "properties": { + "HYPERTEN": { + "title": "5A Hypertension", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "HYPERCHO": { + "title": "5B Hypercholesterolemia", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "DIABETES": { + "title": "5C Diabetes", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "B12DEF": { + "title": "5D B12 deficiency", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "THYROID": { + "title": "5E Thyroid disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "INCONTU": { + "title": "5F Incontinence – urinary", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "INCONTF": { + "title": "5G Incontinence – bowel", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + } + } + }, + "depr": { + "title": "6. Depression", + "type": "object", + "properties": { + "DEP2YRS": { + "title": "6A Depression, active within the past 2 years", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "sub_abuse_and_psyc": { + "title": "7. Substance abuse and psychiatric disorders", + "type": "object", + "properties": { + "alcohol": { + "title": "a. Substance abuse – alcohol", + "type": "object", + "properties": { + "ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social.", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + } + } + }, + "cigarette": { + "title": "b. Cigarette smoking history", + "type": "object", + "properties": { + "TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SMOKYRS": { + "title": "7B3 Total years smoked", + "description": "00 – 87,88=NA,99=Unknown", + "type": "string" + }, + "PACKSPER": { + "title": "7B4 Average number of packs/day smoked", + "type": "string", + "enum": [ + "1 1 cigarette – < ½ pack", + "2 ½ – < 1 pack", + "3 1 – < 1½ pack", + "4 1½ – < 2 packs", + "5 > 2 packs", + "8 N/A", + "9 Unknown" + ] + }, + "QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)", + "description": "8 to current age,888=N/A,999=Unknown", + "type": "string" + } + } + }, + "other_subs": { + "title": "c. Other abused substances", + "type": "object", + "properties": { + "ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social.", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #7C1, ABUSOTHR ≠ 1 (Recent/Active) or 2 (remote/inactive).", + "type": "string" + } + } + }, + "PSYCDIS": { + "title": "7D Psychiatric disorders", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #7D PSYCDIS ≠ 1 (Recent/Active) or 2 (Remote/Inactive).", + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "card_dise.CVHATT": { + "title": "1A Heart attack/cardiac arrest" + }, + "card_dise.CVAFIB": { + "title": "1B Atrial fibrillation" + }, + "card_dise.CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent" + }, + "card_dise.CVBYPASS": { + "title": "1D Cardiac bypass procedure" + }, + "card_dise.CVPACE": { + "title": "1E Pacemaker" + }, + "card_dise.CVCHF": { + "title": "1F Congestive heart failure" + }, + "card_dise.CVOTHR": { + "title": "1G Cardiovascular disease, other" + }, + "card_dise.CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)" + }, + "cere_dise.CBSTROKE": { + "title": "2A Stroke" + }, + "cere_dise.STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.CBTIA": { + "title": "2B Transient ischemic attack" + }, + "cere_dise.TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.CBOTHR": { + "title": "2C Cerebrovascular disease, other" + }, + "cere_dise.CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)" + }, + "park_dise.PD": { + "title": "3A Parkinson’s disease" + }, + "park_dise.PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis." + }, + "park_dise.PDOTHR": { + "title": "3B Other Parkinsonism disorder" + }, + "park_dise.PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis." + }, + "other_neur_cond.SEIZURES": { + "title": "4A Seizures" + }, + "other_neur_cond.TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)" + }, + "other_neur_cond.TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)" + }, + "other_neur_cond.TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction" + }, + "other_neur_cond.NCOTHR": { + "title": "4C Other neurologic conditions, other" + }, + "other_neur_cond.NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)" + }, + "medi_cond.HYPERTEN": { + "title": "5A Hypertension" + }, + "medi_cond.HYPERCHO": { + "title": "5B Hypercholesterolemia" + }, + "medi_cond.DIABETES": { + "title": "5C Diabetes" + }, + "medi_cond.B12DEF": { + "title": "5D B12 deficiency" + }, + "medi_cond.THYROID": { + "title": "5E Thyroid disease" + }, + "medi_cond.INCONTU": { + "title": "5F Incontinence – urinary" + }, + "medi_cond.INCONTF": { + "title": "5G Incontinence – bowel" + }, + "depr.DEP2YRS": { + "title": "6A Depression, active within the past 2 years" + }, + "depr.DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)" + }, + "sub_abuse_and_psyc.alcohol.ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.cigarette.TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?" + }, + "sub_abuse_and_psyc.cigarette.TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?" + }, + "sub_abuse_and_psyc.cigarette.SMOKYRS": { + "title": "7B3 Total years smoked" + }, + "sub_abuse_and_psyc.cigarette.PACKSPER": { + "title": "7B4 Average number of packs/day smoked" + }, + "sub_abuse_and_psyc.cigarette.QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)" + }, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.other_subs.ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify" + }, + "sub_abuse_and_psyc.PSYCDIS": { + "title": "7D Psychiatric disorders" + }, + "sub_abuse_and_psyc.PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "card_dise.CVHATT": { + "title": "1A Heart attack/cardiac arrest" + }, + "card_dise.CVAFIB": { + "title": "1B Atrial fibrillation" + }, + "card_dise.CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent" + }, + "card_dise.CVBYPASS": { + "title": "1D Cardiac bypass procedure" + }, + "card_dise.CVPACE": { + "title": "1E Pacemaker" + }, + "card_dise.CVCHF": { + "title": "1F Congestive heart failure" + }, + "card_dise.CVOTHR": { + "title": "1G Cardiovascular disease, other" + }, + "card_dise.CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)" + }, + "cere_dise.CBSTROKE": { + "title": "2A Stroke" + }, + "cere_dise.STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.CBTIA": { + "title": "2B Transient ischemic attack" + }, + "cere_dise.TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.CBOTHR": { + "title": "2C Cerebrovascular disease, other" + }, + "cere_dise.CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)" + }, + "park_dise.PD": { + "title": "3A Parkinson’s disease" + }, + "park_dise.PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis." + }, + "park_dise.PDOTHR": { + "title": "3B Other Parkinsonism disorder" + }, + "park_dise.PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis." + }, + "other_neur_cond.SEIZURES": { + "title": "4A Seizures" + }, + "other_neur_cond.TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)" + }, + "other_neur_cond.TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)" + }, + "other_neur_cond.TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction" + }, + "other_neur_cond.NCOTHR": { + "title": "4C Other neurologic conditions, other" + }, + "other_neur_cond.NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)" + }, + "medi_cond.HYPERTEN": { + "title": "5A Hypertension" + }, + "medi_cond.HYPERCHO": { + "title": "5B Hypercholesterolemia" + }, + "medi_cond.DIABETES": { + "title": "5C Diabetes" + }, + "medi_cond.B12DEF": { + "title": "5D B12 deficiency" + }, + "medi_cond.THYROID": { + "title": "5E Thyroid disease" + }, + "medi_cond.INCONTU": { + "title": "5F Incontinence – urinary" + }, + "medi_cond.INCONTF": { + "title": "5G Incontinence – bowel" + }, + "depr.DEP2YRS": { + "title": "6A Depression, active within the past 2 years" + }, + "depr.DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)" + }, + "sub_abuse_and_psyc.alcohol.ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.cigarette.TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?" + }, + "sub_abuse_and_psyc.cigarette.TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?" + }, + "sub_abuse_and_psyc.cigarette.SMOKYRS": { + "title": "7B3 Total years smoked" + }, + "sub_abuse_and_psyc.cigarette.PACKSPER": { + "title": "7B4 Average number of packs/day smoked" + }, + "sub_abuse_and_psyc.cigarette.QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)" + }, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.other_subs.ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify" + }, + "sub_abuse_and_psyc.PSYCDIS": { + "title": "7D Psychiatric disorders" + }, + "sub_abuse_and_psyc.PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify" + } + }, + "boost_values": { + "patient": 1.0, + "card_dise.CVHATT": 1.0, + "card_dise.CVAFIB": 1.0, + "card_dise.CVANGIO": 1.0, + "card_dise.CVBYPASS": 1.0, + "card_dise.CVPACE": 1.0, + "card_dise.CVCHF": 1.0, + "card_dise.CVOTHR": 1.0, + "card_dise.CVOTHRX": 1.0, + "cere_dise.CBSTROKE": 1.0, + "cere_dise.STROK1YR": 1.0, + "cere_dise.STROK2YR": 1.0, + "cere_dise.STROK3YR": 1.0, + "cere_dise.STROK4YR": 1.0, + "cere_dise.STROK5YR": 1.0, + "cere_dise.STROK6YR": 1.0, + "cere_dise.CBTIA": 1.0, + "cere_dise.TIA1YR": 1.0, + "cere_dise.TIA2YR": 1.0, + "cere_dise.TIA3YR": 1.0, + "cere_dise.TIA4YR": 1.0, + "cere_dise.TIA5YR": 1.0, + "cere_dise.TIA6YR": 1.0, + "cere_dise.CBOTHR": 1.0, + "cere_dise.CBOTHRX": 1.0, + "park_dise.PD": 1.0, + "park_dise.PDYR": 1.0, + "park_dise.PDOTHR": 1.0, + "park_dise.PDOTHRYR": 1.0, + "other_neur_cond.SEIZURES": 1.0, + "other_neur_cond.TRAUMBRF": 1.0, + "other_neur_cond.TRAUMEXT": 1.0, + "other_neur_cond.TRAUMCHR": 1.0, + "other_neur_cond.NCOTHR": 1.0, + "other_neur_cond.NCOTHRX": 1.0, + "medi_cond.HYPERTEN": 1.0, + "medi_cond.HYPERCHO": 1.0, + "medi_cond.DIABETES": 1.0, + "medi_cond.B12DEF": 1.0, + "medi_cond.THYROID": 1.0, + "medi_cond.INCONTU": 1.0, + "medi_cond.INCONTF": 1.0, + "depr.DEP2YRS": 1.0, + "depr.DEPOTHR": 1.0, + "sub_abuse_and_psyc.alcohol.ALCOHOL": 1.0, + "sub_abuse_and_psyc.cigarette.TOBAC30": 1.0, + "sub_abuse_and_psyc.cigarette.TOBAC100": 1.0, + "sub_abuse_and_psyc.cigarette.SMOKYRS": 1.0, + "sub_abuse_and_psyc.cigarette.PACKSPER": 1.0, + "sub_abuse_and_psyc.cigarette.QUITSMOK": 1.0, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": 1.0, + "sub_abuse_and_psyc.other_subs.ABUSX": 1.0, + "sub_abuse_and_psyc.PSYCDIS": 1.0, + "sub_abuse_and_psyc.PSYCDISX": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a5v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_a5v2.json b/src/encoded/schemas/fvp_a5v2.json new file mode 100644 index 0000000000..2284d285a7 --- /dev/null +++ b/src/encoded/schemas/fvp_a5v2.json @@ -0,0 +1,906 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet: Form A5: Subject Health History", + "description": "NOTE: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A5. Check only one box per question.", + "id": "/profiles/fvp_a5v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "card_dise": { + "title": "1. Cardiovascular disease", + "type": "object", + "properties": { + "CVHATT": { + "title": "1A Heart attack/cardiac arrest", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVAFIB": { + "title": "1B Atrial fibrillation", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVBYPASS": { + "title": "1D Cardiac bypass procedure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVPACE": { + "title": "1E Pacemaker", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVCHF": { + "title": "1F Congestive heart failure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVOTHR": { + "title": "1G Cardiovascular disease, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #1G, CVOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "cere_dise": { + "title": "2. Cerebrovascular disease", + "type": "object", + "properties": { + "CBSTROKE": { + "title": "2A Stroke", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown,Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown, Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown.Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown.Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "CBTIA": { + "title": "2B Transient ischemic attack", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown.Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown.Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "CBOTHR": { + "title": "2C Cerebrovascular disease, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #2C, CBOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "park_dise": { + "title": "3. Parkinsonian features ", + "type": "object", + "properties": { + "PD": { + "title": "3A Parkinson’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis.", + "description": "Between year of birth and date of visit. 9999 = Year unknown, Blank if #3A, PD ≠ 1 (Recent/Active).", + "type": "string" + }, + "PDOTHR": { + "title": "3B Other Parkinsonism disorder", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis.", + "description": "Between year of birth and date of visit.9999 = Year unknown, Blank if #3B, PDOTHR ≠ 1 (Recent/Active).", + "type": "string" + } + } + }, + "other_neur_cond": { + "title": "4. Other neurologic conditions ", + "type": "object", + "properties": { + "SEIZURES": { + "title": "4A Seizures", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "NCOTHR": { + "title": "4C Other neurologic conditions, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #4C, NCOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "medi_cond": { + "title": "5. Medical/metabolic conditions", + "type": "object", + "properties": { + "HYPERTEN": { + "title": "5A Hypertension", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "HYPERCHO": { + "title": "5B Hypercholesterolemia", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "DIABETES": { + "title": "5C Diabetes", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "B12DEF": { + "title": "5D B12 deficiency", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "THYROID": { + "title": "5E Thyroid disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "INCONTU": { + "title": "5F Incontinence – urinary", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "INCONTF": { + "title": "5G Incontinence – bowel", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + } + } + }, + "depr": { + "title": "6. Depression", + "type": "object", + "properties": { + "DEP2YRS": { + "title": "6A Depression, active within the past 2 years", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "sub_abuse_and_psyc": { + "title": "7. Substance abuse and psychiatric disorders", + "type": "object", + "properties": { + "alcohol": { + "title": "a. Substance abuse – alcohol", + "type": "object", + "properties": { + "ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social.", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + } + } + }, + "cigarette": { + "title": "b. Cigarette smoking history", + "type": "object", + "properties": { + "TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SMOKYRS": { + "title": "7B3 Total years smoked", + "description": "00 – 87,88=NA,99=Unknown", + "type": "string" + }, + "PACKSPER": { + "title": "7B4 Average number of packs/day smoked", + "type": "string", + "enum": [ + "1 1 cigarette – < ½ pack", + "2 ½ – < 1 pack", + "3 1 – < 1½ pack", + "4 1½ – < 2 packs", + "5 > 2 packs", + "8 N/A", + "9 Unknown" + ] + }, + "QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)", + "description": "8 to current age,888=N/A,999=Unknown", + "type": "string" + } + } + }, + "other_subs": { + "title": "c. Other abused substances", + "type": "object", + "properties": { + "ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social.", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #7C1, ABUSOTHR ≠ 1 (Recent/Active) or 2 (remote/inactive).", + "type": "string" + } + } + }, + "PSYCDIS": { + "title": "7D Psychiatric disorders", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #7D PSYCDIS ≠ 1 (Recent/Active) or 2 (Remote/Inactive).", + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "card_dise.CVHATT": { + "title": "1A Heart attack/cardiac arrest" + }, + "card_dise.CVAFIB": { + "title": "1B Atrial fibrillation" + }, + "card_dise.CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent" + }, + "card_dise.CVBYPASS": { + "title": "1D Cardiac bypass procedure" + }, + "card_dise.CVPACE": { + "title": "1E Pacemaker" + }, + "card_dise.CVCHF": { + "title": "1F Congestive heart failure" + }, + "card_dise.CVOTHR": { + "title": "1G Cardiovascular disease, other" + }, + "card_dise.CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)" + }, + "cere_dise.CBSTROKE": { + "title": "2A Stroke" + }, + "cere_dise.STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.CBTIA": { + "title": "2B Transient ischemic attack" + }, + "cere_dise.TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.CBOTHR": { + "title": "2C Cerebrovascular disease, other" + }, + "cere_dise.CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)" + }, + "park_dise.PD": { + "title": "3A Parkinson’s disease" + }, + "park_dise.PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis." + }, + "park_dise.PDOTHR": { + "title": "3B Other Parkinsonism disorder" + }, + "park_dise.PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis." + }, + "other_neur_cond.SEIZURES": { + "title": "4A Seizures" + }, + "other_neur_cond.TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)" + }, + "other_neur_cond.TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)" + }, + "other_neur_cond.TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction" + }, + "other_neur_cond.NCOTHR": { + "title": "4C Other neurologic conditions, other" + }, + "other_neur_cond.NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)" + }, + "medi_cond.HYPERTEN": { + "title": "5A Hypertension" + }, + "medi_cond.HYPERCHO": { + "title": "5B Hypercholesterolemia" + }, + "medi_cond.DIABETES": { + "title": "5C Diabetes" + }, + "medi_cond.B12DEF": { + "title": "5D B12 deficiency" + }, + "medi_cond.THYROID": { + "title": "5E Thyroid disease" + }, + "medi_cond.INCONTU": { + "title": "5F Incontinence – urinary" + }, + "medi_cond.INCONTF": { + "title": "5G Incontinence – bowel" + }, + "depr.DEP2YRS": { + "title": "6A Depression, active within the past 2 years" + }, + "depr.DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)" + }, + "sub_abuse_and_psyc.alcohol.ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.cigarette.TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?" + }, + "sub_abuse_and_psyc.cigarette.TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?" + }, + "sub_abuse_and_psyc.cigarette.SMOKYRS": { + "title": "7B3 Total years smoked" + }, + "sub_abuse_and_psyc.cigarette.PACKSPER": { + "title": "7B4 Average number of packs/day smoked" + }, + "sub_abuse_and_psyc.cigarette.QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)" + }, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.other_subs.ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify" + }, + "sub_abuse_and_psyc.PSYCDIS": { + "title": "7D Psychiatric disorders" + }, + "sub_abuse_and_psyc.PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "card_dise.CVHATT": { + "title": "1A Heart attack/cardiac arrest" + }, + "card_dise.CVAFIB": { + "title": "1B Atrial fibrillation" + }, + "card_dise.CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent" + }, + "card_dise.CVBYPASS": { + "title": "1D Cardiac bypass procedure" + }, + "card_dise.CVPACE": { + "title": "1E Pacemaker" + }, + "card_dise.CVCHF": { + "title": "1F Congestive heart failure" + }, + "card_dise.CVOTHR": { + "title": "1G Cardiovascular disease, other" + }, + "card_dise.CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)" + }, + "cere_dise.CBSTROKE": { + "title": "2A Stroke" + }, + "cere_dise.STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.CBTIA": { + "title": "2B Transient ischemic attack" + }, + "cere_dise.TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.CBOTHR": { + "title": "2C Cerebrovascular disease, other" + }, + "cere_dise.CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)" + }, + "park_dise.PD": { + "title": "3A Parkinson’s disease" + }, + "park_dise.PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis." + }, + "park_dise.PDOTHR": { + "title": "3B Other Parkinsonism disorder" + }, + "park_dise.PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis." + }, + "other_neur_cond.SEIZURES": { + "title": "4A Seizures" + }, + "other_neur_cond.TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)" + }, + "other_neur_cond.TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)" + }, + "other_neur_cond.TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction" + }, + "other_neur_cond.NCOTHR": { + "title": "4C Other neurologic conditions, other" + }, + "other_neur_cond.NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)" + }, + "medi_cond.HYPERTEN": { + "title": "5A Hypertension" + }, + "medi_cond.HYPERCHO": { + "title": "5B Hypercholesterolemia" + }, + "medi_cond.DIABETES": { + "title": "5C Diabetes" + }, + "medi_cond.B12DEF": { + "title": "5D B12 deficiency" + }, + "medi_cond.THYROID": { + "title": "5E Thyroid disease" + }, + "medi_cond.INCONTU": { + "title": "5F Incontinence – urinary" + }, + "medi_cond.INCONTF": { + "title": "5G Incontinence – bowel" + }, + "depr.DEP2YRS": { + "title": "6A Depression, active within the past 2 years" + }, + "depr.DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)" + }, + "sub_abuse_and_psyc.alcohol.ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.cigarette.TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?" + }, + "sub_abuse_and_psyc.cigarette.TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?" + }, + "sub_abuse_and_psyc.cigarette.SMOKYRS": { + "title": "7B3 Total years smoked" + }, + "sub_abuse_and_psyc.cigarette.PACKSPER": { + "title": "7B4 Average number of packs/day smoked" + }, + "sub_abuse_and_psyc.cigarette.QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)" + }, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.other_subs.ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify" + }, + "sub_abuse_and_psyc.PSYCDIS": { + "title": "7D Psychiatric disorders" + }, + "sub_abuse_and_psyc.PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify" + } + }, + "boost_values": { + "patient": 1.0, + "card_dise.CVHATT": 1.0, + "card_dise.CVAFIB": 1.0, + "card_dise.CVANGIO": 1.0, + "card_dise.CVBYPASS": 1.0, + "card_dise.CVPACE": 1.0, + "card_dise.CVCHF": 1.0, + "card_dise.CVOTHR": 1.0, + "card_dise.CVOTHRX": 1.0, + "cere_dise.CBSTROKE": 1.0, + "cere_dise.STROK1YR": 1.0, + "cere_dise.STROK2YR": 1.0, + "cere_dise.STROK3YR": 1.0, + "cere_dise.STROK4YR": 1.0, + "cere_dise.STROK5YR": 1.0, + "cere_dise.STROK6YR": 1.0, + "cere_dise.CBTIA": 1.0, + "cere_dise.TIA1YR": 1.0, + "cere_dise.TIA2YR": 1.0, + "cere_dise.TIA3YR": 1.0, + "cere_dise.TIA4YR": 1.0, + "cere_dise.TIA5YR": 1.0, + "cere_dise.TIA6YR": 1.0, + "cere_dise.CBOTHR": 1.0, + "cere_dise.CBOTHRX": 1.0, + "park_dise.PD": 1.0, + "park_dise.PDYR": 1.0, + "park_dise.PDOTHR": 1.0, + "park_dise.PDOTHRYR": 1.0, + "other_neur_cond.SEIZURES": 1.0, + "other_neur_cond.TRAUMBRF": 1.0, + "other_neur_cond.TRAUMEXT": 1.0, + "other_neur_cond.TRAUMCHR": 1.0, + "other_neur_cond.NCOTHR": 1.0, + "other_neur_cond.NCOTHRX": 1.0, + "medi_cond.HYPERTEN": 1.0, + "medi_cond.HYPERCHO": 1.0, + "medi_cond.DIABETES": 1.0, + "medi_cond.B12DEF": 1.0, + "medi_cond.THYROID": 1.0, + "medi_cond.INCONTU": 1.0, + "medi_cond.INCONTF": 1.0, + "depr.DEP2YRS": 1.0, + "depr.DEPOTHR": 1.0, + "sub_abuse_and_psyc.alcohol.ALCOHOL": 1.0, + "sub_abuse_and_psyc.cigarette.TOBAC30": 1.0, + "sub_abuse_and_psyc.cigarette.TOBAC100": 1.0, + "sub_abuse_and_psyc.cigarette.SMOKYRS": 1.0, + "sub_abuse_and_psyc.cigarette.PACKSPER": 1.0, + "sub_abuse_and_psyc.cigarette.QUITSMOK": 1.0, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": 1.0, + "sub_abuse_and_psyc.other_subs.ABUSX": 1.0, + "sub_abuse_and_psyc.PSYCDIS": 1.0, + "sub_abuse_and_psyc.PSYCDISX": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_a5v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b1v1.json b/src/encoded/schemas/fvp_b1v1.json new file mode 100644 index 0000000000..bdf376bf17 --- /dev/null +++ b/src/encoded/schemas/fvp_b1v1.json @@ -0,0 +1,241 @@ + + { + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B1: EVALUATION FORM - PHYSICAL\nINSTRUCTIONS", + "description": "This form is to be completed by the clinician. For additional clarification and examples, see UDSCoding Guidebook for Follow-up Visit Packet, Form B1. Link to NACC Coding Guidebook Check only one box perquestion.", + "id": "/profiles/fvp_b1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "phys_measr", + "addi_obser" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "phys_measr": { + "title": "Subject physical measurements", + + "type": "object", + "properties": { + "fu_height": { + "title": "1. Subject height (inches)", + "description": "36.0-87.9; 88.8 = Not Assessed; 99.9 = unknown", + "type": "string", + "pattern": "^(36.[0-9])$|^([3-7][0-9].[0-9])$|^(8[0-7].[0-9])$|^88.8$|^99.9$" + }, + "fu_weight": { + "title": "2. Subject weight (lbs.)", + "description": "50-400; 888 = Not Assessed; 999 = unknown", + "type": "string", + "pattern": "^[5-9][0-9]$|^[1-3][0-9][0-9]$|^400$|^888$|^999$" + }, + "fu_bpsys": { + "title": "3a. Subject blood pressure at initial reading (sitting), systolic", + "description": "70-230; 888 = Not Assessed;999 = unknown", + "type": "string", + "pattern": "^[0-1][0-9][0-9]$|^[7-9][0-9]$|^2[0-2][0-9]$|^230$|^888$|^999$" + }, + "fu_bpdias": { + "title": "3b. Subject blood pressure at initial reading (sitting), diastolic", + "description": "30-140; 888 = Not Assessed; 999 = unknown", + "type": "string", + "pattern": "^[3-9][0-9]$|^1[0-3][0-9]$|^140$|^888$|^999$" + }, + "fu_hrate": { + "title": "4. Subject resting heart rate (pulse)", + "description": "33-160; 888 = Not Assessed;999 = unknown", + "type": "string", + "pattern": "^3[3-9]$|^[4-9][0-9]$|^1[0-5][0-9]$|^160$|^888$|^999$" + } + } + + }, + "addi_obser": { + "title": "Additional physical observations", + + "type": "object", + "properties": { + "fu_vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_viscorr": { + "title": "6. Does the subject usually wear corrective lenses? (If no or unknown, SKIP TO QUESTION 7)", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)? (If no or unknown, END FORM HERE)", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "phys_measr.fu_height": { + "title": "1. Subject height (inches)" + }, + "phys_measr.fu_weight": { + "title": "2. Subject weight (lbs.)" + }, + "phys_measr.fu_bpsys": { + "title": "3a. Subject blood pressure at initial reading (sitting), systolic" + }, + "phys_measr.fu_bpdias": { + "title": "3b. Subject blood pressure at initial reading (sitting), diastolic" + }, + "phys_measr.fu_hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_obser.fu_vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_obser.fu_viscorr": { + "title": "6. Does the subject usually wear corrective lenses? (If no or unknown, SKIP TO QUESTION 7)" + }, + "addi_obser.fu_viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_obser.fu_hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_obser.fu_hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)? (If no or unknown, END FORM HERE)" + }, + "addi_obser.fu_hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "phys_measr.fu_height": { + "title": "1. Subject height (inches)" + }, + "phys_measr.fu_weight": { + "title": "2. Subject weight (lbs.)" + }, + "phys_measr.fu_bpsys": { + "title": "3a. Subject blood pressure at initial reading (sitting), systolic" + }, + "phys_measr.fu_bpdias": { + "title": "3b. Subject blood pressure at initial reading (sitting), diastolic" + }, + "phys_measr.fu_hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_obser.fu_vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_obser.fu_viscorr": { + "title": "6. Does the subject usually wear corrective lenses? (If no or unknown, SKIP TO QUESTION 7)" + }, + "addi_obser.fu_viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_obser.fu_hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_obser.fu_hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)? (If no or unknown, END FORM HERE)" + }, + "addi_obser.fu_hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "boost_values": { + "patient": 1.0, + "phys_measr.fu_height": 1.0, + "phys_measr.fu_weight": 1.0, + "phys_measr.fu_bpsys": 1.0, + "phys_measr.fu_bpdias": 1.0, + "phys_measr.fu_hrate": 1.0, + "addi_obser.fu_vision": 1.0, + "addi_obser.fu_viscorr": 1.0, + "addi_obser.fu_viswcorr": 1.0, + "addi_obser.fu_hearing": 1.0, + "addi_obser.fu_hearaid": 1.0, + "addi_obser.fu_hearwaid": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b1v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b1v2.json b/src/encoded/schemas/fvp_b1v2.json new file mode 100644 index 0000000000..7a5b17f7e9 --- /dev/null +++ b/src/encoded/schemas/fvp_b1v2.json @@ -0,0 +1,240 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B1: EVALUATION FORM - PHYSICAL\nINSTRUCTIONS", + "description": "This form is to be completed by the clinician. For additional clarification and examples, see UDSCoding Guidebook for Follow-up Visit Packet, Form B1. Link to NACC Coding Guidebook Check only one box perquestion.", + "id": "/profiles/fvp_b1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "phys_measr", + "addi_obser" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "phys_measr": { + "title": "Subject physical measurements", + + "type": "object", + "properties": { + "fu_height": { + "title": "1. Subject height (inches)", + "description": "((36.0-87.9; 99.9= unknown))", + "type": "string", + "pattern": "^(36.[0-9])$|^([3-7][0-9].[0-9])$|^(8[0-7].[0-9])$|^99.9$" + }, + "fu_weight": { + "title": "2. Subject weight (lbs.)", + "description": "((50-400; 999 = unknown))", + "type": "string", + "pattern": "^[5-9][0-9]$|^[1-3][0-9][0-9]$|^400$|^999$" + }, + "fu_bpsys": { + "title": "3a. Subject blood pressure at initial reading (sitting), systolic", + "description": "((70-230; 999 = unknown))", + "type": "string", + "pattern": "^[0-1][0-9][0-9]$|^[7-9][0-9]$|^2[0-2][0-9]$|^230$|^999$" + }, + "fu_bpdias": { + "title": "3b. Subject blood pressure at initial reading (sitting), diastolic", + "description": "((30-140; 999 = unknown))", + "type": "string", + "pattern": "^[3-9][0-9]$|^1[0-3][0-9]$|^140$|^999$" + }, + "fu_hrate": { + "title": "4. Subject resting heart rate (pulse)", + "description": "((33-160; 999 = unknown))", + "type": "string", + "pattern": "^3[3-9]$|^[4-9][0-9]$|^1[0-5][0-9]$|^160$|^999$" + } + } + + }, + "addi_obser": { + "title": "Additional physical observations", + + "type": "object", + "properties": { + "fu_vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_viscorr": { + "title": "6. Does the subject usually wear corrective lenses? (If no or unknown, SKIP TO QUESTION 7)", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)? (If no or unknown, END FORM HERE)", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "phys_measr.fu_height": { + "title": "1. Subject height (inches)" + }, + "phys_measr.fu_weight": { + "title": "2. Subject weight (lbs.)" + }, + "phys_measr.fu_bpsys": { + "title": "3a. Subject blood pressure at initial reading (sitting), systolic" + }, + "phys_measr.fu_bpdias": { + "title": "3b. Subject blood pressure at initial reading (sitting), diastolic" + }, + "phys_measr.fu_hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_obser.fu_vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_obser.fu_viscorr": { + "title": "6. Does the subject usually wear corrective lenses? (If no or unknown, SKIP TO QUESTION 7)" + }, + "addi_obser.fu_viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_obser.fu_hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_obser.fu_hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)? (If no or unknown, END FORM HERE)" + }, + "addi_obser.fu_hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "phys_measr.fu_height": { + "title": "1. Subject height (inches)" + }, + "phys_measr.fu_weight": { + "title": "2. Subject weight (lbs.)" + }, + "phys_measr.fu_bpsys": { + "title": "3a. Subject blood pressure at initial reading (sitting), systolic" + }, + "phys_measr.fu_bpdias": { + "title": "3b. Subject blood pressure at initial reading (sitting), diastolic" + }, + "phys_measr.fu_hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_obser.fu_vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_obser.fu_viscorr": { + "title": "6. Does the subject usually wear corrective lenses? (If no or unknown, SKIP TO QUESTION 7)" + }, + "addi_obser.fu_viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_obser.fu_hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_obser.fu_hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)? (If no or unknown, END FORM HERE)" + }, + "addi_obser.fu_hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "boost_values": { + "patient": 1.0, + "phys_measr.fu_height": 1.0, + "phys_measr.fu_weight": 1.0, + "phys_measr.fu_bpsys": 1.0, + "phys_measr.fu_bpdias": 1.0, + "phys_measr.fu_hrate": 1.0, + "addi_obser.fu_vision": 1.0, + "addi_obser.fu_viscorr": 1.0, + "addi_obser.fu_viswcorr": 1.0, + "addi_obser.fu_hearing": 1.0, + "addi_obser.fu_hearaid": 1.0, + "addi_obser.fu_hearwaid": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b1v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b1v3.json b/src/encoded/schemas/fvp_b1v3.json new file mode 100644 index 0000000000..f4fe56fda8 --- /dev/null +++ b/src/encoded/schemas/fvp_b1v3.json @@ -0,0 +1,240 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B1: EVALUATION FORM - PHYSICAL\nINSTRUCTIONS", + "description": "This form is to be completed by the clinician. For additional clarification and examples, see UDSCoding Guidebook for Follow-up Visit Packet, Form B1. Link to NACC Coding Guidebook Check only one box perquestion.", + "id": "/profiles/uds_fvp_b1v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "phys_measr", + "addi_obser" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "phys_measr": { + "title": "Subject physical measurements", + + "type": "object", + "properties": { + "fu_height": { + "title": "1. Subject height (inches)", + "description": "((36.0-87.9; 88.8 = Not Assessed))", + "type": "string", + "pattern": "^(36.[0-9])$|^([3-7][0-9].[0-9])$|^(8[0-7].[0-9])$|^88.8$" + }, + "fu_weight": { + "title": "2. Subject weight (lbs.)", + "description": "((50-400; 888 = Not Assessed))", + "type": "string", + "pattern": "^[5-9][0-9]$|^[1-3][0-9][0-9]$|^400$|^888$" + }, + "fu_bpsys": { + "title": "3a. Subject blood pressure at initial reading (sitting), systolic", + "description": "((70-230; 888 = Not Assessed))", + "type": "string", + "pattern": "^[0-1][0-9][0-9]$|^[7-9][0-9]$|^2[0-2][0-9]$|^230$|^888$" + }, + "fu_bpdias": { + "title": "3b. Subject blood pressure at initial reading (sitting), diastolic", + "description": "((30-140; 888 = Not Assessed))", + "type": "string", + "pattern": "^[3-9][0-9]$|^1[0-3][0-9]$|^140$|^888$" + }, + "fu_hrate": { + "title": "4. Subject resting heart rate (pulse)", + "description": "((33-160; 888 = Not Assessed))", + "type": "string", + "pattern": "^3[3-9]$|^[4-9][0-9]$|^1[0-5][0-9]$|^160$|^888$" + } + } + + }, + "addi_obser": { + "title": "Additional physical observations", + + "type": "object", + "properties": { + "fu_vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_viscorr": { + "title": "6. Does the subject usually wear corrective lenses? (If no or unknown, SKIP TO QUESTION 7)", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)? (If no or unknown, END FORM HERE)", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?", + + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "phys_measr.fu_height": { + "title": "1. Subject height (inches)" + }, + "phys_measr.fu_weight": { + "title": "2. Subject weight (lbs.)" + }, + "phys_measr.fu_bpsys": { + "title": "3a. Subject blood pressure at initial reading (sitting), systolic" + }, + "phys_measr.fu_bpdias": { + "title": "3b. Subject blood pressure at initial reading (sitting), diastolic" + }, + "phys_measr.fu_hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_obser.fu_vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_obser.fu_viscorr": { + "title": "6. Does the subject usually wear corrective lenses? (If no or unknown, SKIP TO QUESTION 7)" + }, + "addi_obser.fu_viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_obser.fu_hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_obser.fu_hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)? (If no or unknown, END FORM HERE)" + }, + "addi_obser.fu_hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "phys_measr.fu_height": { + "title": "1. Subject height (inches)" + }, + "phys_measr.fu_weight": { + "title": "2. Subject weight (lbs.)" + }, + "phys_measr.fu_bpsys": { + "title": "3a. Subject blood pressure at initial reading (sitting), systolic" + }, + "phys_measr.fu_bpdias": { + "title": "3b. Subject blood pressure at initial reading (sitting), diastolic" + }, + "phys_measr.fu_hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_obser.fu_vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_obser.fu_viscorr": { + "title": "6. Does the subject usually wear corrective lenses? (If no or unknown, SKIP TO QUESTION 7)" + }, + "addi_obser.fu_viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_obser.fu_hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_obser.fu_hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)? (If no or unknown, END FORM HERE)" + }, + "addi_obser.fu_hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "boost_values": { + "patient": 1.0, + "phys_measr.fu_height": 1.0, + "phys_measr.fu_weight": 1.0, + "phys_measr.fu_bpsys": 1.0, + "phys_measr.fu_bpdias": 1.0, + "phys_measr.fu_hrate": 1.0, + "addi_obser.fu_vision": 1.0, + "addi_obser.fu_viscorr": 1.0, + "addi_obser.fu_viswcorr": 1.0, + "addi_obser.fu_hearing": 1.0, + "addi_obser.fu_hearaid": 1.0, + "addi_obser.fu_hearwaid": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b1v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b2v1.json b/src/encoded/schemas/fvp_b2v1.json new file mode 100644 index 0000000000..70c4fb0677 --- /dev/null +++ b/src/encoded/schemas/fvp_b2v1.json @@ -0,0 +1,195 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet, Form B2: Evaluation Form – HIS and CVD", + "description": "NOTE: This form is to be completed by the clinician or other trained healthADC \nprofessional.For additional clarification and examples, see UDS Coding\nGuidebook for Initial Visit Packet, Form B2.\n", + "id": "/profiles/fvp_b2v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "hach_isch_score": { + "title": "HACHINSKI ISCHEMIC SCORE", + "description": "Please complete the following scale using information obtained from\nhistory/physical/neurological exam and/or medical records. Indicate if a\ncharacteristic is present or characteristic of the patient by circling the\nappropriate value.\n", + "type": "object", + "properties": { + "ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SOMATIC": { + "title": "3 Somatic complaints", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "EMOT": { + "title": "4 Emotional incontinence", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HXHYPER": { + "title": "5 History or presence of hypertension", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HXSTROKE": { + "title": "6 History of stroke", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "FOCLSYM": { + "title": "7 Focal neurological symptoms", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "FOCLSIGN": { + "title": "8 Focal neurological signs", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "HACHIN": { + "title": "9 Sum all circled answers for a total score", + "description": "0 – 12", + "type": "string" + } + } + } + + }, + "facets": { + "status": { + "title": "Status" + }, + "hach_isch_score.ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)" + }, + "hach_isch_score.STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)" + }, + "hach_isch_score.SOMATIC": { + "title": "3 Somatic complaints" + }, + "hach_isch_score.EMOT": { + "title": "4 Emotional incontinence" + }, + "hach_isch_score.HXHYPER": { + "title": "5 History or presence of hypertension" + }, + "hach_isch_score.HXSTROKE": { + "title": "6 History of stroke" + }, + "hach_isch_score.FOCLSYM": { + "title": "7 Focal neurological symptoms" + }, + "hach_isch_score.FOCLSIGN": { + "title": "8 Focal neurological signs" + }, + "hach_isch_score.HACHIN": { + "title": "9 Sum all circled answers for a total score" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "hach_isch_score.ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)" + }, + "hach_isch_score.STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)" + }, + "hach_isch_score.SOMATIC": { + "title": "3 Somatic complaints" + }, + "hach_isch_score.EMOT": { + "title": "4 Emotional incontinence" + }, + "hach_isch_score.HXHYPER": { + "title": "5 History or presence of hypertension" + }, + "hach_isch_score.HXSTROKE": { + "title": "6 History of stroke" + }, + "hach_isch_score.FOCLSYM": { + "title": "7 Focal neurological symptoms" + }, + "hach_isch_score.FOCLSIGN": { + "title": "8 Focal neurological signs" + }, + "hach_isch_score.HACHIN": { + "title": "9 Sum all circled answers for a total score" + } + + }, + "boost_values": { + "patient": 1.0, + "hach_isch_score.ABRUPT": 1.0, + "hach_isch_score.STEPWISE": 1.0, + "hach_isch_score.SOMATIC": 1.0, + "hach_isch_score.EMOT": 1.0, + "hach_isch_score.HXHYPER": 1.0, + "hach_isch_score.HXSTROKE": 1.0, + "hach_isch_score.FOCLSYM": 1.0, + "hach_isch_score.FOCLSIGN": 1.0, + "hach_isch_score.HACHIN": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b2v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b2v2.json b/src/encoded/schemas/fvp_b2v2.json new file mode 100644 index 0000000000..8cb110c11f --- /dev/null +++ b/src/encoded/schemas/fvp_b2v2.json @@ -0,0 +1,330 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet, Form B2: Evaluation Form – HIS and CVD", + "description": "NOTE: This form is to be completed by the clinician or other trained healthADC \nprofessional.For additional clarification and examples, see UDS Coding\nGuidebook for Initial Visit Packet, Form B2.\n", + "id": "/profiles/fvp_b2v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "hach_isch_score": { + "title": "HACHINSKI ISCHEMIC SCORE", + "description": "Please complete the following scale using information obtained from history/physical/neurological\nexam and/or medical records. Circle the appropriate value to indicate if a specific item is present\n(characteristic of the patient) or absent.\n\n", + "type": "object", + "properties": { + "ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SOMATIC": { + "title": "3 Somatic complaints", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "EMOT": { + "title": "4 Emotional incontinence", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HXHYPER": { + "title": "5 History or presence of hypertension", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HXSTROKE": { + "title": "6 History of stroke", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "FOCLSYM": { + "title": "7 Focal neurological symptoms", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "FOCLSIGN": { + "title": "8 Focal neurological signs", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "HACHIN": { + "title": "9 Sum all circled answers for a total score", + "description": "0 – 12", + "type": "string" + } + } + }, + "cere_dise": { + "title": "CEREBROVASCULAR DISEASE", + + "type": "object", + "properties": { + "CVDCOG": { + "title": "10 Using your best judgment, do you believe that cerebrovascular disease (CVD) is contributing to the cognitive impairment?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 N/A" + ] + }, + "STROKCOG": { + "title": "11 If there is a stroke, is there a temporal relationship between stroke and onset of cognitive impairment?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 N/A" + ] + }, + "CVDIMAG": { + "title": "12 Is there imaging evidence which supports that CVD is contributing to the cognitive impairment?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 N/A" + ] + }, + "if_yes": { + "title": "12a. If yes, indicate which imaging evidence was found:", + + "type": "object", + "properties": { + "CVDIMAG1": { + "title": "12A1 If yes, was there imaging evidence of single strategic infarct?", + "description": "Blank if #12, CVDIMAG ≠ 1 (Yes).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CVDIMAG2": { + "title": "12A2 If yes, was there imaging evidence of multiple infarcs?", + "description": "Blank if #12, CVDIMAG ≠ 1 (Yes).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CVDIMAG3": { + "title": "12A3 If yes, was there imaging evidence of extensive white matter hyperintensity?", + "description": "Blank if #12, CVDIMAG ≠ 1 (Yes).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CVDIMAG4": { + "title": "12A4 If yes, was there other imaging evidence?", + "description": "Blank if #12, CVDIMAG ≠ 1 (Yes).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CVDIMAGX": { + "title": "12A5 If yes, was there other imaging evidence - specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%). Blank if #12, CVDIMAG ≠ 1 (Yes) or #12A4, CVDIMAG4 =0 (No).", + "type": "string" + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "hach_isch_score.ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)" + }, + "hach_isch_score.STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)" + }, + "hach_isch_score.SOMATIC": { + "title": "3 Somatic complaints" + }, + "hach_isch_score.EMOT": { + "title": "4 Emotional incontinence" + }, + "hach_isch_score.HXHYPER": { + "title": "5 History or presence of hypertension" + }, + "hach_isch_score.HXSTROKE": { + "title": "6 History of stroke" + }, + "hach_isch_score.FOCLSYM": { + "title": "7 Focal neurological symptoms" + }, + "hach_isch_score.FOCLSIGN": { + "title": "8 Focal neurological signs" + }, + "hach_isch_score.HACHIN": { + "title": "9 Sum all circled answers for a total score" + }, + "cere_dise.CVDCOG": { + "title": "10 Using your best judgment, do you believe that cerebrovascular disease (CVD) is contributing to the cognitive impairment?" + }, + "cere_dise.STROKCOG": { + "title": "11 If there is a stroke, is there a temporal relationship between stroke and onset of cognitive impairment?" + }, + "cere_dise.CVDIMAG": { + "title": "12 Is there imaging evidence which supports that CVD is contributing to the cognitive impairment?" + }, + "cere_dise.if_yes.CVDIMAG1": { + "title": "12A1 If yes, was there imaging evidence of single strategic infarct?" + }, + "cere_dise.if_yes.CVDIMAG2": { + "title": "12A2 If yes, was there imaging evidence of multiple infarcs?" + }, + "cere_dise.if_yes.CVDIMAG3": { + "title": "12A3 If yes, was there imaging evidence of extensive white matter hyperintensity?" + }, + "cere_dise.if_yes.CVDIMAG4": { + "title": "12A4 If yes, was there other imaging evidence?" + }, + "cere_dise.if_yes.CVDIMAGX": { + "title": "12A5 If yes, was there other imaging evidence - specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "hach_isch_score.ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)" + }, + "hach_isch_score.STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)" + }, + "hach_isch_score.SOMATIC": { + "title": "3 Somatic complaints" + }, + "hach_isch_score.EMOT": { + "title": "4 Emotional incontinence" + }, + "hach_isch_score.HXHYPER": { + "title": "5 History or presence of hypertension" + }, + "hach_isch_score.HXSTROKE": { + "title": "6 History of stroke" + }, + "hach_isch_score.FOCLSYM": { + "title": "7 Focal neurological symptoms" + }, + "hach_isch_score.FOCLSIGN": { + "title": "8 Focal neurological signs" + }, + "hach_isch_score.HACHIN": { + "title": "9 Sum all circled answers for a total score" + }, + "cere_dise.CVDCOG": { + "title": "10 Using your best judgment, do you believe that cerebrovascular disease (CVD) is contributing to the cognitive impairment?" + }, + "cere_dise.STROKCOG": { + "title": "11 If there is a stroke, is there a temporal relationship between stroke and onset of cognitive impairment?" + }, + "cere_dise.CVDIMAG": { + "title": "12 Is there imaging evidence which supports that CVD is contributing to the cognitive impairment?" + }, + "cere_dise.if_yes.CVDIMAG1": { + "title": "12A1 If yes, was there imaging evidence of single strategic infarct?" + }, + "cere_dise.if_yes.CVDIMAG2": { + "title": "12A2 If yes, was there imaging evidence of multiple infarcs?" + }, + "cere_dise.if_yes.CVDIMAG3": { + "title": "12A3 If yes, was there imaging evidence of extensive white matter hyperintensity?" + }, + "cere_dise.if_yes.CVDIMAG4": { + "title": "12A4 If yes, was there other imaging evidence?" + }, + "cere_dise.if_yes.CVDIMAGX": { + "title": "12A5 If yes, was there other imaging evidence - specify" + } + }, + "boost_values": { + "patient": 1.0, + "hach_isch_score.ABRUPT": 1.0, + "hach_isch_score.STEPWISE": 1.0, + "hach_isch_score.SOMATIC": 1.0, + "hach_isch_score.EMOT": 1.0, + "hach_isch_score.HXHYPER": 1.0, + "hach_isch_score.HXSTROKE": 1.0, + "hach_isch_score.FOCLSYM": 1.0, + "hach_isch_score.FOCLSIGN": 1.0, + "hach_isch_score.HACHIN": 1.0, + "cere_dise.CVDCOG": 1.0, + "cere_dise.STROKCOG": 1.0, + "cere_dise.CVDIMAG": 1.0, + "cere_dise.if_yes.CVDIMAG1": 1.0, + "cere_dise.if_yes.CVDIMAG2": 1.0, + "cere_dise.if_yes.CVDIMAG3": 1.0, + "cere_dise.if_yes.CVDIMAG4": 1.0, + "cere_dise.if_yes.CVDIMAGX": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b2v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b3v1.json b/src/encoded/schemas/fvp_b3v1.json new file mode 100644 index 0000000000..0cf88a3c2f --- /dev/null +++ b/src/encoded/schemas/fvp_b3v1.json @@ -0,0 +1,776 @@ +{ + "title": "NACC Uniform Data Set (UDS) –FOLLOW-UP Visit Packet\nForm B3: Evaluation Form –\nUnified Parkinson’s Disease Rating Scale (UPDRS1) – Motor Exam\n", + "description": "NOTE: This form is to be completed by the clinician.For additional \nclarification and examples, see UDS Coding Guidebook pages 26–31.\nCheck only one box per question.\n", + "id": "/profiles/fvp_b3v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "pdnormal" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "pdnormal": { + "title": "If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here", + "type": "boolean" + }, + "speech": { + "title": "1. Speech", + "type": "string", + "enum": [ + "0 Normal", + "1 Slight loss of expression, diction and/or volume", + "2 Monotone, slurred but understandable; moderately impaired", + "3 Marked impairment, difficult to understand", + "4 Unintelligible" + ] + }, + + "face_exp": { + "title": "2. Facial expression", + "type": "string", + "enum": [ + "0 Normal", + "1 Minimal hypomimia, could be normal \"poker face\"", + "2 Slight but definitely abnormal diminution of facial expression", + "3 Moderate hypomimia; lips parted some of the time", + "4 Masked or fixed facies with severe or complete loss of facial expression; lips parted ¼ inches or more" + ] + }, + + "trem_at_rest": { + "title": "3. Tremor at rest", + "type": "object", + "properties": { + "fac_lip_chin": { + "title": "3a. Face, lips, chin", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time" + ] + }, + "r_hand": { + "title": "3b. Right hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time" + ] + }, + "l_hand": { + "title": "3c. Left hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time" + ] + }, + "r_foot": { + "title": "3d. Right foot", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time" + ] + }, + "l_foot": { + "title": "3e. Left foot", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time" + ] + } + + } + }, + "action_trem_hands": { + "title": "4. Action or postural tremor of hands", + "type": "object", + "properties": { + "act_r_hand": { + "title": "4a. Right hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight; present with action", + "2 Moderate in amplitude, present with action", + "3 Moderate in amplitude with posture holding as well as action", + "4 Marked in amplitude; interferes with feeding" + ] + }, + "act_l_hand": { + "title": "4b. Left hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight; present with action", + "2 Moderate in amplitude, present with action", + "3 Moderate in amplitude with posture holding as well as action", + "4 Marked in amplitude; interferes with feeding" + ] + } + + } + }, + "rigidity": { + "title": "5. Rigidity\n(judged on passive movement of major joints with patient relaxed in sitting position; cogwheeling to be ignored)", + "type": "object", + "properties": { + "rig_neck": { + "title": "5a. Neck", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty" + ] + }, + "r_up": { + "title": "5b. Right upper extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty" + ] + }, + "l_up": { + "title": "5c. Left upper extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty" + ] + }, + "r_low": { + "title": "5d. Right lower extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty" + ] + }, + "l_low": { + "title": "5e. Left lower extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty" + ] + } + + } + }, + "finger_taps": { + "title": "6. Finger taps\n(patient taps thumb with index finger in rapid succession)", + "type": "object", + "properties": { + "taps_r": { + "title": "6a. Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "taps_r_untest": { + "title": "6a1. Right hand\nSpecify reason", + "type": "string" + }, + "taps_l": { + "title": "6b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "taps_l_untest": { + "title": "6b1. Left hand\nSpecify reason", + "type": "string" + } + } + }, + "hand_move": { + "title": "7. Hand movements\n(patient opens and closes hands in rapid succession)", + "type": "object", + "properties": { + "movem_r": { + "title": "7a, Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "movem_r_untest": { + "title": "7a1. Right hand\nSpecify reason", + "type": "string" + }, + "movem_l": { + "title": "7b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "movem_l_untest": { + "title": "7b1. Left hand\nSpecify reason", + "type": "string" + } + } + }, + "move_of_hands": { + "title": "8. Rapid alternating movements of hands\n(pronation-supination movements of hands, vertically and horizontally, with as large an amplitude as possible, both hands simultaneously)", + "type": "object", + "properties": { + "rap_alt_r": { + "title": "8a. Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, "rap_alt_r_untest": { + "title": "8a1. Right hand\nSpecify reason", + "type": "string" + }, + "rap_alt_l": { + "title": "8b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "rap_alt_l_untest": { + "title": "8b1. Left hand\nSpecify reason", + "type": "string" + } + } + }, + "leg_agil": { + "title": "9. Leg agility\n(patient taps heel on the ground in rapid succession, picking up entire leg; amplitude should be at least 3 inches)", + "type": "object", + "properties": { + "leg_agil_r": { + "title": "9a. Right leg", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "leg_agil_r_untest": { + "title": "9a1. Right leg\nSpecify reason", + "type": "string" + }, + "leg_agil_l": { + "title": "9b. Left leg", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "leg_agil_l_untest": { + "title": "9b1. Left leg\nSpecify reason", + "type": "string" + } + } + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)", + "type": "string", + "enum": [ + "0 Normal", + "1 Slow; or may need more than one attempt", + "2 Pushes self up from arms of seat", + "3 Tends to fall back and may have to try more than one time, but can get up without help", + "4 Unable to arise without help.", + "8 Untestable" + ] + }, + "arise_chair_untest": { + "title": "10a. Specify reason", + "type": "string" + }, + "posture": { + "title": "11. Posture", + "type": "string", + "enum": [ + "0 Normal", + "1 Not quite erect, slightly stooped posture; could be normal for older person", + "2 Moderately stooped posture, definitely abnormal; can be slightly leaning to one side", + "3 Severely stooped posture with kyphosis; can be moderately leaning to one side", + "4 Marked flexion with extreme abnormality of posture", + "8 Untestable" + ] + }, + "posture_untest": { + "title": "11a. Specify reason", + "type": "string" + }, + "gait": { + "title": "12. Gait", + "type": "string", + "enum": [ + "0 Normal", + "1 Walks slowly; may shuffle with short steps, but no festination (hastening steps) or propulsion", + "2 Walks with difficulty, but requires little or no assistance; may have some festination, short steps, or propulsion", + "3 Severe disturbance of gait requiring assistance", + "4 Cannot walk at all, even with assistance.", + "8 Untestable" + ] + }, + "gait_untest": { + "title": "12a. Specify reason", + "type": "string" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)", + "type": "string", + "enum": [ + "0 Normal erect", + "1 Retropulsion, but recovers unaided", + "2 Absence of postural response; would fall if not caught by examiner", + "3 Very unstable, tends to lose balance spontaneously", + "4 Unable to stand without assistance", + "8 Untestable" + ] + }, + "post_stab_untest": { + "title": "13a. Specify reason", + "type": "string" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)", + "type": "string", + "enum": [ + "0 None", + "1 Minimal slowness, giving movement a deliberate character; could be normal for some persons; possibly reduced amplitude", + "2 Mild degree of slowness and poverty of movement which is definitely abnormal. Alternatively, some reduced amplitude", + "3 Moderate slowness, poverty or small amplitude of movement", + "4 Marked slowness, poverty or small amplitude of movement" + ] + }, + "bradykin_untest": { + "title": "14a. Specify reason", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here" + }, + "speech": { + "title": "1. Speech" + }, + + "face_exp": { + "title": "2. Facial expression" + }, + + "trem_at_rest.fac_lip_chin": { + "title": "3a. Face, lips, chin" + }, + "trem_at_rest.r_hand": { + "title": "3b. Right hand" + }, + "trem_at_rest.l_hand": { + "title": "3c. Left hand" + }, + "trem_at_rest.r_foot": { + "title": "3d. Right foot" + }, + "trem_at_rest.l_foot": { + "title": "3e. Left foot" + }, + + "action_trem_hands.act_r_hand": { + "title": "4a. Right hand" + }, + "action_trem_hands.act_l_hand": { + "title": "4b. Left hand" + }, + + "rigidity.rig_neck": { + "title": "5a. Neck" + }, + "rigidity.r_up": { + "title": "5b. Right upper extremity" + }, + "rigidity.l_up": { + "title": "5c. Left upper extremity" + }, + "rigidity.r_low": { + "title": "5d. Right lower extremity" + }, + "rigidity.l_low": { + "title": "5e. Left lower extremity" + }, + + "finger_taps.taps_r": { + "title": "6a. Right hand" + }, + "finger_taps.taps_r_untest": { + "title": "6a1. Right hand\nSpecify reason" + }, + "finger_taps.taps_l": { + "title": "6b. Left hand" + }, + + "finger_taps.taps_l_untest": { + "title": "6b1. Left hand\nSpecify reason" + }, + "hand_move.movem_r": { + "title": "7a. Right hand" + }, + "hand_move.movem_r_untest": { + "title": "7a1. Right hand\nSpecify reason" + }, + "hand_move.movem_l": { + "title": "7b. Left hand" + }, + + "hand_move.movem_l_untest": { + "title": "7b1. Left hand\nSpecify reason" + }, + "move_of_hands.rap_alt_r": { + "title": "8a. Right hand" + }, + "move_of_hands.rap_alt_r_untest": { + "title": "8a1. Right hand\nSpecify reason" + }, + "move_of_hands.rap_alt_l": { + "title": "8b. Left hand" + }, + + "move_of_hands.rap_alt_l_untest": { + "title": "8b1. Left hand\nSpecify reason" + }, + "leg_agil.leg_agil_r": { + "title": "9a. Right leg" + }, + "leg_agil.leg_agil_r_untest": { + "title": "9a1. Right leg\nSpecify reason" + }, + "leg_agil.leg_agil_l": { + "title": "9b. Left leg" + }, + + "leg_agil.leg_agil_l_untest": { + "title": "9b1. Left leg\nSpecify reason" + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)" + }, + "arise_chair_untest": { + "title": "10a.Specify reason" + }, + "posture": { + "title": "11. Posture" + }, + "posture_untest": { + "title": "11a. Specify reason" + }, + "gait": { + "title": "12. Gait" + }, + "gait_untest": { + "title": "12a. Specify reason" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)" + }, + "post_stab_untest": { + "title": "13a. Specify reason" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)" + }, + "bradykin_untest": { + "title": "14a. Specify reason" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here" + }, + "speech": { + "title": "1. Speech" + }, + + "face_exp": { + "title": "2. Facial expression" + }, + + "trem_at_rest.fac_lip_chin": { + "title": "3a. Face, lips, chin" + }, + "trem_at_rest.r_hand": { + "title": "3b. Right hand" + }, + "trem_at_rest.l_hand": { + "title": "3c. Left hand" + }, + "trem_at_rest.r_foot": { + "title": "3d. Right foot" + }, + "trem_at_rest.l_foot": { + "title": "3e. Left foot" + }, + + "action_trem_hands.act_r_hand": { + "title": "4a. Right hand" + }, + "action_trem_hands.act_l_hand": { + "title": "4b. Left hand" + }, + + "rigidity.rig_neck": { + "title": "5a. Neck" + }, + "rigidity.r_up": { + "title": "5b. Right upper extremity" + }, + "rigidity.l_up": { + "title": "5c. Left upper extremity" + }, + "rigidity.r_low": { + "title": "5d. Right lower extremity" + }, + "rigidity.l_low": { + "title": "5e. Left lower extremity" + }, + + "finger_taps.taps_r": { + "title": "6a. Right hand" + }, + "finger_taps.taps_r_untest": { + "title": "6a1. Right hand\nSpecify reason" + }, + "finger_taps.taps_l": { + "title": "6b. Left hand" + }, + + "finger_taps.taps_l_untest": { + "title": "6b1. Left hand\nSpecify reason" + }, + "hand_move.movem_r": { + "title": "7a. Right hand" + }, + "hand_move.movem_r_untest": { + "title": "7a1. Right hand\nSpecify reason" + }, + "hand_move.movem_l": { + "title": "7b. Left hand" + }, + + "hand_move.movem_l_untest": { + "title": "7b1. Left hand\nSpecify reason" + }, + "move_of_hands.rap_alt_r": { + "title": "8a. Right hand" + }, + "move_of_hands.rap_alt_r_untest": { + "title": "8a1. Right hand\nSpecify reason" + }, + "move_of_hands.rap_alt_l": { + "title": "8b. Left hand" + }, + + "move_of_hands.rap_alt_l_untest": { + "title": "8b1. Left hand\nSpecify reason" + }, + "leg_agil.leg_agil_r": { + "title": "9a. Right leg" + }, + "leg_agil.leg_agil_r_untest": { + "title": "9a1. Right leg\nSpecify reason" + }, + "leg_agil.leg_agil_l": { + "title": "9b. Left leg" + }, + + "leg_agil.leg_agil_l_untest": { + "title": "9b1. Left leg\nSpecify reason" + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)" + }, + "arise_chair_untest": { + "title": "10a.Specify reason" + }, + "posture": { + "title": "11. Posture" + }, + "posture_untest": { + "title": "11a. Specify reason" + }, + "gait": { + "title": "12. Gait" + }, + "gait_untest": { + "title": "12a. Specify reason" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)" + }, + "post_stab_untest": { + "title": "13a. Specify reason" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)" + }, + "bradykin_untest": { + "title": "14a. Specify reason" + } + }, + "boost_values": { + "patient": 1.0, + "pdnormal": 1.0, + "speech": 1.0, + "face_exp": 1.0, + "trem_at_rest.fac_lip_chin": 1.0, + "trem_at_rest.r_hand": 1.0, + "trem_at_rest.l_hand": 1.0, + "trem_at_rest.r_foot": 1.0, + "trem_at_rest.l_foot": 1.0, + "action_trem_hands.act_r_hand": 1.0, + "action_trem_hands.act_l_hand": 1.0, + "rigidity.rig_neck": 1.0, + "rigidity.r_up": 1.0, + "rigidity.l_up": 1.0, + "rigidity.r_low": 1.0, + "rigidity.l_low": 1.0, + "finger_taps.taps_r": 1.0, + "finger_taps.taps_r_untest": 1.0, + "finger_taps.taps_l": 1.0, + "finger_taps.taps_l_untest": 1.0, + "hand_move.movem_r": 1.0, + "hand_move.movem_r_untest": 1.0, + "hand_move.movem_l": 1.0, + "hand_move.movem_l_untest": 1.0, + "move_of_hands.rap_alt_r": 1.0, + "move_of_hands.rap_alt_r_untest": 1.0, + "move_of_hands.rap_alt_l": 1.0, + "move_of_hands.rap_alt_l_untest": 1.0, + "leg_agil.leg_agil_r": 1.0, + "leg_agil.leg_agil_r_untest": 1.0, + "leg_agil.leg_agil_l": 1.0, + "leg_agil.leg_agil_l_untest": 1.0, + "arise_chair": 1.0, + "arise_chair_untest": 1.0, + "posture": 1.0, + "posture_untest": 1.0, + "gait": 1.0, + "gait_untest": 1.0, + "post_stab": 1.0, + "post_stab_untest": 1.0, + "bradykin": 1.0, + "bradykin_untest": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b3v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b3v2.json b/src/encoded/schemas/fvp_b3v2.json new file mode 100644 index 0000000000..6e031a1b3d --- /dev/null +++ b/src/encoded/schemas/fvp_b3v2.json @@ -0,0 +1,930 @@ +{ + "title": "ADC Form B3.1 Unified Parkinson's Disease Rating Scale (UPDRS)-Motor Exam*", + "description": "NOTE: This form is to be completed by the clinician or other trained health professional. For additional clarification and examples, see UDS Coding Guidebook Version 2. Check only ONE box per question. *Fahn S, Elton RL, UPDRS Development Committee. The Unified Parkinson's Disease Rating Scale. In Fahn S,Marsden CD, Caine DB, Goldstein M, eds. Recent developments in Parkinson's disease, Vol. 2. Florham Park, NJ: Macmillan Healthcare Infonnation,1987:153-163,293-304. Reproduced by permission of the author.", + "id": "/profiles/fvp_b3v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "pdnormal" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "pdnormal": { + "title": "[Optional] If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here", + "type": "boolean" + }, + "speech": { + "title": "1. Speech", + "type": "string", + "enum": [ + "0 Normal", + "1 Slight loss of expression, diction and/or volume", + "2 Monotone, slurred but understandable; moderately impaired", + "3 Marked impairment, difficult to understand", + "4 Unintelligible", + "8 Untestable" + ] + }, + "speech_untest": { + "title": "Specify reason", + "type": "string" + }, + "face_exp": { + "title": "2. Facial expression", + "type": "string", + "enum": [ + "0 Normal", + "1 Minimal hypomimia, could be normal \"poker face\"", + "2 Slight but definitely abnormal diminution of facial expression", + "3 Moderate hypomimia; lips parted some of the time", + "4 Masked or fixed facies with severe or complete loss of facial expression; lips parted ¼ inches or more", + "8 Untestable" + ] + }, + "face_exp_untest": { + "title": "Specify reason", + "type": "string" + }, + "trem_at_rest": { + "title": "3. Tremor at rest", + "type": "object", + "properties": { + "fac_lip_chin": { + "title": "3a. Face, lips, chin", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "fac_lip_chin_untest": { + "title": "Face, lips, chin\nSpecify reason", + "type": "string" + }, + "r_hand": { + "title": "3b. Right hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "r_hand_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "l_hand": { + "title": "3c. Left hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "l_hand_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + }, + "r_foot": { + "title": "3d. Right foot", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "r_foot_untest": { + "title": "Right foot\nSpecify reason", + "type": "string" + }, + "l_foot": { + "title": "3e. Left foot", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + + "l_foot_untest": { + "title": "Left foot\nSpecify reason", + "type": "string" + } + } + }, + "action_trem_hands": { + "title": "4. Action or postural tremor of hands", + "type": "object", + "properties": { + "act_r_hand": { + "title": "4a. Right hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight; present with action", + "2 Moderate in amplitude, present with action", + "3 Moderate in amplitude with posture holding as well as action", + "4 Marked in amplitude; interferes with feeding", + "8 Untestable" + ] + }, + "act_r_hand_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "act_l_hand": { + "title": "4b. Left hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight; present with action", + "2 Moderate in amplitude, present with action", + "3 Moderate in amplitude with posture holding as well as action", + "4 Marked in amplitude; interferes with feeding", + "8 Untestable" + ] + }, + + "act_l_hand_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "rigidity": { + "title": "5. Rigidity\n(judged on passive movement of major joints with patient relaxed in sitting position; cogwheeling to be ignored)", + "type": "object", + "properties": { + "rig_neck": { + "title": "5a. Neck", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "rig_neck_untest": { + "title": "Neck\nSpecify reason", + "type": "string" + }, + "r_up": { + "title": "5b. Right upper extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "r_up_untest": { + "title": "Right upper extremity\nSpecify reason", + "type": "string" + }, + "l_up": { + "title": "5c. Left upper extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "l_up_untest": { + "title": "Left upper extremity\nSpecify reason", + "type": "string" + }, + "r_low": { + "title": "5d. Right lower extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "r_low_untest": { + "title": "Right lower extremity\nSpecify reason", + "type": "string" + }, + "l_low": { + "title": "5e. Left lower extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + + + "l_low_untest": { + "title": "Left lower extremity\nSpecify reason", + "type": "string" + } + } + }, + "finger_taps": { + "title": "6. Finger taps\n(patient taps thumb with index finger in rapid succession)", + "type": "object", + "properties": { + "taps_r": { + "title": "6a. Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "taps_r_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "taps_l": { + "title": "6b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "taps_l_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "hand_move": { + "title": "7. Hand movements\n(patient opens and closes hands in rapid succession)", + "type": "object", + "properties": { + "movem_r": { + "title": "7a, Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "movem_r_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "movem_l": { + "title": "7b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "movem_l_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "move_of_hands": { + "title": "8. Rapid alternating movements of hands\n(pronation-supination movements of hands, vertically and horizontally, with as large an amplitude as possible, both hands simultaneously)", + "type": "object", + "properties": { + "rap_alt_r": { + "title": "8a. Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "rap_alt_r_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "rap_alt_l": { + "title": "8b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "rap_alt_l_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "leg_agil": { + "title": "9. Leg agility\n(patient taps heel on the ground in rapid succession, picking up entire leg; amplitude should be at least 3 inches)", + "type": "object", + "properties": { + "leg_agil_r": { + "title": "9a. Right leg", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "leg_agil_r_untest": { + "title": "Right leg\nSpecify reason", + "type": "string" + }, + "leg_agil_l": { + "title": "9b. Left leg", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "leg_agil_l_untest": { + "title": "Left leg\nSpecify reason", + "type": "string" + } + } + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)", + "type": "string", + "enum": [ + "0 Normal", + "1 Slow; or may need more than one attempt", + "2 Pushes self up from arms of seat", + "3 Tends to fall back and may have to try more than one time, but can get up without help", + "4 Unable to arise without help.", + "8 Untestable" + ] + }, + "arise_chair_untest": { + "title": "Specify reason", + "type": "string" + }, + "posture": { + "title": "11. Posture", + "type": "string", + "enum": [ + "0 Normal", + "1 Not quite erect, slightly stooped posture; could be normal for older person", + "2 Moderately stooped posture, definitely abnormal; can be slightly leaning to one side", + "3 Severely stooped posture with kyphosis; can be moderately leaning to one side", + "4 Marked flexion with extreme abnormality of posture", + "8 Untestable" + ] + }, + "posture_untest": { + "title": "Specify reason", + "type": "string" + }, + "gait": { + "title": "12. Gait", + "type": "string", + "enum": [ + "0 Normal", + "1 Walks slowly; may shuffle with short steps, but no festination (hastening steps) or propulsion", + "2 Walks with difficulty, but requires little or no assistance; may have some festination, short steps, or propulsion", + "3 Severe disturbance of gait requiring assistance", + "4 Cannot walk at all, even with assistance.", + "8 Untestable" + ] + }, + "gait_untest": { + "title": "Specify reason", + "type": "string" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)", + "type": "string", + "enum": [ + "0 Normal erect", + "1 Retropulsion, but recovers unaided", + "2 Absence of postural response; would fall if not caught by examiner", + "3 Very unstable, tends to lose balance spontaneously", + "4 Unable to stand without assistance", + "8 Untestable" + ] + }, + "post_stab_untest": { + "title": "Specify reason", + "type": "string" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)", + "type": "string", + "enum": [ + "0 None", + "1 Minimal slowness, giving movement a deliberate character; could be normal for some persons; possibly reduced amplitude", + "2 Mild degree of slowness and poverty of movement which is definitely abnormal. Alternatively, some reduced amplitude", + "3 Moderate slowness, poverty or small amplitude of movement", + "4 Marked slowness, poverty or small amplitude of movement", + "8 Untestable" + ] + }, + "bradykin_untest": { + "title": "Specify reason", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here" + }, + "speech": { + "title": "1. Speech" + }, + "speech_untest": { + "title": "Specify reason" + }, + "face_exp": { + "title": "2. Facial expression" + }, + "face_exp_untest": { + "title": "Specify reason" + }, + "trem_at_rest.fac_lip_chin": { + "title": "3a. Face, lips, chin" + }, + "trem_at_rest.fac_lip_chin_untest": { + "title": "Face, lips, chin\nSpecify reason" + }, + "trem_at_rest.r_hand": { + "title": "3b. Right hand" + }, + "trem_at_rest.r_hand_untest": { + "title": "trem_at_rest.right hand\nSpecify reason" + }, + "trem_at_rest.l_hand": { + "title": "3c. Left hand" + }, + "trem_at_rest.l_hand_untest": { + "title": "trem_at_rest.left hand\nSpecify reason" + }, + "trem_at_rest.r_foot": { + "title": "3d. Right foot" + }, + "trem_at_rest.r_foot_untest": { + "title": "trem_at_rest.right foot\nSpecify reason" + }, + "trem_at_rest.l_foot": { + "title": "3e. Left foot" + }, + "trem_at_rest.l_foot_untest": { + "title": "trem_at_rest.left foot\nSpecify reason" + }, + "action_trem_hands.act_r_hand": { + "title": "4a. Right hand" + }, + "action_trem_hands.act_r_hand_untest": { + "title": "Right hand\nSpecify reason" + }, + "action_trem_hands.act_l_hand": { + "title": "4b. Left hand" + }, + "action_trem_hands.act_l_hand_untest": { + "title": "Left hand\nSpecify reason" + }, + "rigidity.rig_neck": { + "title": "5a. Neck" + }, + "rigidity.rig_neck_untest": { + "title": "Neck\nSpecify reason" + }, + "rigidity.r_up": { + "title": "5b. Right upper extremity" + }, + "rigidity.r_up_untest": { + "title": "rigidity.right upper extremity\nSpecify reason" + }, + "rigidity.l_up": { + "title": "5c. Left upper extremity" + }, + "rigidity.l_up_untest": { + "title": "rigidity.left upper extremity\nSpecify reason" + }, + "rigidity.r_low": { + "title": "5d. Right lower extremity" + }, + "rigidity.r_low_untest": { + "title": "rigidity.right lower extremity\nSpecify reason" + }, + "rigidity.l_low": { + "title": "5e. Left lower extremity" + }, + "rigidity.l_low_untest": { + "title": "rigidity.left lower extremity\nSpecify reason" + }, + "finger_taps.taps_r": { + "title": "6a. Right hand" + }, + "finger_taps.taps_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "finger_taps.taps_l": { + "title": "6b. Left hand" + }, + "finger_taps.taps_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "hand_move.movem_r": { + "title": "7a, Right hand" + }, + "hand_move.movem_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "hand_move.movem_l": { + "title": "7b. Left hand" + }, + "hand_move.movem_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "move_of_hands.rap_alt_r": { + "title": "8a. Right hand" + }, + "move_of_hands.rap_alt_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "move_of_hands.rap_alt_l": { + "title": "8b. Left hand" + }, + "move_of_hands.rap_alt_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "leg_agil.leg_agil_r": { + "title": "9a. Right leg" + }, + "leg_agil.leg_agil_r_untest": { + "title": "Right leg\nSpecify reason" + }, + "leg_agil.leg_agil_l": { + "title": "9b. Left leg" + }, + "leg_agil.leg_agil_l_untest": { + "title": "Left leg\nSpecify reason" + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)" + }, + "arise_chair_untest": { + "title": "Specify reason" + }, + "posture": { + "title": "11. Posture" + }, + "posture_untest": { + "title": "Specify reason" + }, + "gait": { + "title": "12. Gait" + }, + "gait_untest": { + "title": "Specify reason" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)" + }, + "post_stab_untest": { + "title": "Specify reason" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)" + }, + "bradykin_untest": { + "title": "Specify reason" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here" + }, + "speech": { + "title": "1. Speech" + }, + "speech_untest": { + "title": "Specify reason" + }, + "face_exp": { + "title": "2. Facial expression" + }, + "face_exp_untest": { + "title": "Specify reason" + }, + "trem_at_rest.fac_lip_chin": { + "title": "3a. Face, lips, chin" + }, + "trem_at_rest.fac_lip_chin_untest": { + "title": "Face, lips, chin\nSpecify reason" + }, + "trem_at_rest.r_hand": { + "title": "3b. Right hand" + }, + "trem_at_rest.r_hand_untest": { + "title": "trem_at_rest.right hand\nSpecify reason" + }, + "trem_at_rest.l_hand": { + "title": "3c. Left hand" + }, + "trem_at_rest.l_hand_untest": { + "title": "trem_at_rest.left hand\nSpecify reason" + }, + "trem_at_rest.r_foot": { + "title": "3d. Right foot" + }, + "trem_at_rest.r_foot_untest": { + "title": "trem_at_rest.right foot\nSpecify reason" + }, + "trem_at_rest.l_foot": { + "title": "3e. Left foot" + }, + "trem_at_rest.l_foot_untest": { + "title": "trem_at_rest.left foot\nSpecify reason" + }, + "action_trem_hands.act_r_hand": { + "title": "4a. Right hand" + }, + "action_trem_hands.act_r_hand_untest": { + "title": "Right hand\nSpecify reason" + }, + "action_trem_hands.act_l_hand": { + "title": "4b. Left hand" + }, + "action_trem_hands.act_l_hand_untest": { + "title": "Left hand\nSpecify reason" + }, + "rigidity.rig_neck": { + "title": "5a. Neck" + }, + "rigidity.rig_neck_untest": { + "title": "Neck\nSpecify reason" + }, + "rigidity.r_up": { + "title": "5b. Right upper extremity" + }, + "rigidity.r_up_untest": { + "title": "rigidity.right upper extremity\nSpecify reason" + }, + "rigidity.l_up": { + "title": "5c. Left upper extremity" + }, + "rigidity.l_up_untest": { + "title": "rigidity.left upper extremity\nSpecify reason" + }, + "rigidity.r_low": { + "title": "5d. Right lower extremity" + }, + "rigidity.r_low_untest": { + "title": "rigidity.right lower extremity\nSpecify reason" + }, + "rigidity.l_low": { + "title": "5e. Left lower extremity" + }, + "rigidity.l_low_untest": { + "title": "rigidity.left lower extremity\nSpecify reason" + }, + "finger_taps.taps_r": { + "title": "6a. Right hand" + }, + "finger_taps.taps_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "finger_taps.taps_l": { + "title": "6b. Left hand" + }, + "finger_taps.taps_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "hand_move.movem_r": { + "title": "7a, Right hand" + }, + "hand_move.movem_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "hand_move.movem_l": { + "title": "7b. Left hand" + }, + "hand_move.movem_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "move_of_hands.rap_alt_r": { + "title": "8a. Right hand" + }, + "move_of_hands.rap_alt_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "move_of_hands.rap_alt_l": { + "title": "8b. Left hand" + }, + "move_of_hands.rap_alt_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "leg_agil.leg_agil_r": { + "title": "9a. Right leg" + }, + "leg_agil.leg_agil_r_untest": { + "title": "Right leg\nSpecify reason" + }, + "leg_agil.leg_agil_l": { + "title": "9b. Left leg" + }, + "leg_agil.leg_agil_l_untest": { + "title": "Left leg\nSpecify reason" + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)" + }, + "arise_chair_untest": { + "title": "Specify reason" + }, + "posture": { + "title": "11. Posture" + }, + "posture_untest": { + "title": "Specify reason" + }, + "gait": { + "title": "12. Gait" + }, + "gait_untest": { + "title": "Specify reason" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)" + }, + "post_stab_untest": { + "title": "Specify reason" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)" + }, + "bradykin_untest": { + "title": "Specify reason" + } + }, + + "boost_values": { + "patient": 1.0, + "status": 1.0, + "pdnormal": 1.0, + "speech": 1.0, + "speech_untest": 1.0, + "face_exp": 1.0, + "face_exp_untest": 1.0, + "trem_at_rest.fac_lip_chin": 1.0, + "trem_at_rest.fac_lip_chin_untest": 1.0, + "trem_at_rest.r_hand": 1.0, + "trem_at_rest.r_hand_untest": 1.0, + "trem_at_rest.l_hand": 1.0, + "trem_at_rest.l_hand_untest": 1.0, + "trem_at_rest.r_foot": 1.0, + "trem_at_rest.r_foot_untest": 1.0, + "trem_at_rest.l_foot": 1.0, + "trem_at_rest.l_foot_untest": 1.0, + "action_trem_hands.act_r_hand": 1.0, + "action_trem_hands.act_r_hand_untest": 1.0, + "action_trem_hands.act_l_hand": 1.0, + "action_trem_hands.act_l_hand_untest": 1.0, + "rigidity.rig_neck": 1.0, + "rigidity.rig_neck_untest": 1.0, + "rigidity.r_up": 1.0, + "rigidity.r_up_untest": 1.0, + "rigidity.l_up": 1.0, + "rigidity.l_up_untest": 1.0, + "rigidity.r_low": 1.0, + "rigidity.r_low_untest": 1.0, + "rigidity.l_low": 1.0, + "rigidity.l_low_untest": 1.0, + "finger_taps.taps_r": 1.0, + "finger_taps.taps_r_untest": 1.0, + "finger_taps.taps_l": 1.0, + "finger_taps.taps_l_untest": 1.0, + "hand_move.movem_r": 1.0, + "hand_move.movem_r_untest": 1.0, + "hand_move.movem_l": 1.0, + "hand_move.movem_l_untest": 1.0, + "move_of_hands.rap_alt_r": 1.0, + "move_of_hands.rap_alt_r_untest": 1.0, + "move_of_hands.rap_alt_l": 1.0, + "move_of_hands.rap_alt_l_untest": 1.0, + "leg_agil.leg_agil_r": 1.0, + "leg_agil.leg_agil_r_untest": 1.0, + "leg_agil.leg_agil_l": 1.0, + "leg_agil.leg_agil_l_untest": 1.0, + "arise_chair": 1.0, + "arise_chair_untest": 1.0, + "posture": 1.0, + "posture_untest": 1.0, + "gait": 1.0, + "gait_untest": 1.0, + "post_stab": 1.0, + "post_stab_untest": 1.0, + "bradykin": 1.0, + "bradykin_untest": 1.0 + + }, + "changelog": "/profiles/changelogs/fvp_b3v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b4v1.json b/src/encoded/schemas/fvp_b4v1.json new file mode 100644 index 0000000000..5af05d1504 --- /dev/null +++ b/src/encoded/schemas/fvp_b4v1.json @@ -0,0 +1,196 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP VISIT PACKETForm B4®: Dementia Staging Instrument plus NACC FTLD Behario & Language Domains (CDR® Plus NACC FTLD)", + "description": "NOTE: This form is to be completed by the clinician, based on informant report and neurological exam of the Examiner’s initials:__ __ __\nsubject. In the extremely rare instances when no informant is available, the clinician must complete the CDRutilizing\nall other available information and his/her best clinical judgment.Score only as decline from previous level due to cognitive loss,\nnot impairment due to other factors. For further information, see UDS Coding Guidebook pages 32–33.\n", + "comment": "Schema for submitting UDS ivp_b4 form information. ", + "id": "/profiles/fvp_b4v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "memory": { + "title": "1. MEMORY", + "type": "string", + "enum": [ + "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "0.5 Questionable - 0.5 Consistent slight forgetfulness; partial recollection of events; \"benign\" forgetfulness.", + "1 Mild - 1 Moderate memory loss, more marked for recent events; defect interferes with everyday activities.", + "2 Moderate - 2 Severe memory loss; only highly learned material retained; new material rapidly lost.", + "3 Severe - 3 Severe memory loss; only fragments remain." + ] + }, + "orient": { + "title": "2. ORIENTATION", + "type": "string", + "enum": [ + "0 None - 0 Fully oriented", + "0.5 Questionable - 0.5 Fully oriented except for slight difficulty with time relationships.", + "1 Mild - 1 Moderate difficulty with time relationships; oriented for place at examination; may have geographic disorientation elsewhere.", + "2 Moderate - 2 Severe difficulty with time relationships; usually disoriented to time, often to place.", + "3 Severe - 3 Oriented to person only." + ] + }, + "judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING", + "type": "string", + "enum": [ + "0 None - 0 Solves everyday problems, handles business & financial affairs well; judgment good in relation to past performance.", + "0.5 Questionable - 0.5 Slight impairment in solving problems, similarities, and differences.", + "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "2 Moderate - 2 Severely impaired in handling problems, similarities, and differences; social judgment usually impaired.", + "3 Severe - 3 Unable to make judgments or solve problems." + ] + }, + "commun": { + "title": "4. COMMUNITY AFFAIRS", + "type": "string", + "enum": [ + "0 None - 0 Independent function at usual level in job, shopping, volunteer and social groups.", + "0.5 Questionable - 0.5 Slight impairment in these activities.", + "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "2 Moderate - 2 No pretense of independent function outside the home; appears well enough to be taken to functions outside the family home.", + "3 Severe - 3 No pretense of independent function outside the home; appears too ill to be taken to functions outside the family home." + ] + }, + "homehobb": { + "title": "5. HOME & HOBBIES", + "type": "string", + "enum": [ + "0 None - 0 Life at home, hobbies, and intellectual interests well maintained.", + "0.5 Questionable - 0.5 Life at home, hobbies, and intellectual interests slightly impaired.", + "1 Mild - 1 Mild but definite impairment of function at home; more difficult chores abandoned; more complicated hobbies and interests abandoned.", + "2 Moderate - 2 Only simple chores preserved; very restricted interests, poorly maintained.", + "3 Severe - 3 No significant function in the home." + ] + }, + "perscare": { + "title": "6. PERSONAL CARE", + "type": "string", + "enum": [ + "0 None / Questionable - 0Fully capable of self-care (=0).", + "1 Mild - 1 Needs prompting.", + "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "3 Severe - 3 Requires much help with personal care; frequent incontinence." + ] + }, + "cdrsum": { + "title": "7. CDR SUM OF BOXES", + "description": "Link to Global CDR calculation tool: https://www.alz.washington.edu/cdrnacc.html", + "type": "string" + }, + "cdrglob": { + "title": "8. GLOBAL CDR", + "description": "Link to Global CDR calculation tool", + "type": "string", + "enum": [ + "0 0.0 = No Impairment", + "0.5 0.5 = Questionable impariment", + "1 1.0 = Mild impairment", + "2 2.0 = Moderate impairment", + "3 3.0 = Severe impairment" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "memory": { + "title": "1. MEMORY" + }, + "orient": { + "title": "2. ORIENTATION" + }, + "judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "homehobb": { + "title": "5. HOME & HOBBIES" + }, + "perscare": { + "title": "6. PERSONAL CARE" + }, + "cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "cdrglob": { + "title": "8. GLOBAL CDR" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "memory": { + "title": "1. MEMORY" + }, + "orient": { + "title": "2. ORIENTATION" + }, + "judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "homehobb": { + "title": "5. HOME & HOBBIES" + }, + "perscare": { + "title": "6. PERSONAL CARE" + }, + "cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "cdrglob": { + "title": "8. GLOBAL CDR" + } + + }, + "boost_values": { + "patient": 1.0, + "memory": 1.0, + "orient": 1.0, + "judgment": 1.0, + "commun": 1.0, + "homehobb": 1.0, + "perscare": 1.0, + "cdrsum": 1.0, + "cdrglob": 1.0 + + }, + "changelog": "/profiles/changelogs/fvp_b4v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b4v2.json b/src/encoded/schemas/fvp_b4v2.json new file mode 100644 index 0000000000..85abfb44c0 --- /dev/null +++ b/src/encoded/schemas/fvp_b4v2.json @@ -0,0 +1,255 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B4: CDR® Dementia Staging Instrument\nplus NACC FTLD Behavior & Language Domains ( CDR® NACC FTLD)", + "description": "INSTRUCTIONS: For information on the required online CDR training, see UDS Coding Guidebook for Follow-up Visit\nPacket, Form B4. This form is to be completed by the clinician or other trained health professional, based on\nco-participant report and behavioral and neurological exam of the subject. In the extremely rare instances when no \nco-participant is available, the clinician or other trained health professional must complete this form using all other \navailable information and his/her best clinical judgement. Score only as decline from previous level due to cognitive\nloss, not impairment due to other factors, such as physical disability. For further information, see UDS Coding\nGuidebook for Follow-up Visit Packet, Form B4.\nLink to NACC Coding Guidebook", + "comment": " ", + "id": "/profiles/uds_fvp_b4v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "sec1", + "sec2" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "sec1": { + "title": "SECTION 1: CDR® Dementia Staging Instrument 1", + "type": "object", + "properties": { + "fu_memory": { + "title": "1. MEMORY", + "type": "string", + "enum": [ + "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "0.5 Questionable - 0.5
Consistent slight forgetfulness; partial recollection of events; \"benign\" forgetfulness.", + "1 Mild - 1 Moderate memory loss, more marked for recent events; defect interferes with everyday activities.", + "2 Moderate - 2 Severe memory loss; only highly learned material retained; new material rapidly lost.", + "3 Severe - 3 Severe memory loss; only fragments remain." + ] + }, + "fu_orient": { + "title": "2. ORIENTATION", + "type": "string", + "enum": [ + "0 None - 0 Fully oriented", + "0.5 Questionable - 0.5
Fully oriented except for slight difficulty with time relationships.", + "1 Mild - 1 Moderate difficulty with time relationships; oriented for place at examination; may have geographic disorientation elsewhere.", + "2 Moderate - 2 Severe difficulty with time relationships; usually disoriented to time, often to place.", + "3 Severe - 3 Oriented to person only." + ] + }, + "fu_judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING", + "type": "string", + "enum": [ + "0 None - 0 Solves everyday problems, handles business & financial affairs well; judgment good in relation to past performance.", + "0.5 Questionable - 0.5
Slight impairment in solving problems, similarities, and differences.", + "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "2 Moderate - 2 Severely impaired in handling problems, similarities, and differences; social judgment usually impaired.", + "3 Severe - 3 Unable to make judgments or solve problems." + ] + }, + "fu_commun": { + "title": "4. COMMUNITY AFFAIRS", + "type": "string", + "enum": [ + "0 None - 0 Independent function at usual level in job, shopping, volunteer and social groups.", + "0.5 Questionable - 0.5
Slight impairment in these activities.", + "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "2 Moderate - 2 No pretense of independent function outside the home; appears well enough to be taken to functions outside the family home.", + "3 Severe - 3 No pretense of independent function outside the home; appears too ill to be taken to functions outside the family home." + ] + }, + "fu_homehobb": { + "title": "5. HOME & HOBBIES", + "type": "string", + "enum": [ + "0 None - 0 Life at home, hobbies, and intellectual interests well maintained.", + "0.5 Questionable - 0.5
Life at home, hobbies, and intellectual interests slightly impaired.", + "1 Mild - 1 Mild but definite impairment of function at home; more difficult chores abandoned; more complicated hobbies and interests abandoned.", + "2 Moderate - 2 Only simple chores preserved; very restricted interests, poorly maintained.", + "3 Severe - 3 No significant function in the home." + ] + }, + "fu_perscare": { + "title": "6. PERSONAL CARE", + "type": "string", + "enum": [ + "0 None / Questionable - 0Fully capable of self-care (=0).", + "1 Mild - 1 Needs prompting.", + "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "3 Severe - 3 Requires much help with personal care; frequent incontinence." + ] + }, + "fu_cdrsum": { + "title": "7. CDR SUM OF BOXES", + "description": "Link to Global CDR calculation tool: https://www.alz.washington.edu/cdrnacc.html", + "type": "number" + }, + "fu_cdrglob": { + "title": "8. GLOBAL CDR", + "type": "string", + "enum": [ + "0 0.0 = No Impairment", + "0.5 0.5 = Questionable impariment", + "1 1.0 = Mild impairment", + "2 2.0 = Moderate impairment", + "3 3.0 = Severe impairment" + ] + } + } + }, + "sec2": { + "title": "SECTION 2: NACC FTLD Behavior & Language Domains", + "type": "object", + "properties": { + "fu_comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2", + "type": "string", + "enum": [ + "0 None - 0 Socially appropriate behavior.", + "0.5 Questionable - 0.5
Questionable changes in comportment, empathy, appropriateness of actions.", + "1 Mild - 1 Mild but definite changes in behavior.", + "2 Moderate - 2 Moderate behavioral changes, affecting interpersonal relationships and interactions in a significant manner.", + "3 Severe - 3 Severe behavioral changes, making interpersonal interactions all unidirectional." + ] + }, + "fu_cdrlang": { + "title": "10. LANGUAG 3", + "type": "string", + "enum": [ + "0 None - 0 No language difficulty or occasional mild tip-of-the-tongue.", + "0.5 Questionable - 0.5
Consistent mild word finding difficulties; simplification of word choice; circumlocution; decreased phrase length; and/or mild comprehension difficulties.", + "1 Mild - 1 Moderate word finding difficulty in speech; cannot name objects in environment; reduced phrase length and/or agrammatical speech; and/or reduced comprehension in conversation and reading.", + "2 Moderate - 2 Moderate to severe impairments in either speech or comprehension; has difficulty communicating thoughts; writing may be slightly more effective.", + "3 Severe - 3 Severe comprehension deficits; no intelligible speech." + ] + } + } + }, + "cdrsupp": { + "title": "Supplemental CDR sum", + "description": "Only for version 2", + "type": "number" + + }, + "cdrtot": { + "title": "Standard+ Supp. CDR sum", + "description": "Only for version 2", + "type": "number" + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "sec1.fu_memory": { + "title": "1. MEMORY" + }, + "sec1.fu_orient": { + "title": "2. ORIENTATION" + }, + "sec1.fu_judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "sec1.fu_commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "sec1.fu_homehobb": { + "title": "5. HOME & HOBBIES" + }, + "sec1.fu_perscare": { + "title": "6. PERSONAL CARE" + }, + "sec1.fu_cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "sec1.fu_cdrglob": { + "title": "8. GLOBAL CDR" + }, + "sec2.fu_comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2" + }, + "sec2.fu_cdrlang": { + "title": "10. LANGUAGE 3" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "sec1.fu_memory": { + "title": "1. MEMORY" + }, + "sec1.fu_orient": { + "title": "2. ORIENTATION" + }, + "sec1.fu_judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "sec1.fu_commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "sec1.fu_homehobb": { + "title": "5. HOME & HOBBIES" + }, + "sec1.fu_perscare": { + "title": "6. PERSONAL CARE" + }, + "sec1.fu_cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "sec1.fu_cdrglob": { + "title": "8. GLOBAL CDR" + }, + "sec2.fu_comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2" + }, + "sec2.fu_cdrlang": { + "title": "10. LANGUAGE 3" + } + }, + "boost_values": { + "patient": 1.0, + "sec1.fu_memory": 1.0, + "sec1.fu_orient": 1.0, + "sec1.fu_judgment": 1.0, + "sec1.fu_commun": 1.0, + "sec1.fu_homehobb": 1.0, + "sec1.fu_perscare": 1.0, + "sec1.fu_cdrsum": 1.0, + "sec1.fu_cdrglob": 1.0, + "sec2.fu_comport": 1.0, + "sec2.fu_cdrlang": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b4v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b4v3.json b/src/encoded/schemas/fvp_b4v3.json new file mode 100644 index 0000000000..b9c6398cf8 --- /dev/null +++ b/src/encoded/schemas/fvp_b4v3.json @@ -0,0 +1,243 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B4: CDR® Dementia Staging Instrument\nplus NACC FTLD Behavior & Language Domains ( CDR® NACC FTLD)", + "description": "INSTRUCTIONS: For information on the required online CDR training, see UDS Coding Guidebook for Follow-up Visit\nPacket, Form B4. This form is to be completed by the clinician or other trained health professional, based on\nco-participant report and behavioral and neurological exam of the subject. In the extremely rare instances when no \nco-participant is available, the clinician or other trained health professional must complete this form using all other \navailable information and his/her best clinical judgement. Score only as decline from previous level due to cognitive\nloss, not impairment due to other factors, such as physical disability. For further information, see UDS Coding\nGuidebook for Follow-up Visit Packet, Form B4.\nLink to NACC Coding Guidebook", + "comment": " ", + "id": "/profiles/uds_fvp_b4v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "sec1", + "sec2" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "sec1": { + "title": "SECTION 1: CDR® Dementia Staging Instrument 1", + "type": "object", + "properties": { + "fu_memory": { + "title": "1. MEMORY", + "type": "string", + "enum": [ + "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "0.5 Questionable - 0.5
Consistent slight forgetfulness; partial recollection of events; \"benign\" forgetfulness.", + "1 Mild - 1 Moderate memory loss, more marked for recent events; defect interferes with everyday activities.", + "2 Moderate - 2 Severe memory loss; only highly learned material retained; new material rapidly lost.", + "3 Severe - 3 Severe memory loss; only fragments remain." + ] + }, + "fu_orient": { + "title": "2. ORIENTATION", + "type": "string", + "enum": [ + "0 None - 0 Fully oriented", + "0.5 Questionable - 0.5
Fully oriented except for slight difficulty with time relationships.", + "1 Mild - 1 Moderate difficulty with time relationships; oriented for place at examination; may have geographic disorientation elsewhere.", + "2 Moderate - 2 Severe difficulty with time relationships; usually disoriented to time, often to place.", + "3 Severe - 3 Oriented to person only." + ] + }, + "fu_judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING", + "type": "string", + "enum": [ + "0 None - 0 Solves everyday problems, handles business & financial affairs well; judgment good in relation to past performance.", + "0.5 Questionable - 0.5
Slight impairment in solving problems, similarities, and differences.", + "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "2 Moderate - 2 Severely impaired in handling problems, similarities, and differences; social judgment usually impaired.", + "3 Severe - 3 Unable to make judgments or solve problems." + ] + }, + "fu_commun": { + "title": "4. COMMUNITY AFFAIRS", + "type": "string", + "enum": [ + "0 None - 0 Independent function at usual level in job, shopping, volunteer and social groups.", + "0.5 Questionable - 0.5
Slight impairment in these activities.", + "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "2 Moderate - 2 No pretense of independent function outside the home; appears well enough to be taken to functions outside the family home.", + "3 Severe - 3 No pretense of independent function outside the home; appears too ill to be taken to functions outside the family home." + ] + }, + "fu_homehobb": { + "title": "5. HOME & HOBBIES", + "type": "string", + "enum": [ + "0 None - 0 Life at home, hobbies, and intellectual interests well maintained.", + "0.5 Questionable - 0.5
Life at home, hobbies, and intellectual interests slightly impaired.", + "1 Mild - 1 Mild but definite impairment of function at home; more difficult chores abandoned; more complicated hobbies and interests abandoned.", + "2 Moderate - 2 Only simple chores preserved; very restricted interests, poorly maintained.", + "3 Severe - 3 No significant function in the home." + ] + }, + "fu_perscare": { + "title": "6. PERSONAL CARE", + "type": "string", + "enum": [ + "0 None / Questionable - 0Fully capable of self-care (=0).", + "1 Mild - 1 Needs prompting.", + "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "3 Severe - 3 Requires much help with personal care; frequent incontinence." + ] + }, + "fu_cdrsum": { + "title": "7. CDR SUM OF BOXES", + "description": "Link to Global CDR calculation tool: https://www.alz.washington.edu/cdrnacc.html", + "type": "number" + }, + "fu_cdrglob": { + "title": "8. GLOBAL CDR", + "type": "string", + "enum": [ + "0 0.0 = No Impairment", + "0.5 0.5 = Questionable impariment", + "1 1.0 = Mild impairment", + "2 2.0 = Moderate impairment", + "3 3.0 = Severe impairment" + ] + } + } + }, + "sec2": { + "title": "SECTION 2: NACC FTLD Behavior & Language Domains", + "type": "object", + "properties": { + "fu_comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2", + "type": "string", + "enum": [ + "0 None - 0 Socially appropriate behavior.", + "0.5 Questionable - 0.5
Questionable changes in comportment, empathy, appropriateness of actions.", + "1 Mild - 1 Mild but definite changes in behavior.", + "2 Moderate - 2 Moderate behavioral changes, affecting interpersonal relationships and interactions in a significant manner.", + "3 Severe - 3 Severe behavioral changes, making interpersonal interactions all unidirectional." + ] + }, + "fu_cdrlang": { + "title": "10. LANGUAG 3", + "type": "string", + "enum": [ + "0 None - 0 No language difficulty or occasional mild tip-of-the-tongue.", + "0.5 Questionable - 0.5
Consistent mild word finding difficulties; simplification of word choice; circumlocution; decreased phrase length; and/or mild comprehension difficulties.", + "1 Mild - 1 Moderate word finding difficulty in speech; cannot name objects in environment; reduced phrase length and/or agrammatical speech; and/or reduced comprehension in conversation and reading.", + "2 Moderate - 2 Moderate to severe impairments in either speech or comprehension; has difficulty communicating thoughts; writing may be slightly more effective.", + "3 Severe - 3 Severe comprehension deficits; no intelligible speech." + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "sec1.fu_memory": { + "title": "1. MEMORY" + }, + "sec1.fu_orient": { + "title": "2. ORIENTATION" + }, + "sec1.fu_judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "sec1.fu_commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "sec1.fu_homehobb": { + "title": "5. HOME & HOBBIES" + }, + "sec1.fu_perscare": { + "title": "6. PERSONAL CARE" + }, + "sec1.fu_cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "sec1.fu_cdrglob": { + "title": "8. GLOBAL CDR" + }, + "sec2.fu_comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2" + }, + "sec2.fu_cdrlang": { + "title": "10. LANGUAGE 3" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "sec1.fu_memory": { + "title": "1. MEMORY" + }, + "sec1.fu_orient": { + "title": "2. ORIENTATION" + }, + "sec1.fu_judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "sec1.fu_commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "sec1.fu_homehobb": { + "title": "5. HOME & HOBBIES" + }, + "sec1.fu_perscare": { + "title": "6. PERSONAL CARE" + }, + "sec1.fu_cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "sec1.fu_cdrglob": { + "title": "8. GLOBAL CDR" + }, + "sec2.fu_comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2" + }, + "sec2.fu_cdrlang": { + "title": "10. LANGUAGE 3" + } + }, + "boost_values": { + "patient": 1.0, + "sec1.fu_memory": 1.0, + "sec1.fu_orient": 1.0, + "sec1.fu_judgment": 1.0, + "sec1.fu_commun": 1.0, + "sec1.fu_homehobb": 1.0, + "sec1.fu_perscare": 1.0, + "sec1.fu_cdrsum": 1.0, + "sec1.fu_cdrglob": 1.0, + "sec2.fu_comport": 1.0, + "sec2.fu_cdrlang": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b4v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b5v1.json b/src/encoded/schemas/fvp_b5v1.json new file mode 100644 index 0000000000..672bcde9e9 --- /dev/null +++ b/src/encoded/schemas/fvp_b5v1.json @@ -0,0 +1,499 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP VISIT PACKETFORM B5: BEHAVIORAL ASSESSMENT Neuropsychiatric Inventory Questionnaire (NPI-Q[1])", + "description": "NOTE: This form is to be completed by the clinician per informant interview, as described by the training video.Examiner’sinitials:__ __ __\n(This is not to be completed by the subject as a paper-and-pencil self-report.) For information regarding\nNPI-Q Interviewer Certification, see UDS Coding Guidebook page 34. Check only one box for each category of response.\nPlease ask the following questions based upon changes. Indicate “yes” only if the symptom has been present in the past month; otherwise, indicate “no”.\nFor each item marked “yes”, rate the SEVERITY of the symptom (how it affects the patient):1 = Mild (noticeable, but not a significant change)\n2 = Moderate (significant, but not a dramatic change)\n3 = Severe (very marked or prominent; a dramatic change)\n", + "id": "/profiles/fvp_b5v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "npiqinf", + "del", + "hall", + "agit", + "depd", + "anx", + "elat", + "apa", + "disn", + "irr", + "mot", + "nite", + "app" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:", + "description": "", + "comment": "", + "type": "string", + "enum": [ + "1 Spouse", + "2 Child", + "3 Other (SPECIFY)" + ] + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "delsev": { + "title": "2b. If Delusions, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity ", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? ", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + } + }, + "facets": { + + "status": { + "title": "Status" + }, + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "delsev": { + "title": "2b. If Delusions, rate severity" + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity " + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? " + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?" + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "delsev": { + "title": "2b. If Delusions, rate severity" + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity " + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? " + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?" + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + + }, + "boost_values": { + "patient": 1.0, + "npiqinf": 1.0, + "npiqinfx": 1.0, + "del": 1.0, + "delsev": 1.0, + "hall": 1.0, + "hallsev": 1.0, + "agit": 1.0, + "agitsev": 1.0, + "depd": 1.0, + "depdsev": 1.0, + "anx": 1.0, + "anxsev": 1.0, + "elat": 1.0, + "elatsev": 1.0, + "apa": 1.0, + "apasev": 1.0, + "disn": 1.0, + "disnsev": 1.0, + "irr": 1.0, + "irrsev": 1.0, + "mot": 1.0, + "motsev": 1.0, + "nite": 1.0, + "nitesev": 1.0, + "app": 1.0, + "appsev": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b5v1.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b5v2.json b/src/encoded/schemas/fvp_b5v2.json new file mode 100644 index 0000000000..c9ad8fb017 --- /dev/null +++ b/src/encoded/schemas/fvp_b5v2.json @@ -0,0 +1,478 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B5: BEHAVIORAL ASSESSMENT -\n Inventory Questionnaire (NPI-Q [1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional based onco-participant interview, as described by the training video. (This is not to be completed by the subject as apaper-and-pencil self-report.) For information on NPI-Q Interviewer Certification, see UDS Coding Guidebook forFollow-up Visit Packet, Form B5. Link to NACC Coding GuidebookCheck only one box for each category of response.CORRECTED INSTRUCTIONS: Please answer the following questions based on changes that have occurred since thepatient first began to experience memory (i.e. cognitive) problems. Select 1=Yes only if the symptom(s) has beenpresent in the last month. Otherwise, select 0=No.For each item marked 1=Yes, rate the SEVERITY of the symptom (how it affects the patient):1 = Mild (noticeable, but not a significant change)2 = Moderate (significant, but not a dramatic change)3 = Severe (very marked or prominent, a dramatic change)", + "id": "/profiles/uds_fvp_b5v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_npiqinf": { + "title": "1. NPI CO-PARTICIPANT:", + "type": "string", + "enum": [ + "1 Spouse", + "2 Child", + "3 Other (SPECIFY)" + ] + }, + "fu_npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "fu_del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_delsev": { + "title": "2b. If Delusions, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_hallsev": { + "title": "3b. If Hallucinations, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_agitsev": { + "title": "4b. If Agitation/agression, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_depdsev": { + "title": "5b. If Depression/dysphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_anxsev": { + "title": "6b. If Anxiety, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_elatsev": { + "title": "7b. If Elation/euphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_apasev": { + "title": "8b. If Apathy/indifference, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_disnsev": { + "title": "9b. If Disinhibition, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_irrsev": { + "title": "10b. If Irritability/lability, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house, handling buttons, wrapping string, or doing other things repeatedly?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_motsev": { + "title": "11b. If Motor disturbance, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_nitesev": { + "title": "12b. If Nighttime behaviors, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_appsev": { + "title": "13b. If Appetite/eating, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "fu_npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "fu_del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "fu_delsev": { + "title": "2b. If Delusions, rate severity" + }, + "fu_hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "fu_hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "fu_agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "fu_agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "fu_depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "fu_depdsev": { + "title": "5b. If Depression/dysphoria, rate severity" + }, + "fu_anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "fu_anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "fu_elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy?" + }, + "fu_elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "fu_apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "fu_apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "fu_disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "fu_disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "fu_irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "fu_irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "fu_mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house, handling buttons, wrapping string, or doing other things repeatedly?" + }, + "fu_motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "fu_nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "fu_nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "fu_app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "fu_appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "fu_npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "fu_del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "fu_delsev": { + "title": "2b. If Delusions, rate severity" + }, + "fu_hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "fu_hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "fu_agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "fu_agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "fu_depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "fu_depdsev": { + "title": "5b. If Depression/dysphoria, rate severity" + }, + "fu_anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "fu_anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "fu_elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy?" + }, + "fu_elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "fu_apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "fu_apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "fu_disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "fu_disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "fu_irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "fu_irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "fu_mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house, handling buttons, wrapping string, or doing other things repeatedly?" + }, + "fu_motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "fu_nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "fu_nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "fu_app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "fu_appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + }, + "boost_values": { + "patient": 1.0, + "fu_npiqinf": 1.0, + "fu_npiqinfx": 1.0, + "fu_del": 1.0, + "fu_delsev": 1.0, + "fu_hall": 1.0, + "fu_hallsev": 1.0, + "fu_agit": 1.0, + "fu_agitsev": 1.0, + "fu_depd": 1.0, + "fu_depdsev": 1.0, + "fu_anx": 1.0, + "fu_anxsev": 1.0, + "fu_elat": 1.0, + "fu_elatsev": 1.0, + "fu_apa": 1.0, + "fu_apasev": 1.0, + "fu_disn": 1.0, + "fu_disnsev": 1.0, + "fu_irr": 1.0, + "fu_irrsev": 1.0, + "fu_mot": 1.0, + "fu_motsev": 1.0, + "fu_nite": 1.0, + "fu_nitesev": 1.0, + "fu_app": 1.0, + "fu_appsev": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b5v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b5v3.json b/src/encoded/schemas/fvp_b5v3.json new file mode 100644 index 0000000000..d994938570 --- /dev/null +++ b/src/encoded/schemas/fvp_b5v3.json @@ -0,0 +1,478 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B5: BEHAVIORAL ASSESSMENT -\n Inventory Questionnaire (NPI-Q [1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional based onco-participant interview, as described by the training video. (This is not to be completed by the subject as apaper-and-pencil self-report.) For information on NPI-Q Interviewer Certification, see UDS Coding Guidebook forFollow-up Visit Packet, Form B5. Link to NACC Coding GuidebookCheck only one box for each category of response.CORRECTED INSTRUCTIONS: Please answer the following questions based on changes that have occurred since thepatient first began to experience memory (i.e. cognitive) problems. Select 1=Yes only if the symptom(s) has beenpresent in the last month. Otherwise, select 0=No.For each item marked 1=Yes, rate the SEVERITY of the symptom (how it affects the patient):1 = Mild (noticeable, but not a significant change)2 = Moderate (significant, but not a dramatic change)3 = Severe (very marked or prominent, a dramatic change)", + "id": "/profiles/uds_fvp_b5v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_npiqinf": { + "title": "1. NPI CO-PARTICIPANT:", + "type": "string", + "enum": [ + "1 Spouse", + "2 Child", + "3 Other (SPECIFY)" + ] + }, + "fu_npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "fu_del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_delsev": { + "title": "2b. If Delusions, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_hallsev": { + "title": "3b. If Hallucinations, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_agitsev": { + "title": "4b. If Agitation/agression, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_depdsev": { + "title": "5b. If Depression/dysphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_anxsev": { + "title": "6b. If Anxiety, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_elatsev": { + "title": "7b. If Elation/euphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_apasev": { + "title": "8b. If Apathy/indifference, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_disnsev": { + "title": "9b. If Disinhibition, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_irrsev": { + "title": "10b. If Irritability/lability, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house, handling buttons, wrapping string, or doing other things repeatedly?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_motsev": { + "title": "11b. If Motor disturbance, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_nitesev": { + "title": "12b. If Nighttime behaviors, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "fu_app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "fu_appsev": { + "title": "13b. If Appetite/eating, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "fu_npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "fu_del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "fu_delsev": { + "title": "2b. If Delusions, rate severity" + }, + "fu_hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "fu_hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "fu_agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "fu_agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "fu_depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "fu_depdsev": { + "title": "5b. If Depression/dysphoria, rate severity" + }, + "fu_anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "fu_anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "fu_elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy?" + }, + "fu_elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "fu_apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "fu_apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "fu_disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "fu_disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "fu_irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "fu_irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "fu_mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house, handling buttons, wrapping string, or doing other things repeatedly?" + }, + "fu_motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "fu_nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "fu_nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "fu_app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "fu_appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "fu_npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "fu_del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "fu_delsev": { + "title": "2b. If Delusions, rate severity" + }, + "fu_hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "fu_hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "fu_agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "fu_agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "fu_depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "fu_depdsev": { + "title": "5b. If Depression/dysphoria, rate severity" + }, + "fu_anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "fu_anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "fu_elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy?" + }, + "fu_elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "fu_apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "fu_apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "fu_disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "fu_disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "fu_irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "fu_irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "fu_mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house, handling buttons, wrapping string, or doing other things repeatedly?" + }, + "fu_motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "fu_nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "fu_nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "fu_app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "fu_appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + }, + "boost_values": { + "patient": 1.0, + "fu_npiqinf": 1.0, + "fu_npiqinfx": 1.0, + "fu_del": 1.0, + "fu_delsev": 1.0, + "fu_hall": 1.0, + "fu_hallsev": 1.0, + "fu_agit": 1.0, + "fu_agitsev": 1.0, + "fu_depd": 1.0, + "fu_depdsev": 1.0, + "fu_anx": 1.0, + "fu_anxsev": 1.0, + "fu_elat": 1.0, + "fu_elatsev": 1.0, + "fu_apa": 1.0, + "fu_apasev": 1.0, + "fu_disn": 1.0, + "fu_disnsev": 1.0, + "fu_irr": 1.0, + "fu_irrsev": 1.0, + "fu_mot": 1.0, + "fu_motsev": 1.0, + "fu_nite": 1.0, + "fu_nitesev": 1.0, + "fu_app": 1.0, + "fu_appsev": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b5v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b6v1.json b/src/encoded/schemas/fvp_b6v1.json new file mode 100644 index 0000000000..860fd1ab2e --- /dev/null +++ b/src/encoded/schemas/fvp_b6v1.json @@ -0,0 +1,316 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP VISIT PACKETFORM B6: BEHAVIORAL ASSESSMENT - GERIATRIC DEPRESSION SCALE (GDS[1])", +"description": "NOTE: This form is to be completed by the clinician, based on subject response.\nFor additional clarification and examples, see UDS Coding Guidebook page 35.\nCircle only one number per question.\n", + "$schema": "http://json-schema.org/draft-04/schema#", + "id": "/profiles/fvp_b6v1.json", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "nogds": { + "title": "Check this box and enter \"88\" below for the Total GDS Score only if the subject: 1) does not attempt the GDS, or 2) answers fewer than 12 questions.", + "description": "Instruct the subject: \"In the next part of this interview, I will ask you questions about your feelings.\nSome of the questions I will ask you may not apply, and some may make you feel uncomfortable.For each question, please answer \"yes\" or \"no,\" depending on how you have been feeling in past week, including today.\"", + "type": "boolean" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?", + "description": "", + "comment": "", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "empty": { + "title": "3. Do you feel that your life is empty?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "bored": { + "title": "4. Do you often get bored?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "happy": { + "title": "7. Do you feel happy most of the time?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "helpless": { + "title": "8. Do you often feel helpless?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "energy": { + "title": "13. Do you feel full of energy?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "better": { + "title": "15. Do you think that most people are better off than you are?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score", + "description": "((max score=15; did not complete = 88))", + "type": "string", + "pattern": "^([0-9]|[1][0-5]|88)$" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "empty": { + "title": "3. Do you feel that your life is empty?" + }, + "bored": { + "title": "4. Do you often get bored?" + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "happy": { + "title": "7. Do you feel happy most of the time?" + }, + "helpless": { + "title": "8. Do you often feel helpless?" + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "energy": { + "title": "13. Do you feel full of energy?" + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless" + }, + "better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "empty": { + "title": "3. Do you feel that your life is empty?" + }, + "bored": { + "title": "4. Do you often get bored?" + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "happy": { + "title": "7. Do you feel happy most of the time?" + }, + "helpless": { + "title": "8. Do you often feel helpless?" + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "energy": { + "title": "13. Do you feel full of energy?" + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless" + }, + "better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score" + } + + }, + "boost_values": { + "patient": 1.0, + "satis": 1.0, + "dropact": 1.0, + "empty": 1.0, + "bored": 1.0, + "spirits": 1.0, + "afraid": 1.0, + "happy": 1.0, + "helpless": 1.0, + "stayhome": 1.0, + "memprob": 1.0, + "wondrful": 1.0, + "wrthless": 1.0, + "energy": 1.0, + "hopeless": 1.0, + "better": 1.0, + "gds": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b6v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b6v2.json b/src/encoded/schemas/fvp_b6v2.json new file mode 100644 index 0000000000..53bb4b5f95 --- /dev/null +++ b/src/encoded/schemas/fvp_b6v2.json @@ -0,0 +1,337 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B6: BEHAVIORAL ASSESSMENT - GERIATRIC DEPRESSION SCALE (GDS[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional, based on subject response. For additional clarification and examples, see UDS Coding Guidebook for Follow-up Visit Packet, Form B6. Link to NACC Coding Guidebook Check only one answer per question.", + "id": "/profiles/uds_fvp_b6v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "fu_note_b6" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_nogds": { + "title": "Check this box and enter \"88\" below for the Total GDS Score if and only if the subject: 1.) does not attempt the GDS, or 2.) answers fewer than 12 questions.", + "type": "boolean" + + }, + "fu_note_b6": { + "title": " Instruct the subject: \"In the next part of this interview, I will ask you questions about your feelings. Some of the questions I will ask you may not apply, and some may make you feel uncomfortable. For each question, please answer \"yes\" or \"no\", depending on how you have been feeling in the past week, including today.\"", + "type": "object", + "properties": { + "fu_satis": { + "title": "1. Are you basically satisfied with your life?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_dropact": { + "title": "2. Have you dropped many of your activities and interests?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_empty": { + "title": "3. Do you feel that your life is empty?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_bored": { + "title": "4. Do you often get bored?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_spirits": { + "title": "5. Are you in good spirits most of the time?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_happy": { + "title": "7. Do you feel happy most of the time?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_helpless": { + "title": "8. Do you often feel helpless?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_memprob": { + "title": "10. Do you feel you have more problems with memory than most?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_wondrful": { + "title": "11. Do you think it is wonderful to be alive now?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_energy": { + "title": "13. Do you feel full of energy?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_hopeless": { + "title": "14. Do you feel that your situation is hopeless?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_better": { + "title": "15. Do you think that most people are better off than you are?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_gds": { + "title": "16. Sum of all checked answers for a Total GDS Score", + "description": "max score = 15;did not complete = 88", + "type": "string", + "pattern": "^[0-9]$|^1[0-5]$|^88$" + } + } + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_note_b6.fu_satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "fu_note_b6.fu_dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "fu_note_b6.fu_empty": { + "title": "3. Do you feel that your life is empty?" + }, + "fu_note_b6.fu_bored": { + "title": "4. Do you often get bored?" + }, + "fu_note_b6.fu_spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "fu_note_b6.fu_afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "fu_note_b6.fu_happy": { + "title": "7. Do you feel happy most of the time?" + }, + "fu_note_b6.fu_helpless": { + "title": "8. Do you often feel helpless?" + }, + "fu_note_b6.fu_stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "fu_note_b6.fu_memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "fu_note_b6.fu_wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "fu_note_b6.fu_wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "fu_note_b6.fu_energy": { + "title": "13. Do you feel full of energy?" + }, + "fu_note_b6.fu_hopeless": { + "title": "14. Do you feel that your situation is hopeless?" + }, + "fu_note_b6.fu_better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "fu_note_b6.fu_gds": { + "title": "16. Sum of all checked answers for a Total GDS Score" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_note_b6.fu_satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "fu_note_b6.fu_dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "fu_note_b6.fu_empty": { + "title": "3. Do you feel that your life is empty?" + }, + "fu_note_b6.fu_bored": { + "title": "4. Do you often get bored?" + }, + "fu_note_b6.fu_spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "fu_note_b6.fu_afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "fu_note_b6.fu_happy": { + "title": "7. Do you feel happy most of the time?" + }, + "fu_note_b6.fu_helpless": { + "title": "8. Do you often feel helpless?" + }, + "fu_note_b6.fu_stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "fu_note_b6.fu_memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "fu_note_b6.fu_wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "fu_note_b6.fu_wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "fu_note_b6.fu_energy": { + "title": "13. Do you feel full of energy?" + }, + "fu_note_b6.fu_hopeless": { + "title": "14. Do you feel that your situation is hopeless?" + }, + "fu_note_b6.fu_better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "fu_note_b6.fu_gds": { + "title": "16. Sum of all checked answers for a Total GDS Score" + } + }, + "boost_values": { + "patient": 1.0, + "fu_nogds": 1.0, + "fu_note_b6.fu_satis": 1.0, + "fu_note_b6.fu_dropact": 1.0, + "fu_note_b6.fu_empty": 1.0, + "fu_note_b6.fu_bored": 1.0, + "fu_note_b6.fu_spirits": 1.0, + "fu_note_b6.fu_afraid": 1.0, + "fu_note_b6.fu_happy": 1.0, + "fu_note_b6.fu_helpless": 1.0, + "fu_note_b6.fu_stayhome": 1.0, + "fu_note_b6.fu_memprob": 1.0, + "fu_note_b6.fu_wondrful": 1.0, + "fu_note_b6.fu_wrthless": 1.0, + "fu_note_b6.fu_energy": 1.0, + "fu_note_b6.fu_hopeless": 1.0, + "fu_note_b6.fu_better": 1.0, + "fu_note_b6.fu_gds": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b6v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b6v3.json b/src/encoded/schemas/fvp_b6v3.json new file mode 100644 index 0000000000..5c3aff5e6e --- /dev/null +++ b/src/encoded/schemas/fvp_b6v3.json @@ -0,0 +1,337 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B6: BEHAVIORAL ASSESSMENT - GERIATRIC DEPRESSION SCALE (GDS[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional, based on subject response. For additional clarification and examples, see UDS Coding Guidebook for Follow-up Visit Packet, Form B6. Link to NACC Coding Guidebook Check only one answer per question.", + "id": "/profiles/uds_fvp_b6v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "fu_note_b6" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_nogds": { + "title": "Check this box and enter \"88\" below for the Total GDS Score if and only if the subject: 1.) does not attempt the GDS, or 2.) answers fewer than 12 questions.", + "type": "boolean" + + }, + "fu_note_b6": { + "title": " Instruct the subject: \"In the next part of this interview, I will ask you questions about your feelings. Some of the questions I will ask you may not apply, and some may make you feel uncomfortable. For each question, please answer \"yes\" or \"no\", depending on how you have been feeling in the past week, including today.\"", + "type": "object", + "properties": { + "fu_satis": { + "title": "1. Are you basically satisfied with your life?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_dropact": { + "title": "2. Have you dropped many of your activities and interests?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_empty": { + "title": "3. Do you feel that your life is empty?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_bored": { + "title": "4. Do you often get bored?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_spirits": { + "title": "5. Are you in good spirits most of the time?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_happy": { + "title": "7. Do you feel happy most of the time?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_helpless": { + "title": "8. Do you often feel helpless?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_memprob": { + "title": "10. Do you feel you have more problems with memory than most?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_wondrful": { + "title": "11. Do you think it is wonderful to be alive now?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_energy": { + "title": "13. Do you feel full of energy?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_hopeless": { + "title": "14. Do you feel that your situation is hopeless?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_better": { + "title": "15. Do you think that most people are better off than you are?", + + "type": "string", + "enum": [ + "0 Yes", + "1 No ", + "9 Did not answer" + ] + }, + "fu_gds": { + "title": "16. Sum of all checked answers for a Total GDS Score", + "description": "max score = 15;did not complete = 88", + "type": "string", + "pattern": "^[0-9]$|^1[0-5]$|^88$" + } + } + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_note_b6.fu_satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "fu_note_b6.fu_dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "fu_note_b6.fu_empty": { + "title": "3. Do you feel that your life is empty?" + }, + "fu_note_b6.fu_bored": { + "title": "4. Do you often get bored?" + }, + "fu_note_b6.fu_spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "fu_note_b6.fu_afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "fu_note_b6.fu_happy": { + "title": "7. Do you feel happy most of the time?" + }, + "fu_note_b6.fu_helpless": { + "title": "8. Do you often feel helpless?" + }, + "fu_note_b6.fu_stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "fu_note_b6.fu_memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "fu_note_b6.fu_wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "fu_note_b6.fu_wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "fu_note_b6.fu_energy": { + "title": "13. Do you feel full of energy?" + }, + "fu_note_b6.fu_hopeless": { + "title": "14. Do you feel that your situation is hopeless?" + }, + "fu_note_b6.fu_better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "fu_note_b6.fu_gds": { + "title": "16. Sum of all checked answers for a Total GDS Score" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_note_b6.fu_satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "fu_note_b6.fu_dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "fu_note_b6.fu_empty": { + "title": "3. Do you feel that your life is empty?" + }, + "fu_note_b6.fu_bored": { + "title": "4. Do you often get bored?" + }, + "fu_note_b6.fu_spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "fu_note_b6.fu_afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "fu_note_b6.fu_happy": { + "title": "7. Do you feel happy most of the time?" + }, + "fu_note_b6.fu_helpless": { + "title": "8. Do you often feel helpless?" + }, + "fu_note_b6.fu_stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "fu_note_b6.fu_memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "fu_note_b6.fu_wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "fu_note_b6.fu_wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "fu_note_b6.fu_energy": { + "title": "13. Do you feel full of energy?" + }, + "fu_note_b6.fu_hopeless": { + "title": "14. Do you feel that your situation is hopeless?" + }, + "fu_note_b6.fu_better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "fu_note_b6.fu_gds": { + "title": "16. Sum of all checked answers for a Total GDS Score" + } + }, + "boost_values": { + "patient": 1.0, + "fu_nogds": 1.0, + "fu_note_b6.fu_satis": 1.0, + "fu_note_b6.fu_dropact": 1.0, + "fu_note_b6.fu_empty": 1.0, + "fu_note_b6.fu_bored": 1.0, + "fu_note_b6.fu_spirits": 1.0, + "fu_note_b6.fu_afraid": 1.0, + "fu_note_b6.fu_happy": 1.0, + "fu_note_b6.fu_helpless": 1.0, + "fu_note_b6.fu_stayhome": 1.0, + "fu_note_b6.fu_memprob": 1.0, + "fu_note_b6.fu_wondrful": 1.0, + "fu_note_b6.fu_wrthless": 1.0, + "fu_note_b6.fu_energy": 1.0, + "fu_note_b6.fu_hopeless": 1.0, + "fu_note_b6.fu_better": 1.0, + "fu_note_b6.fu_gds": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b6v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b7v1.json b/src/encoded/schemas/fvp_b7v1.json new file mode 100644 index 0000000000..4297aacb2c --- /dev/null +++ b/src/encoded/schemas/fvp_b7v1.json @@ -0,0 +1,265 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP VISIT PACKETForm B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "description": "NOTE: This form is to be completed by the clinician, based on information provided by informant.For additionalExaminer’sinitials:__ __ __\nclarification and examples, see UDS Coding Guidebook page 36. Indicate the level of performance for each\nactivity by circling the one appropriate response.\n", + "id": "/profiles/fvp_b7v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "form_description" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "form_description": { + "title": "In the past four weeks, did the subject have difficulty or need help with:", + "type": "object", + "properties": { + "bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "taxes": { + "title": "2. Assembling tax records, business affairs, or other papers", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "mealprep": { + "title": "6. Preparing a balanced meal", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "events": { + "title": "7. Keeping track of current events", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + } + }, + "required": [ + "bills", + "taxes", + "shopping", + "games", + "stove", + "mealprep", + "events", + "payattn", + "remdates", + "travel" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "form_description.bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "form_description.taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "form_description.shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "form_description.games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "form_description.stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "form_description.mealprep": { + "title": "6. Preparing a balanced meal" + }, + "form_description.events": { + "title": "7. Keeping track of current events" + }, + "form_description.payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "form_description.remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "form_description.travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "form_description.bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "form_description.taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "form_description.shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "form_description.games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "form_description.stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "form_description.mealprep": { + "title": "6. Preparing a balanced meal" + }, + "form_description.events": { + "title": "7. Keeping track of current events" + }, + "form_description.payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "form_description.remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "form_description.travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "boost_values": { + "patient": 1.0, + "form_description.bills": 1.0, + "form_description.taxes": 1.0, + "form_description.shopping": 1.0, + "form_description.games": 1.0, + "form_description.stove": 1.0, + "form_description.mealprep": 1.0, + "form_description.events": 1.0, + "form_description.payattn": 1.0, + "form_description.remdates": 1.0, + "form_description.travel": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b7v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b7v2.json b/src/encoded/schemas/fvp_b7v2.json new file mode 100644 index 0000000000..1bce1d3981 --- /dev/null +++ b/src/encoded/schemas/fvp_b7v2.json @@ -0,0 +1,253 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP Form B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional, based on information provided by the co-participant. For further information, see UDS Coding Guidebook for Follow-up Visit Packet, Form B7. Link to NACC Coding Guidebook Indicate the level of performance for each activity by checking the one appropriate response.", + "id": "/profiles/uds_fvp_b7v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "help_with" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "help_with": { + "title": "In the past four weeks, did the subject have difficulty or need help with:", + "type": "object", + "properties": { + "fu_bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_taxes": { + "title": "2. Assembling tax records, business affairs, or other papers", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_mealprep": { + "title": "6. Preparing a balanced meal", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_events": { + "title": "7. Keeping track of current events", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + } + } + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "help_with.fu_bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "help_with.fu_taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "help_with.fu_shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "help_with.fu_games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "help_with.fu_stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "help_with.fu_mealprep": { + "title": "6. Preparing a balanced meal" + }, + "help_with.fu_events": { + "title": "7. Keeping track of current events" + }, + "help_with.fu_payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "help_with.fu_remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "help_with.fu_travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "help_with.fu_bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "help_with.fu_taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "help_with.fu_shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "help_with.fu_games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "help_with.fu_stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "help_with.fu_mealprep": { + "title": "6. Preparing a balanced meal" + }, + "help_with.fu_events": { + "title": "7. Keeping track of current events" + }, + "help_with.fu_payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "help_with.fu_remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "help_with.fu_travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "boost_values": { + "patient": 1.0, + "help_with.fu_bills": 1.0, + "help_with.fu_taxes": 1.0, + "help_with.fu_shopping": 1.0, + "help_with.fu_games": 1.0, + "help_with.fu_stove": 1.0, + "help_with.fu_mealprep": 1.0, + "help_with.fu_events": 1.0, + "help_with.fu_payattn": 1.0, + "help_with.fu_remdates": 1.0, + "help_with.fu_travel": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b7v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b7v3.json b/src/encoded/schemas/fvp_b7v3.json new file mode 100644 index 0000000000..c81305495b --- /dev/null +++ b/src/encoded/schemas/fvp_b7v3.json @@ -0,0 +1,253 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP Form B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional, based on information provided by the co-participant. For further information, see UDS Coding Guidebook for Follow-up Visit Packet, Form B7. Link to NACC Coding Guidebook Indicate the level of performance for each activity by checking the one appropriate response.", + "id": "/profiles/uds_fvp_b7v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "help_with" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "help_with": { + "title": "In the past four weeks, did the subject have difficulty or need help with:", + "type": "object", + "properties": { + "fu_bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_taxes": { + "title": "2. Assembling tax records, business affairs, or other papers", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_mealprep": { + "title": "6. Preparing a balanced meal", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_events": { + "title": "7. Keeping track of current events", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "fu_travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + } + } + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "help_with.fu_bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "help_with.fu_taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "help_with.fu_shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "help_with.fu_games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "help_with.fu_stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "help_with.fu_mealprep": { + "title": "6. Preparing a balanced meal" + }, + "help_with.fu_events": { + "title": "7. Keeping track of current events" + }, + "help_with.fu_payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "help_with.fu_remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "help_with.fu_travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "help_with.fu_bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "help_with.fu_taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "help_with.fu_shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "help_with.fu_games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "help_with.fu_stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "help_with.fu_mealprep": { + "title": "6. Preparing a balanced meal" + }, + "help_with.fu_events": { + "title": "7. Keeping track of current events" + }, + "help_with.fu_payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "help_with.fu_remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "help_with.fu_travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "boost_values": { + "patient": 1.0, + "help_with.fu_bills": 1.0, + "help_with.fu_taxes": 1.0, + "help_with.fu_shopping": 1.0, + "help_with.fu_games": 1.0, + "help_with.fu_stove": 1.0, + "help_with.fu_mealprep": 1.0, + "help_with.fu_events": 1.0, + "help_with.fu_payattn": 1.0, + "help_with.fu_remdates": 1.0, + "help_with.fu_travel": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b7v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b8v1.json b/src/encoded/schemas/fvp_b8v1.json new file mode 100644 index 0000000000..81747289e1 --- /dev/null +++ b/src/encoded/schemas/fvp_b8v1.json @@ -0,0 +1,121 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP VISIT PACKETFORM B8: NEUROLOGICAL EXAMINATION FINDINGS", + "description": "INSTRUCTIONS: This form must be completed by a clinician with experience in assessing the neurological signs listed below and in attributing the observed findings to a particular syndrome. Please use your best clinical judgment in assigning the syndrome. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B8. Link to NACC Coding Guidebook", + "id": "/profiles/fvp_b8v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?" + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?" + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?" + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?" + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?" + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?" + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?" + } + + }, + "boost_values": { + "patient": 1.0, + "normal": 1.0, + "focldef": 1.0, + "gaitdis": 1.0, + "eyemove": 1.0 + + }, + "changelog": "/profiles/changelogs/fvp_b8v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b8v2.json b/src/encoded/schemas/fvp_b8v2.json new file mode 100644 index 0000000000..924b767fce --- /dev/null +++ b/src/encoded/schemas/fvp_b8v2.json @@ -0,0 +1,121 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP VISIT PACKETFORM B8V2: NEUROLOGICAL EXAMINATION FINDINGS", + "description": "INSTRUCTIONS: This form must be completed by a clinician with experience in assessing the neurological signs listed below and in attributing the observed findings to a particular syndrome. Please use your best clinical judgment in assigning the syndrome. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B8. Link to NACC Coding Guidebook", + "id": "/profiles/fvp_b8v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?" + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?" + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?" + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?" + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?" + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?" + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?" + } + + }, + "boost_values": { + "patient": 1.0, + "normal": 1.0, + "focldef": 1.0, + "gaitdis": 1.0, + "eyemove": 1.0 + + }, + "changelog": "/profiles/changelogs/fvp_b8v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b8v3.json b/src/encoded/schemas/fvp_b8v3.json new file mode 100644 index 0000000000..15c412b19a --- /dev/null +++ b/src/encoded/schemas/fvp_b8v3.json @@ -0,0 +1,825 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B8: NEUROLOGICAL EXAMINATION FINDINGS", + "description": "INSTRUCTIONS: This form must be completed by a clinician with experience in assessing the neurological signs listed\nbelow and in attributing the observed findings to a particular syndrome. Please use your best clinical judgment in\nassigning the syndrome. For additional clarification and examples, see UDS Coding Guidebook for Follow-up Visit\nPacket, Form B8. Link to NACC Coding Guidebook", + "id": "/profiles/uds_fvp_b8v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "fu_normexam" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_normexam": { + "title": "1. Were there abnormal neurological exam findings?", + + "type": "string", + "enum": [ + "0 No abnormal findings (END FORM HERE)", + "1 Yes - abnormal findings were consistent with syndromes listed in Questions 2-8", + "2 Yes - abnormal findings were consistent with age-associated changes or irrelevant to dementing disorders (e.g., Bell's palsy) (SKIP TO QUESTION 8)" + ] + }, + "check_questions": { + "title": "INSTRUCTIONS FOR QUESTIONS 2-8\nPlease complete the appropriate sections below, using your best clinical judgment in selecting findings that indicate\nthe likely syndrome(s) that is/are present.\nCHECK ALL OF THE GROUPS OF FINDINGS/SYNDROMES THAT WERE PRESENT:", + + "type": "object", + "properties": { + "fu_parksign": { + "title": "2. Parkinsonian signs", + "description": "Findings not marked Yes or Not assessed will default\nto No in the NACC database.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 3)", + "1 Yes" + ] + }, + "park_left": { + "title": "Parkinsonian signs - LEFT", + + "type": "object", + "properties": { + "fu_resttrl": { + "title": "2a1. Resting tremor", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_slowingl": { + "title": "2b1. Slowing of fine motor movements", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_rigidl": { + "title": "2c1. Rigidity", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "park_right": { + "title": "Parkinsonian signs - RIGHT", + + "type": "object", + "properties": { + "fu_resttrr": { + "title": "2a2. Resting tremor", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_slowingr": { + "title": "2b2. Slowing of fine motor movements", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_rigidr": { + "title": "2c2. Rigidity", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "park_continue": { + "title": "Parkinsonian signs - continued", + + "type": "object", + "properties": { + "fu_brady": { + "title": "2d. Bradykinesia", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_parkgait": { + "title": "2e. Parkinsonian gait disorder", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_postinst": { + "title": "2f. Postural instability", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "fu_cvdsigns": { + "title": "3. Neurological signs considered by examiner to be most likely consistent with cerebrovascular disease", + + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 4)", + "1 Yes" + ] + }, + "consist_mark": { + "title": "Findings consistent with stroke/cerebrovascular disease. Findings not marked Yes or Not\nassessed will default to No in the NACC database.", + + "type": "object", + "properties": { + "fu_cortdef": { + "title": "3a. Cortical cognitive deficit (e.g., aphasia, apraxia, neglect)", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_sivdfind": { + "title": "3b. Focal or other neurological findings consistent with SIVD (subcortical ischemic vascular dementia)", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "consist_left": { + "title": "Findings consistent with stroke/cerebrovascular disease - LEFT. Findings not marked Yes or\nNot assessed will default to No in the NACC database.", + + "type": "object", + "properties": { + "fu_cvdmotl": { + "title": "3c1. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc..)", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_cortvisl": { + "title": "3d1. Cortical visual field loss", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_somatl": { + "title": "3e1. Somatosensory loss", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "consist_right": { + "title": "Findings consistent with stroke/cerebrovascular disease - RIGHT. Findings not marked Yes or\nNot assessed will default to No in the NACC database.", + + "type": "object", + "properties": { + "fu_cvdmotr": { + "title": "3c2. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc..)", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_cortvisr": { + "title": "3d2. Cortical visual field loss", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_somatr": { + "title": "3e2. Somatosensory loss", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "post_cort": { + "title": "Posterior cortical atrophy or apraxia of gaze", + + "type": "object", + "properties": { + "fu_postcort": { + "title": "4. Higher cortical visual problem suggesting posterior cortical atrophy (e.g., prosopagnosia, simultagnosia, Balint's syndrome) or apraxia of gaze", + + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "psp": { + "title": "PSP, corticobasal syndrome or other", + + "type": "object", + "properties": { + "fu_pspcbs": { + "title": "5. Findings suggestive of progressive supranuclear palsy (PSP), corticobasal syndrome, or other related disorders", + + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 6)", + "1 Yes" + ] + } + } + }, + "findings": { + "title": "Findings - Findings not marked Yes or Not assessed will default to No in the NACC database.", + + "type": "object", + "properties": { + "fu_eyepsp": { + "title": "5a. Eye movement changes consistent with PSP", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_dyspsp": { + "title": "5b. Dysarthria consistent with PSP", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_axialpsp": { + "title": "5c. Axial rigidity consistent with PSP", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_gaitpsp": { + "title": "5d. Gait disorder consistent with PSP", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_apraxsp": { + "title": "5e. Apraxia of speech", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "finding_left": { + "title": "Findings - LEFT Findings not marked Yes or Not assessed will default to No in the NACC database.", + + "type": "object", + "properties": { + "fu_apraxl": { + "title": "5f1. Apraxia consistent with CBS", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_cortsenl": { + "title": "5g1. Cortical sensory deficits consistent with CBS", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_ataxl": { + "title": "5h1. Ataxia consistent with CBS", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_alienlml": { + "title": "5i1. Alien limb consistent with CBS", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_dystonl": { + "title": "5j1. Dystonia consistent with CBS, PSP, or related disorder", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_myocllt": { + "title": "5k1. Myoclonus consistent with CBS", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "finding_right": { + "title": "Findings - RIGHT Findings not marked Yes or Not assessed will default to No in the NACC database.", + + "type": "object", + "properties": { + "fu_apraxr": { + "title": "5f2. Apraxia consistent with CBS", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_cortsenr": { + "title": "5g2. Cortical sensory deficits consistent with CBS", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_ataxr": { + "title": "5h2. Ataxia consistent with CBS", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_alienlmr": { + "title": "5i2. Alien limb consistent with CBS", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_dystonr": { + "title": "5j2. Dystonia consistent with CBS, PSP, or related disorder", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "fu_myoclrt": { + "title": "5k2. Myoclonus consistent with CBS", + + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "fu_alsfind": { + "title": "6. Findings suggesting ALS (e.g., muscle wasting, fasciculations, upper motor neuron and/or lower motor neuron signs)", + + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_gaitnph": { + "title": "7. Normal-pressure hydrocephalus: gait apraxia", + + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_othneur": { + "title": "8. Other findings (e.g., cerebellar ataxia, chorea, myoclonus)\n(NOTE: For this question, do not specify symptoms that have already been checked above)", + + "type": "string", + "enum": [ + "0 No", + "1 Yes (SPECIFY):" + ] + }, + "fu_othneurx": { + "title": "8a. Other findings from neurological exam, please specify:", + + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_normexam": { + "title": "1. Were there abnormal neurological exam findings?" + }, + "check_questions.fu_parksign": { + "title": "2. Parkinsonian signs" + }, + "check_questions.park_left.fu_resttrl": { + "title": "2a1. Resting tremor" + }, + "check_questions.park_left.fu_slowingl": { + "title": "2b1. Slowing of fine motor movements" + }, + "check_questions.park_left.fu_rigidl": { + "title": "2c1. Rigidity" + }, + "check_questions.park_right.fu_resttrr": { + "title": "2a2. Resting tremor" + }, + "check_questions.park_right.fu_slowingr": { + "title": "2b2. Slowing of fine motor movements" + }, + "check_questions.park_right.fu_rigidr": { + "title": "2c2. Rigidity" + }, + "check_questions.park_continue.fu_brady": { + "title": "2d. Bradykinesia" + }, + "check_questions.park_continue.fu_parkgait": { + "title": "2e. Parkinsonian gait disorder" + }, + "check_questions.park_continue.fu_postinst": { + "title": "2f. Postural instability" + }, + "check_questions.fu_cvdsigns": { + "title": "3. Neurological signs considered by examiner to be most likely consistent with cerebrovascular disease" + }, + "check_questions.consist_mark.fu_cortdef": { + "title": "3a. Cortical cognitive deficit (e.g., aphasia, apraxia, neglect)" + }, + "check_questions.consist_mark.fu_sivdfind": { + "title": "3b. Focal or other neurological findings consistent with SIVD (subcortical ischemic vascular dementia)" + }, + "check_questions.consist_left.fu_cvdmotl": { + "title": "3c1. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc..)" + }, + "check_questions.consist_left.fu_cortvisl": { + "title": "3d1. Cortical visual field loss" + }, + "check_questions.consist_left.fu_somatl": { + "title": "3e1. Somatosensory loss" + }, + "check_questions.consist_right.fu_cvdmotr": { + "title": "3c2. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc..)" + }, + "check_questions.consist_right.fu_cortvisr": { + "title": "3d2. Cortical visual field loss" + }, + "check_questions.consist_right.fu_somatr": { + "title": "3e2. Somatosensory loss" + }, + "check_questions.post_cort.fu_postcort": { + "title": "4. Higher cortical visual problem suggesting posterior cortical atrophy (e.g., prosopagnosia, simultagnosia, Balint's syndrome) or apraxia of gaze" + }, + "check_questions.psp.fu_pspcbs": { + "title": "5. Findings suggestive of progressive supranuclear palsy (PSP), corticobasal syndrome, or other related disorders" + }, + "check_questions.findings.fu_eyepsp": { + "title": "5a. Eye movement changes consistent with PSP" + }, + "check_questions.findings.fu_dyspsp": { + "title": "5b. Dysarthria consistent with PSP" + }, + "check_questions.findings.fu_axialpsp": { + "title": "5c. Axial rigidity consistent with PSP" + }, + "check_questions.findings.fu_gaitpsp": { + "title": "5d. Gait disorder consistent with PSP" + }, + "check_questions.findings.fu_apraxsp": { + "title": "5e. Apraxia of speech" + }, + "check_questions.finding_left.fu_apraxl": { + "title": "5f1. Apraxia consistent with CBS" + }, + "check_questions.finding_left.fu_cortsenl": { + "title": "5g1. Cortical sensory deficits consistent with CBS" + }, + "check_questions.finding_left.fu_ataxl": { + "title": "5h1. Ataxia consistent with CBS" + }, + "check_questions.finding_left.fu_alienlml": { + "title": "5i1. Alien limb consistent with CBS" + }, + "check_questions.finding_left.fu_dystonl": { + "title": "5j1. Dystonia consistent with CBS, PSP, or related disorder" + }, + "check_questions.finding_left.fu_myocllt": { + "title": "5k1. Myoclonus consistent with CBS" + }, + "check_questions.finding_right.fu_apraxr": { + "title": "5f2. Apraxia consistent with CBS" + }, + "check_questions.finding_right.fu_cortsenr": { + "title": "5g2. Cortical sensory deficits consistent with CBS" + }, + "check_questions.finding_right.fu_ataxr": { + "title": "5h2. Ataxia consistent with CBS" + }, + "check_questions.finding_right.fu_alienlmr": { + "title": "5i2. Alien limb consistent with CBS" + }, + "check_questions.finding_right.fu_dystonr": { + "title": "5j2. Dystonia consistent with CBS, PSP, or related disorder" + }, + "check_questions.finding_right.fu_myoclrt": { + "title": "5k2. Myoclonus consistent with CBS" + }, + "check_questions.fu_alsfind": { + "title": "6. Findings suggesting ALS (e.g., muscle wasting, fasciculations, upper motor neuron and/or lower motor neuron signs)" + }, + "check_questions.fu_gaitnph": { + "title": "7. Normal-pressure hydrocephalus: gait apraxia" + }, + "check_questions.fu_othneur": { + "title": "8. Other findings (e.g., cerebellar ataxia, chorea, myoclonus)\n(NOTE: For this question, do not specify symptoms that have already been checked above)" + }, + "check_questions.fu_othneurx": { + "title": "8a. Other findings from neurological exam, please specify:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_normexam": { + "title": "1. Were there abnormal neurological exam findings?" + }, + "check_questions.fu_parksign": { + "title": "2. Parkinsonian signs" + }, + "check_questions.park_left.fu_resttrl": { + "title": "2a1. Resting tremor" + }, + "check_questions.park_left.fu_slowingl": { + "title": "2b1. Slowing of fine motor movements" + }, + "check_questions.park_left.fu_rigidl": { + "title": "2c1. Rigidity" + }, + "check_questions.park_right.fu_resttrr": { + "title": "2a2. Resting tremor" + }, + "check_questions.park_right.fu_slowingr": { + "title": "2b2. Slowing of fine motor movements" + }, + "check_questions.park_right.fu_rigidr": { + "title": "2c2. Rigidity" + }, + "check_questions.park_continue.fu_brady": { + "title": "2d. Bradykinesia" + }, + "check_questions.park_continue.fu_parkgait": { + "title": "2e. Parkinsonian gait disorder" + }, + "check_questions.park_continue.fu_postinst": { + "title": "2f. Postural instability" + }, + "check_questions.fu_cvdsigns": { + "title": "3. Neurological signs considered by examiner to be most likely consistent with cerebrovascular disease" + }, + "check_questions.consist_mark.fu_cortdef": { + "title": "3a. Cortical cognitive deficit (e.g., aphasia, apraxia, neglect)" + }, + "check_questions.consist_mark.fu_sivdfind": { + "title": "3b. Focal or other neurological findings consistent with SIVD (subcortical ischemic vascular dementia)" + }, + "check_questions.consist_left.fu_cvdmotl": { + "title": "3c1. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc..)" + }, + "check_questions.consist_left.fu_cortvisl": { + "title": "3d1. Cortical visual field loss" + }, + "check_questions.consist_left.fu_somatl": { + "title": "3e1. Somatosensory loss" + }, + "check_questions.consist_right.fu_cvdmotr": { + "title": "3c2. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc..)" + }, + "check_questions.consist_right.fu_cortvisr": { + "title": "3d2. Cortical visual field loss" + }, + "check_questions.consist_right.fu_somatr": { + "title": "3e2. Somatosensory loss" + }, + "check_questions.post_cort.fu_postcort": { + "title": "4. Higher cortical visual problem suggesting posterior cortical atrophy (e.g., prosopagnosia, simultagnosia, Balint's syndrome) or apraxia of gaze" + }, + "check_questions.psp.fu_pspcbs": { + "title": "5. Findings suggestive of progressive supranuclear palsy (PSP), corticobasal syndrome, or other related disorders" + }, + "check_questions.findings.fu_eyepsp": { + "title": "5a. Eye movement changes consistent with PSP" + }, + "check_questions.findings.fu_dyspsp": { + "title": "5b. Dysarthria consistent with PSP" + }, + "check_questions.findings.fu_axialpsp": { + "title": "5c. Axial rigidity consistent with PSP" + }, + "check_questions.findings.fu_gaitpsp": { + "title": "5d. Gait disorder consistent with PSP" + }, + "check_questions.findings.fu_apraxsp": { + "title": "5e. Apraxia of speech" + }, + "check_questions.finding_left.fu_apraxl": { + "title": "5f1. Apraxia consistent with CBS" + }, + "check_questions.finding_left.fu_cortsenl": { + "title": "5g1. Cortical sensory deficits consistent with CBS" + }, + "check_questions.finding_left.fu_ataxl": { + "title": "5h1. Ataxia consistent with CBS" + }, + "check_questions.finding_left.fu_alienlml": { + "title": "5i1. Alien limb consistent with CBS" + }, + "check_questions.finding_left.fu_dystonl": { + "title": "5j1. Dystonia consistent with CBS, PSP, or related disorder" + }, + "check_questions.finding_left.fu_myocllt": { + "title": "5k1. Myoclonus consistent with CBS" + }, + "check_questions.finding_right.fu_apraxr": { + "title": "5f2. Apraxia consistent with CBS" + }, + "check_questions.finding_right.fu_cortsenr": { + "title": "5g2. Cortical sensory deficits consistent with CBS" + }, + "check_questions.finding_right.fu_ataxr": { + "title": "5h2. Ataxia consistent with CBS" + }, + "check_questions.finding_right.fu_alienlmr": { + "title": "5i2. Alien limb consistent with CBS" + }, + "check_questions.finding_right.fu_dystonr": { + "title": "5j2. Dystonia consistent with CBS, PSP, or related disorder" + }, + "check_questions.finding_right.fu_myoclrt": { + "title": "5k2. Myoclonus consistent with CBS" + }, + "check_questions.fu_alsfind": { + "title": "6. Findings suggesting ALS (e.g., muscle wasting, fasciculations, upper motor neuron and/or lower motor neuron signs)" + }, + "check_questions.fu_gaitnph": { + "title": "7. Normal-pressure hydrocephalus: gait apraxia" + }, + "check_questions.fu_othneur": { + "title": "8. Other findings (e.g., cerebellar ataxia, chorea, myoclonus)\n(NOTE: For this question, do not specify symptoms that have already been checked above)" + }, + "check_questions.fu_othneurx": { + "title": "8a. Other findings from neurological exam, please specify:" + } + }, + "boost_values": { + "patient": 1.0, + "fu_normexam": 1.0, + "check_questions.fu_parksign": 1.0, + "check_questions.park_left.fu_resttrl": 1.0, + "check_questions.park_left.fu_slowingl": 1.0, + "check_questions.park_left.fu_rigidl": 1.0, + "check_questions.park_right.fu_resttrr": 1.0, + "check_questions.park_right.fu_slowingr": 1.0, + "check_questions.park_right.fu_rigidr": 1.0, + "check_questions.park_continue.fu_brady": 1.0, + "check_questions.park_continue.fu_parkgait": 1.0, + "check_questions.park_continue.fu_postinst": 1.0, + "check_questions.fu_cvdsigns": 1.0, + "check_questions.consist_mark.fu_cortdef": 1.0, + "check_questions.consist_mark.fu_sivdfind": 1.0, + "check_questions.consist_left.fu_cvdmotl": 1.0, + "check_questions.consist_left.fu_cortvisl": 1.0, + "check_questions.consist_left.fu_somatl": 1.0, + "check_questions.consist_right.fu_cvdmotr": 1.0, + "check_questions.consist_right.fu_cortvisr": 1.0, + "check_questions.consist_right.fu_somatr": 1.0, + "check_questions.post_cort.fu_postcort": 1.0, + "check_questions.psp.fu_pspcbs": 1.0, + "check_questions.findings.fu_eyepsp": 1.0, + "check_questions.findings.fu_dyspsp": 1.0, + "check_questions.findings.fu_axialpsp": 1.0, + "check_questions.findings.fu_gaitpsp": 1.0, + "check_questions.findings.fu_apraxsp": 1.0, + "check_questions.finding_left.fu_apraxl": 1.0, + "check_questions.finding_left.fu_cortsenl": 1.0, + "check_questions.finding_left.fu_ataxl": 1.0, + "check_questions.finding_left.fu_alienlml": 1.0, + "check_questions.finding_left.fu_dystonl": 1.0, + "check_questions.finding_left.fu_myocllt": 1.0, + "check_questions.finding_right.fu_apraxr": 1.0, + "check_questions.finding_right.fu_cortsenr": 1.0, + "check_questions.finding_right.fu_ataxr": 1.0, + "check_questions.finding_right.fu_alienlmr": 1.0, + "check_questions.finding_right.fu_dystonr": 1.0, + "check_questions.finding_right.fu_myoclrt": 1.0, + "check_questions.fu_alsfind": 1.0, + "check_questions.fu_gaitnph": 1.0, + "check_questions.fu_othneur": 1.0, + "check_questions.fu_othneurx": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b8v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b9v1.json b/src/encoded/schemas/fvp_b9v1.json new file mode 100644 index 0000000000..78f7655074 --- /dev/null +++ b/src/encoded/schemas/fvp_b9v1.json @@ -0,0 +1,771 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet, Form B9: Clinician Judgment of Symptoms", + "description": "NOTE: This form is to be completed by the clinician. For additional clarificationADC \nand examples, see UDS Coding Guidebook for Initial Visit Packet, Form B9.\nCheck only one box per question. \n", + "id": "/profiles/fvp_b9v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "B9CHG": { + "title": "0Z", + "description": "Indicate whether the information has changed since the previous UDS visit by checking only one of the three boxes below and following the corresponding instructions:", + "comment": "Skips If 1 (first box is checked), end form here. If 3 (third box is checked), complete only questions 4, 7, and 10.", + "type": "string", + "enum": [ + "1 There have been no meaningful changes in the subject’s cognition, behavior, or motor function since the previous UDS visit. (If this box is checked, end form here.)", + "2 At the previous UDS visit, the clinician DID NOT report a decline in the subject’s memory, non-memory cognitive abilities, behavior, or motor function (i.e., question 3a = ‘0’). However, there have been meaningful changes since then. (If this box is checked, complete this entire form.)", + "3 At the previous UDS visit, the clinician DID report a decline in the subject’s memory, non-memory cognitive abilities, behavior, or motor function (i.e., question 3a = ‘1’). Since then, there have been additional meaningful changes.(If this box is checked, complete questions 4, 7, and 10 only.)" + ] + }, + + "memo_comp": { + "title": "MEMORY COMPLAINT/AGE OF ONSET:", + "description": "", + "type": "object", + "properties": { + "DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs?", + "description": "Skips If no, end form here.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECAGE": { + "title": "3B At what age did the decline begin (based upon the clinician’s assessment)?", + "description": "15 – 110,999 Unknown, Blank if #3A, DECCLIN = 0 (No).", + "type": "string" + } + } + }, + "cogn_symp": { + "title": "COGNITIVE SYMPTOMS:", + "type": "object", + "properties": { + "indicate_impair": { + "title": "4.Has there been a meaningful decline in the subject’s usual abilities for any\nof the following?:\n", + "type": "object", + "properties": { + "COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around).", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGOTHR": { + "title": "4F Cognitive symptoms, other", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGOTHRX": { + "title": "4F1 Cognitive symptoms, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).Blank if #3A, DECCLIN = 0 (No), or if #4G, COGOTHR ≠ 1 (Yes).", + "type": "string" + } + } + }, + "COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Memory", + "2 Judgment and problem solving", + "3 Language", + "4 Visuospatial function", + "5 Attention/concentration", + "6 Other", + "88 N/A", + "99 Unknown" + ] + }, + "COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).Blank if #3A, DECCLIN = 0 (No), or if #5, COGFRST ≠ 6 (Other).", + "type": "string" + }, + "COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No) or if #6, COGMODE ≠ 4 (Other).", + "type": "string" + } + } + }, + "beha_symp": { + "title": "BEHAVIOR SYMPTOMS:", + "description": "", + "type": "object", + "properties": { + "indicate_beha_symp": { + "title": "7.Which of the following meaningful changes in behavior have been present during the course of the illness?", + "description": "", + "type": "object", + "properties": { + "BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "psychosis": { + "title": "Psychosis", + "description": "", + "type": "object", + "properties": { + "BEVHALL": { + "title": "7C1 Visual hallucinations", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEAHALL": { + "title": "7C2 Auditory hallucinations", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions], unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEOTHR": { + "title": "7H Behavior symptoms, other", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEOTHRX": { + "title": "7H1 Behavior symptoms, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #7I, BEOTHR ≠ 1 (Yes).", + "type": "string" + } + } + }, + "BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Apathy/withdrawal", + "2 Depression", + "3 Psychosis", + "4 Disinhibition", + "5 Irritability", + "6 Agitation", + "7 Personality change", + "8 Other", + "88 NA", + "99 Unknown" + ] + }, + "BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #8, BEFRST ≠ 8 (Other).", + "type": "string" + }, + "BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #9 BEMODE ≠ 4 (Other).", + "type": "string" + } + } + }, + "motor_symp": { + "title": "MOTOR SYMPTOMS:", + "description": "", + "type": "object", + "properties": { + "indicate_motor_symp": { + "title": "10.Which of the following meaningful changes in motor function have been\npresent during the course of the illness?\n", + "type": "object", + "properties": { + "MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gait disorder", + "2 Falls", + "3 Tremor", + "4 Slowness", + "88 NA", + "99 Unknown" + ] + }, + "MOMODE": { + "title": "12 Mode of onset of motor symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #12 MOMODE ≠ 4 (Other).", + "type": "string" + } + } + }, + "overall": { + "title": "OVERALL SUMMARY OF SYMPTOMS ONSET:", + "description": "", + "type": "object", + "properties": { + "COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual progressive", + "2 Stepwise", + "3 Static", + "4 Fluctuating", + "5 Improved", + "9 Unknown" + ] + }, + "FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Cognition", + "2 Behavior", + "3 Motor function", + "9 Unknown" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "memo_comp.DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?" + }, + "memo_comp.DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?" + }, + "memo_comp.DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs, or have there been motor/movement changes relative to previously attained abilities?" + }, + "memo_comp.DECAGE": { + "title": "3B At what age did the cognitive decline begin (based upon the clinician’s assessment)?" + }, + "cogn_symp.indicate_impair.COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)" + }, + "cogn_symp.indicate_impair.COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)" + }, + "cogn_symp.indicate_impair.COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)" + }, + "cogn_symp.indicate_impair.COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around)." + }, + "cogn_symp.indicate_impair.COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)" + }, + "cogn_symp.indicate_impair.COGOTHR": { + "title": "4F Cognitive symptoms, other" + }, + "cogn_symp.indicate_impair.COGOTHRX": { + "title": "4F1 Cognitive symptoms, other – specify" + }, + "cogn_symp.COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:" + }, + "cogn_symp.COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify" + }, + "cogn_symp.COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:" + }, + "cogn_symp.COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify" + }, + "beha_symp.indicate_beha_symp.BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)" + }, + "beha_symp.indicate_beha_symp.BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": { + "title": "7C1 Visual hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": { + "title": "7C2 Auditory hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs" + }, + "beha_symp.indicate_beha_symp.BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)" + }, + "beha_symp.indicate_beha_symp.BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)" + }, + "beha_symp.indicate_beha_symp.BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)" + }, + "beha_symp.indicate_beha_symp.BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions, unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)" + }, + "beha_symp.indicate_beha_symp.BEOTHR": { + "title": "7H Behavior symptoms, other" + }, + "beha_symp.indicate_beha_symp.BEOTHRX": { + "title": "7H1 Behavior symptoms, other – specify" + }, + "beha_symp.BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:" + }, + "beha_symp.BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify" + }, + "beha_symp.BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:" + }, + "beha_symp.BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify" + }, + "motor_symp.indicate_motor_symp.MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)" + }, + "motor_symp.indicate_motor_symp.MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)" + }, + "motor_symp.indicate_motor_symp.MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)" + }, + "motor_symp.indicate_motor_symp.MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)" + }, + "motor_symp.MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:" + }, + "motor_symp.MOMODE": { + "title": "12 Mode of onset of motor symptoms:" + }, + "motor_symp.MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify" + }, + "overall.COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:" + }, + "overall.FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "memo_comp.DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?" + }, + "memo_comp.DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?" + }, + "memo_comp.DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs, or have there been motor/movement changes relative to previously attained abilities?" + }, + "memo_comp.DECAGE": { + "title": "3B At what age did the cognitive decline begin (based upon the clinician’s assessment)?" + }, + "cogn_symp.indicate_impair.COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)" + }, + "cogn_symp.indicate_impair.COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)" + }, + "cogn_symp.indicate_impair.COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)" + }, + "cogn_symp.indicate_impair.COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around)." + }, + "cogn_symp.indicate_impair.COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)" + }, + "cogn_symp.indicate_impair.COGOTHR": { + "title": "4F Cognitive symptoms, other" + }, + "cogn_symp.indicate_impair.COGOTHRX": { + "title": "4F1 Cognitive symptoms, other – specify" + }, + "cogn_symp.COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:" + }, + "cogn_symp.COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify" + }, + "cogn_symp.COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:" + }, + "cogn_symp.COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify" + }, + "beha_symp.indicate_beha_symp.BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)" + }, + "beha_symp.indicate_beha_symp.BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": { + "title": "7C1 Visual hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": { + "title": "7C2 Auditory hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs" + }, + "beha_symp.indicate_beha_symp.BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)" + }, + "beha_symp.indicate_beha_symp.BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)" + }, + "beha_symp.indicate_beha_symp.BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)" + }, + "beha_symp.indicate_beha_symp.BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions, unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)" + }, + "beha_symp.indicate_beha_symp.BEOTHR": { + "title": "7H Behavior symptoms, other" + }, + "beha_symp.indicate_beha_symp.BEOTHRX": { + "title": "7H1 Behavior symptoms, other – specify" + }, + "beha_symp.BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:" + }, + "beha_symp.BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify" + }, + "beha_symp.BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:" + }, + "beha_symp.BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify" + }, + "motor_symp.indicate_motor_symp.MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)" + }, + "motor_symp.indicate_motor_symp.MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)" + }, + "motor_symp.indicate_motor_symp.MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)" + }, + "motor_symp.indicate_motor_symp.MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)" + }, + "motor_symp.MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:" + }, + "motor_symp.MOMODE": { + "title": "12 Mode of onset of motor symptoms:" + }, + "motor_symp.MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify" + }, + "overall.COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:" + }, + "overall.FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:" + } + }, + "boost_values": { + "patient": 1.0, + "memo_comp.DECSUB": 1.0, + "memo_comp.DECIN": 1.0, + "memo_comp.DECCLIN": 1.0, + "memo_comp.DECAGE": 1.0, + "cogn_symp.indicate_impair.COGMEM": 1.0, + "cogn_symp.indicate_impair.COGJUDG": 1.0, + "cogn_symp.indicate_impair.COGLANG": 1.0, + "cogn_symp.indicate_impair.COGVIS": 1.0, + "cogn_symp.indicate_impair.COGATTN": 1.0, + "cogn_symp.indicate_impair.COGOTHR": 1.0, + "cogn_symp.indicate_impair.COGOTHRX": 1.0, + "cogn_symp.COGFRST": 1.0, + "cogn_symp.COGFRSTX": 1.0, + "cogn_symp.COGMODE": 1.0, + "cogn_symp.COGMODEX": 1.0, + "beha_symp.indicate_beha_symp.BEAPATHY": 1.0, + "beha_symp.indicate_beha_symp.BEDEP": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": 1.0, + "beha_symp.indicate_beha_symp.BEDISIN": 1.0, + "beha_symp.indicate_beha_symp.BEIRRIT": 1.0, + "beha_symp.indicate_beha_symp.BEAGIT": 1.0, + "beha_symp.indicate_beha_symp.BEPERCH": 1.0, + "beha_symp.indicate_beha_symp.BEOTHR": 1.0, + "beha_symp.indicate_beha_symp.BEOTHRX": 1.0, + "beha_symp.BEFRST": 1.0, + "beha_symp.BEFRSTX": 1.0, + "beha_symp.BEMODE": 1.0, + "beha_symp.BEMODEX": 1.0, + "motor_symp.indicate_motor_symp.MOGAIT": 1.0, + "motor_symp.indicate_motor_symp.MOFALLS": 1.0, + "motor_symp.indicate_motor_symp.MOTREM": 1.0, + "motor_symp.indicate_motor_symp.MOSLOW": 1.0, + "motor_symp.MOFRST": 1.0, + "motor_symp.MOMODE": 1.0, + "motor_symp.MOMODEX": 1.0, + "overall.COURSE": 1.0, + "overall.FRSTCHG": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b9v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b9v2.json b/src/encoded/schemas/fvp_b9v2.json new file mode 100644 index 0000000000..14a4d81c31 --- /dev/null +++ b/src/encoded/schemas/fvp_b9v2.json @@ -0,0 +1,832 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet, Form B9: Clinician Judgment of Symptoms", + "description": "NOTE: This form is to be completed by the clinician. For additional clarificationADC \nand examples, see UDS Coding Guidebook for Initial Visit Packet, Form B9.\nCheck only one box per question. \n", + "id": "/profiles/fvp_b9v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "memo_comp": { + "title": "MEMORY COMPLAINT/AGE OF ONSET:", + "description": "Relative to previously attained abilities:", + "type": "object", + "properties": { + "DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs, or have there been motor/movement changes relative to previously attained abilities?", + "description": "Skips If no, end form here.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECAGE": { + "title": "3B At what age did the cognitive decline begin (based upon the clinician’s assessment)?", + "description": "15 – 110,999 Unknown, 888 N/A. Blank if #3A, DECCLIN = 0 (No).", + "type": "string" + } + } + }, + "cogn_symp": { + "title": "COGNITIVE SYMPTOMS:", + + "type": "object", + "properties": { + "indicate_impair": { + "title": "4. Indicate whether the subject currently is impaired meaningfully, relative to\npreviously attained abilities, in the following cognitive domains or has\nfluctuating cognition:\n", + + "type": "object", + "properties": { + "COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around).", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGFLUC": { + "title": "4F Fluctuating cognition (Does s/he have pronounced variation in attention and alertness, noticeably over hours or days? For example, long periods of staring into space or lapses, or times when his/her ideas have a disorganized flow.)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGOTHR": { + "title": "4G Cognitive symptoms, other", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGOTHRX": { + "title": "4G1 Cognitive symptoms, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).Blank if #3A, DECCLIN = 0 (No), or if #4G, COGOTHR ≠ 1 (Yes).", + "type": "string" + } + } + }, + "COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Memory", + "2 Judgment and problem solving", + "3 Language", + "4 Visuospatial function", + "5 Attention/concentration", + "6 Other", + "7 Fluctuating cognition", + "88 N/A", + "99 Unknown" + ] + }, + "COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).Blank if #3A, DECCLIN = 0 (No), or if #5, COGFRST ≠ 6 (Other).", + "type": "string" + }, + "COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No) or if #6, COGMODE ≠ 4 (Other).", + "type": "string" + } + } + }, + "beha_symp": { + "title": "BEHAVIOR SYMPTOMS:", + + "type": "object", + "properties": { + "indicate_beha_symp": { + "title": "7. Indicate whether the subject currently manifests the following behavioral\nsymptoms:\n", + + "type": "object", + "properties": { + "BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "psychosis": { + "title": "Psychosis", + + "type": "object", + "properties": { + "BEVHALL": { + "title": "7C1 Visual hallucinations", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEVWELL": { + "title": "7C1A If having visual hallucinations, are the hallucinations well-formed and detailed", + "description": "Blank if #3A, DECCLIN = 0 (No) or #7C1, BEVHALL ≠ 1 (YES).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEAHALL": { + "title": "7C2 Auditory hallucinations", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions], unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEREM": { + "title": "7H REM sleep behavior disorder (Does the subject appear to act out his/her dreams while sleeping (e.g., punch or flail their arms, shout or scream?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEOTHR": { + "title": "7I Behavior symptoms, other", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEOTHRX": { + "title": "7I1 Behavior symptoms, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #7I, BEOTHR ≠ 1 (Yes).", + "type": "string" + } + } + }, + "BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Apathy/withdrawal", + "2 Depression", + "3 Psychosis", + "4 Disinhibition", + "5 Irritability", + "6 Agitation", + "7 Personality change", + "8 Other", + "9 REM sleep behavior disorder", + "88 NA", + "99 Unknown" + ] + }, + "BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #8, BEFRST ≠ 8 (Other).", + "type": "string" + }, + "BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #9 BEMODE ≠ 4 (Other).", + "type": "string" + } + } + }, + "motor_symp": { + "title": "MOTOR SYMPTOMS:", + + "type": "object", + "properties": { + "indicate_motor_symp": { + "title": "10. Indicate whether the subject currently has the following motor symptoms:", + + "type": "object", + "properties": { + "MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gait disorder", + "2 Falls", + "3 Tremor", + "4 Slowness", + "88 NA", + "99 Unknown" + ] + }, + "MOMODE": { + "title": "12 Mode of onset of motor symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #12 MOMODE ≠ 4 (Other).", + "type": "string" + }, + "MOMOPARK": { + "title": "12A If there were changes in motor function, were these suggestive of parkinsonism?", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "88 NA" + ] + } + } + }, + "overall": { + "title": "OVERALL SUMMARY OF SYMPTOMS ONSET:", + + "type": "object", + "properties": { + "COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual progressive", + "2 Stepwise", + "3 Static", + "4 Fluctuating", + "5 Improved", + "9 Unknown" + ] + }, + "FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Cognition", + "2 Behavior", + "3 Motor function", + "9 Unknown" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "memo_comp.DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?" + }, + "memo_comp.DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?" + }, + "memo_comp.DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs, or have there been motor/movement changes relative to previously attained abilities?" + }, + "memo_comp.DECAGE": { + "title": "3B At what age did the cognitive decline begin (based upon the clinician’s assessment)?" + }, + "cogn_symp.indicate_impair.COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)" + }, + "cogn_symp.indicate_impair.COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)" + }, + "cogn_symp.indicate_impair.COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)" + }, + "cogn_symp.indicate_impair.COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around)." + }, + "cogn_symp.indicate_impair.COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)" + }, + "cogn_symp.indicate_impair.COGFLUC": { + "title": "4F Fluctuating cognition (Does s/he have pronounced variation in attention and alertness, noticeably over hours or days? For example, long periods of staring into space or lapses, or times when his/her ideas have a disorganized flow.)" + }, + "cogn_symp.indicate_impair.COGOTHR": { + "title": "4G Cognitive symptoms, other" + }, + "cogn_symp.indicate_impair.COGOTHRX": { + "title": "4G1 Cognitive symptoms, other – specify" + }, + "cogn_symp.COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:" + }, + "cogn_symp.COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify" + }, + "cogn_symp.COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:" + }, + "cogn_symp.COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify" + }, + "beha_symp.indicate_beha_symp.BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)" + }, + "beha_symp.indicate_beha_symp.BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": { + "title": "7C1 Visual hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVWELL": { + "title": "7C1A If having visual hallucinations, are the hallucinations well-formed and detailed" + }, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": { + "title": "7C2 Auditory hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs" + }, + "beha_symp.indicate_beha_symp.BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)" + }, + "beha_symp.indicate_beha_symp.BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)" + }, + "beha_symp.indicate_beha_symp.BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)" + }, + "beha_symp.indicate_beha_symp.BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions, unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)" + }, + "beha_symp.indicate_beha_symp.BEREM": { + "title": "7H REM sleep behavior disorder (Does the subject appear to act out his/her dreams while sleeping (e.g., punch or flail their arms, shout or scream?)" + }, + "beha_symp.indicate_beha_symp.BEOTHR": { + "title": "7I Behavior symptoms, other" + }, + "beha_symp.indicate_beha_symp.BEOTHRX": { + "title": "7I1 Behavior symptoms, other – specify" + }, + "beha_symp.BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:" + }, + "beha_symp.BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify" + }, + "beha_symp.BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:" + }, + "beha_symp.BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify" + }, + "motor_symp.indicate_motor_symp.MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)" + }, + "motor_symp.indicate_motor_symp.MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)" + }, + "motor_symp.indicate_motor_symp.MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)" + }, + "motor_symp.indicate_motor_symp.MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)" + }, + "motor_symp.MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:" + }, + "motor_symp.MOMODE": { + "title": "12 Mode of onset of motor symptoms:" + }, + "motor_symp.MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify" + }, + "motor_symp.MOMOPARK": { + "title": "12A If there were changes in motor function, were these suggestive of parkinsonism?" + }, + "overall.COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:" + }, + "overall.FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "memo_comp.DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?" + }, + "memo_comp.DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?" + }, + "memo_comp.DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs, or have there been motor/movement changes relative to previously attained abilities?" + }, + "memo_comp.DECAGE": { + "title": "3B At what age did the cognitive decline begin (based upon the clinician’s assessment)?" + }, + "cogn_symp.indicate_impair.COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)" + }, + "cogn_symp.indicate_impair.COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)" + }, + "cogn_symp.indicate_impair.COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)" + }, + "cogn_symp.indicate_impair.COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around)." + }, + "cogn_symp.indicate_impair.COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)" + }, + "cogn_symp.indicate_impair.COGFLUC": { + "title": "4F Fluctuating cognition (Does s/he have pronounced variation in attention and alertness, noticeably over hours or days? For example, long periods of staring into space or lapses, or times when his/her ideas have a disorganized flow.)" + }, + "cogn_symp.indicate_impair.COGOTHR": { + "title": "4G Cognitive symptoms, other" + }, + "cogn_symp.indicate_impair.COGOTHRX": { + "title": "4G1 Cognitive symptoms, other – specify" + }, + "cogn_symp.COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:" + }, + "cogn_symp.COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify" + }, + "cogn_symp.COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:" + }, + "cogn_symp.COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify" + }, + "beha_symp.indicate_beha_symp.BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)" + }, + "beha_symp.indicate_beha_symp.BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": { + "title": "7C1 Visual hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVWELL": { + "title": "7C1A If having visual hallucinations, are the hallucinations well-formed and detailed" + }, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": { + "title": "7C2 Auditory hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs" + }, + "beha_symp.indicate_beha_symp.BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)" + }, + "beha_symp.indicate_beha_symp.BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)" + }, + "beha_symp.indicate_beha_symp.BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)" + }, + "beha_symp.indicate_beha_symp.BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions, unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)" + }, + "beha_symp.indicate_beha_symp.BEREM": { + "title": "7H REM sleep behavior disorder (Does the subject appear to act out his/her dreams while sleeping (e.g., punch or flail their arms, shout or scream?)" + }, + "beha_symp.indicate_beha_symp.BEOTHR": { + "title": "7I Behavior symptoms, other" + }, + "beha_symp.indicate_beha_symp.BEOTHRX": { + "title": "7I1 Behavior symptoms, other – specify" + }, + "beha_symp.BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:" + }, + "beha_symp.BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify" + }, + "beha_symp.BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:" + }, + "beha_symp.BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify" + }, + "motor_symp.indicate_motor_symp.MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)" + }, + "motor_symp.indicate_motor_symp.MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)" + }, + "motor_symp.indicate_motor_symp.MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)" + }, + "motor_symp.indicate_motor_symp.MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)" + }, + "motor_symp.MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:" + }, + "motor_symp.MOMODE": { + "title": "12 Mode of onset of motor symptoms:" + }, + "motor_symp.MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify" + }, + "motor_symp.MOMOPARK": { + "title": "12A If there were changes in motor function, were these suggestive of parkinsonism?" + }, + "overall.COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:" + }, + "overall.FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:" + } + }, + "boost_values": { + "patient": 1.0, + "memo_comp.DECSUB": 1.0, + "memo_comp.DECIN": 1.0, + "memo_comp.DECCLIN": 1.0, + "memo_comp.DECAGE": 1.0, + "cogn_symp.indicate_impair.COGMEM": 1.0, + "cogn_symp.indicate_impair.COGJUDG": 1.0, + "cogn_symp.indicate_impair.COGLANG": 1.0, + "cogn_symp.indicate_impair.COGVIS": 1.0, + "cogn_symp.indicate_impair.COGATTN": 1.0, + "cogn_symp.indicate_impair.COGFLUC": 1.0, + "cogn_symp.indicate_impair.COGOTHR": 1.0, + "cogn_symp.indicate_impair.COGOTHRX": 1.0, + "cogn_symp.COGFRST": 1.0, + "cogn_symp.COGFRSTX": 1.0, + "cogn_symp.COGMODE": 1.0, + "cogn_symp.COGMODEX": 1.0, + "beha_symp.indicate_beha_symp.BEAPATHY": 1.0, + "beha_symp.indicate_beha_symp.BEDEP": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEVWELL": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": 1.0, + "beha_symp.indicate_beha_symp.BEDISIN": 1.0, + "beha_symp.indicate_beha_symp.BEIRRIT": 1.0, + "beha_symp.indicate_beha_symp.BEAGIT": 1.0, + "beha_symp.indicate_beha_symp.BEPERCH": 1.0, + "beha_symp.indicate_beha_symp.BEREM": 1.0, + "beha_symp.indicate_beha_symp.BEOTHR": 1.0, + "beha_symp.indicate_beha_symp.BEOTHRX": 1.0, + "beha_symp.BEFRST": 1.0, + "beha_symp.BEFRSTX": 1.0, + "beha_symp.BEMODE": 1.0, + "beha_symp.BEMODEX": 1.0, + "motor_symp.indicate_motor_symp.MOGAIT": 1.0, + "motor_symp.indicate_motor_symp.MOFALLS": 1.0, + "motor_symp.indicate_motor_symp.MOTREM": 1.0, + "motor_symp.indicate_motor_symp.MOSLOW": 1.0, + "motor_symp.MOFRST": 1.0, + "motor_symp.MOMODE": 1.0, + "motor_symp.MOMODEX": 1.0, + "motor_symp.MOMOPARK": 1.0, + "overall.COURSE": 1.0, + "overall.FRSTCHG": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b9v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_b9v3.json b/src/encoded/schemas/fvp_b9v3.json new file mode 100644 index 0000000000..ad12cfa2ec --- /dev/null +++ b/src/encoded/schemas/fvp_b9v3.json @@ -0,0 +1,1000 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B9: CLINICIAN JUDGMENT OF SYMPTOMS", + "description": "INSTRUCTIONS: This form is to be completed by the clinician. For additional clarification and examples, see UDS \nCoding Guidebook for Follow-up Visit Packet, Form B9. \nLink to NACC Coding Guidebook Check only one box per question.", + "id": "/profiles/fvp_b9v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_decl_memo": { + "title": "Declines in memory reported by subject and co-participant", + "type": "object", + "properties": { + "fu_decsub": { + "title": "1. Does the subject report a decline in memory (relative to previously attained abilities)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Could not be assessed/subject is too impaired" + ] + }, + "fu_decin": { + "title": "2. Does the co-participant report a decline in the subject's memory (relative to previously attained abilities)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 There is no co-participant" + ] + } + } + }, + "fu_cogn_symp": { + "title": "Cognitive symptoms", + "type": "object", + "properties": { + "fu_decclcog": { + "title": "3. Based on the clinician's judgment, is the subject currently experiencing meaningful impairment in cognition?", + "type": "string", + "enum": [ + "0 No (If no, SKIP TO QUESTION 8)", + "1 Yes" + ] + } + } + }, + "fu_meaning_impair": { + "title": "4. Indicate whether the subject currently is meaningfully impaired, relative to previously attained abilities, in the following cognitive domains, or has fluctuating cognition:", + "type": "object", + "properties": { + "fu_cogmem": { + "title": "4a. Memory : For example, does s/he forget conversations and/or dates, repeat questions and/or statements, misplace things more than usual, forget names of people s/he knows well?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_cogori": { + "title": "4b. Orientation : For example, does s/he have trouble knowing the day, month, and year, or not recognize familiar locations, or get lost in familiar locations?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_cogjudg": { + "title": "4c. Executive function - judgment, planning, problem-solving : Does s/he have trouble handling money (e.g., tips), paying bills, preparing meals, shopping, using appliances, handling medications, driving?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_coglang": { + "title": "4d. Language : Does s/he have hesitant speech, have trouble finding words, use inappropriate words without self-correction?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_cogvis": { + "title": "4e. Visuospatial function : Does s/he have difficulty interpreting visual stimuli and finding his/her way around?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_cogattn": { + "title": "4f. Attention, concentration : Does the subject have a short attention span or limited ability to concentrate? Is s/he easily distracted?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_cogfluc": { + "title": "4g. Fluctuating cognition : Does the subject exhibit pronounced variation in attention and alertness, noticeably over hours or days - for example, long lapses or periods of staring into space, or times when his/her ideas have a disorganized flow?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_display_cogflago": { + "title": "This is a good place to add piping to display age when fluctuating cognition began from all visits.", + "type": "object", + "properties": { + "fu_cogflago": { + "title": "4g1. If yes, at what age did the fluctuating cognition begin? (The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "777 = Age of onset provided at previous UDS visit;((15-110; 777 = provided at previous visit))", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^1[0][0-9]$|^110$|^777$" + } + } + }, + "fu_cogothr": { + "title": "4h. Other cognitive symptoms, specify:", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_cogothrx": { + "title": "4h1. If yes, there are other cognitive symptoms, specify:", + "type": "string" + }, + "fu_cogfpred": { + "title": "5. Indicate the predominant symptom that was first recognized as a decline in the subject's cognition:", + "description": "NOTE: Enter 0 if this information was provided on a previously submitted Form B9. ", + "type": "string", + "enum": [ + "0 Assessed at a previous UDS visit", + "1 Memory", + "2 Orientation", + "3 Executive function - judgment, planning, problem-solving", + "4 Language", + "5 Visuospatial function", + "6 Attention/concentration", + "7 Fluctuating cognition", + "8 Other (SPECIFY):", + "99 Unknown" + ] + }, + "fu_cogfprex": { + "title": "5a. If there are other predominant symptoms, specify:", + "type": "string" + }, + "fu_cogmode": { + "title": "6. Mode of onset of cognitive symptoms:", + "type": "string", + "enum": [ + "1 Gradual", + "2 Subacute", + "3 Abrupt", + "4 Other (SPECIFY):", + "99 Unknown" + ] + }, + "fu_cogmodex": { + "title": "6a. If there are other mode of onset of cognitive symptoms, specify:", + "type": "string" + }, + "fu_decage": { + "title": "7. Based on the clinician's assessment, at what age did the cognitive decline begin? (The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "777 = Age of onset provided at previous UDS visit; ((15-110; 777 = provided at previous visit))", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^1[0][0-9]$|^110$|^777$" + } + } + }, + "fu_bhvr_symp": { + "title": "Behavioral symptoms", + "type": "object", + "properties": { + "fu_decclbe": { + "title": "8. Based on the clinician's judgment, is the subject currently experiencing any kind of behavioral symptoms?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 13)", + "1 Yes" + ] + }, + "fu_bhvr_change": { + "title": "9. Indicate whether the subject currently manifests meaningful change in behavior in any of the following ways:", + "type": "object", + "properties": { + "fu_beapathy": { + "title": "9a. Apathy, withdrawal : Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_bedep": { + "title": "9b. Depressed mood : Has the subject seemed depressed for more than two weeks at a time, e.g., shown loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_pcycho": { + "title": "9c. Psychosis", + "type": "object", + "properties": { + "fu_bevhall": { + "title": "9c1. Visual hallucinations", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_bevwell": { + "title": "9c1a. If Yes, are the hallucinations well formed and detailed?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_bevhago": { + "title": "9c1b. If well formed, clear-cut visual hallucinations, at what age did these visual hallucinations begin? (The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "777 = Age of onset provided at previous UDS visit; 888 = N/A, not well-formed; ((15-110; 777 = provided at previous visit; 888 = N/A, not well-formed))", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^1[0][0-9]$|^110$|^777$|^888$" + }, + "fu_beahall": { + "title": "9c2. Auditory hallucinations", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_bedel": { + "title": "9c3. Abnormal, false, or delusional beliefs", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "fu_bedisin": { + "title": "9d. Disinhibition : Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_beirrit": { + "title": "9e. Irritability : Does the subject overreact, e.g., by shouting at family members or others?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_beagit": { + "title": "9f. Agitation : Does the subject have trouble sitting still? Does s/he shout, hit, and/or kick?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_beperch": { + "title": "9g. Personality change : Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness (without delusions), unusual dress, or dietary changes? Does the subject fail to take others' feelings into account?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_berem": { + "title": "9h. REM sleep behavior disorder : While sleeping, does the subject appear to act out his/her dreams (e.g., punch or flail their arms, shout, or scream)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_beremago": { + "title": "9h1. If yes, at what age did the REM sleep behavior disorder begin? (The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "777 = Age of onset provided at previous UDS visit; ((15-110; 777 = provided at previous visit))", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^1[0][0-9]$|^110$|^777$" + }, + "fu_beanx": { + "title": "9i. Anxiety : For example, does s/he show signs of nervousness (e.g., frequent sighing, anxious facial expressions, or hand-wringing) and/or excessive worrying?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_beothr": { + "title": "9j. Other behavioral symptoms, specify:", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_beothrx": { + "title": "9j1. If there are other behavioral symptoms, specify:", + "type": "string" + } + } + }, + "fu_befpred": { + "title": "10. Indicate the predominant symptom that was first recognized as a decline in the subject's behavior: ", + "description": "NOTE: Enter 0 if this information was provided on a previously submitted Form B9. ", + "type": "string", + "enum": [ + "0 Assessed at a previous UDS visit", + "1 Apathy/withdrawal", + "2 Depressed mood", + "3 Psychosis", + "4 Disinhibition", + "5 Irritability", + "6 Agitation", + "7 Personality change", + "8 REM sleep behavior disorder", + "9 Anxiety", + "10 Other (SPECIFY):", + "99 Unknown" + ] + }, + "fu_befpredx": { + "title": "10a. If there are other predominant symptoms, specify:", + "type": "string" + }, + "fu_bemode": { + "title": "11. Mode of onset of behavioral symptoms:", + "type": "string", + "enum": [ + "1 Gradual", + "2 Subacute", + "3 Abrupt", + "4 Other (SPECIFY):", + "99 Unknown" + ] + }, + "fu_bemodex": { + "title": "11a. If there are other mode of onset of behavioral symptoms, specify:", + "type": "string" + }, + "fu_beage": { + "title": "12. Based on the clinician's assessment, at what age did the behavioral symptoms begin? (The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "777 = Age of onset provided at previous UDS visit; ((15-110; 777 = provided at previous visit))", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^1[0][0-9]$|^110$|^777$" + } + } + }, + "fu_motor_symp": { + "title": "Motor symptoms", + "type": "object", + "properties": { + "fu_decclmot": { + "title": "13. Based on the clinician's judgment, is the subject currently experiencing any motor symptoms?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 20)", + "1 Yes" + ] + }, + "fu_motor_meaning_change": { + "title": "14. Indicate whether the subject currently has meaningful change in motor function in any of the following areas:", + "type": "object", + "properties": { + "fu_mogait": { + "title": "14a. Gait disorder : Has the subject's walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little to no arm-swing, or drag a foot?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_mofalls": { + "title": "14b. Falls : Does the subject fall more than usual?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_motrem": { + "title": "14c. Tremor : Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth, or tongue?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_moslow": { + "title": "14d. Slowness : Has the subject noticeably slowed down in walking, moving, or writing by hand, other than due to an injury or illness? Has his/her facial expression changed or become more wooden, or masked and unexpressive?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "fu_mofrst": { + "title": "15. Indicate the predominant symptom that was first recognized as a decline in the subject's motor function: NOTE: Enter 0 if this information was provided on a previously submitted Form B9. ", + "type": "string", + "enum": [ + "0 Assessed at a previous UDS visit", + "1 Gait disorder", + "2 Falls", + "3 Tremor", + "4 Slowness", + "99 Unknown" + ] + }, + "fu_momode": { + "title": "16. Mode of onset of motor symptoms:", + "type": "string", + "enum": [ + "1 Gradual", + "2 Subacute", + "3 Abrupt", + "4 Other (SPECIFY):", + "99 Unknown" + ] + }, + "fu_momodex": { + "title": "16a. If there are other mode of onset of motor symptoms, specify:", + "type": "string" + }, + "fu_momopark": { + "title": "17. Were changes in motor function suggestive of parkinsonism? (If No or Unknown, SKIP TO QUESTION 18)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_parkage": { + "title": "17a. If Yes, at what age did the motor symptoms suggestive of parkinsonism begin? (The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "777 = Age of onset provided at previous UDS visit; ((15-110; 777 = provided at previous visit))", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^1[0][0-9]$|^110$|^777$" + }, + "fu_momoals": { + "title": "18. Were changes in motor function suggestive of amyotrophic lateral sclerosis? (If No or Unknown, SKIP TO QUESTION 19)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_alsage": { + "title": "18a. If Yes, at what age did the motor symptoms suggestive of ALS begin? (The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "777 = Age of onset provided at previous UDS visit; ((15-110; 777 = provided at previous visit))", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^1[0][0-9]$|^110$|^777$" + }, + "fu_moage": { + "title": "19. Based on the clinician's assessment, at what age did the motor changes begin? (The clinician must use his/her best judgment to estimate an age of onset of motor changes.)", + "description": "777 = Age of onset provided at previous UDS visit; ((15-110; 777 = provided at previous visit))", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^1[0][0-9]$|^110$|^777$" + } + } + }, + "fu_overall_course": { + "title": "Overall course of decline and predominant domain", + "type": "object", + "properties": { + "fu_course": { + "title": "20. Overall course of decline of cognitive / behavioral / motor syndrome:", + "type": "string", + "enum": [ + "1 Gradually progressive", + "2 Stepwise", + "3 Static", + "4 Fluctuating", + "5 Improved", + "8 N/A", + "9 Unknown" + ] + }, + "fu_frstchg": { + "title": "21. Indicate the predominant domain that was first recognized as changed in the subject: NOTE: Enter 0 if this information was provided on a previously submitted Form B9. ", + "type": "string", + "enum": [ + "0 Assessed at a previous UDS visit", + "1 Cognition", + "2 Behavior", + "3 Motor function", + "8 N/A", + "9 Unknown" + ] + } + } + }, + "fu_candidate": { + "title": "Candidate for further evaluation for Lewy body disease or frontotemporal lobar degeneration", + "type": "object", + "properties": { + "fu_lbdeval": { + "title": "22. Is the subject a potential candidate for further evaluation for Lewy body disease?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_ftldeval": { + "title": "23. Is the subject a potential candidate for further evaluation for frontotemporal lobar degeneration?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_decl_memo.fu_decsub": { + "title": "1. Does the subject report a decline in memory (relative to previously attained abilities)?" + }, + "fu_decl_memo.fu_decin": { + "title": "2. Does the co-participant report a decline in the subject's memory (relative to previously attained abilities)?" + }, + "fu_cogn_symp.fu_decclcog": { + "title": "3. Based on the clinician's judgment, is the subject currently experiencing meaningful impairment in cognition?" + }, + "fu_meaning_impair.fu_cogmem": { + "title": "4a. Memory : For example, does s/he forget conversations and/or dates, repeat questions and/or statements, misplace things more than usual, forget names of people s/he knows well?" + }, + "fu_meaning_impair.fu_cogori": { + "title": "4b. Orientation : For example, does s/he have trouble knowing the day, month, and year, or not recognize familiar locations, or get lost in familiar locations?" + }, + "fu_meaning_impair.fu_cogjudg": { + "title": "4c. Executive function - judgment, planning, problem-solving : Does s/he have trouble handling money (e.g., tips), paying bills, preparing meals, shopping, using appliances, handling medications, driving?" + }, + "fu_meaning_impair.fu_coglang": { + "title": "4d. Language : Does s/he have hesitant speech, have trouble finding words, use inappropriate words without self-correction?" + }, + "fu_meaning_impair.fu_cogvis": { + "title": "4e. Visuospatial function : Does s/he have difficulty interpreting visual stimuli and finding his/her way around?" + }, + "fu_meaning_impair.fu_cogattn": { + "title": "4f. Attention, concentration : Does the subject have a short attention span or limited ability to concentrate? Is s/he easily distracted?" + }, + "fu_meaning_impair.fu_cogfluc": { + "title": "4g. Fluctuating cognition : Does the subject exhibit pronounced variation in attention and alertness, noticeably over hours or days - for example, long lapses or periods of staring into space, or times when his/her ideas have a disorganized flow?" + }, + "fu_meaning_impair.fu_display_cogflago.fu_cogflago": { + "title": "4g1. If yes, at what age did the fluctuating cognition begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_meaning_impair.fu_cogothr": { + "title": "4h. Other cognitive symptoms, specify:" + }, + "fu_meaning_impair.fu_cogothrx": { + "title": "4h1. If yes, there are other cognitive symptoms, specify:" + }, + "fu_meaning_impair.fu_cogfpred": { + "title": "5. Indicate the predominant symptom that was first recognized as a decline in the subject's cognition:" + }, + "fu_meaning_impair.fu_cogfprex": { + "title": "5a. If there are other predominant symptoms, specify:" + }, + "fu_meaning_impair.fu_cogmode": { + "title": "6. Mode of onset of cognitive symptoms:" + }, + "fu_meaning_impair.fu_cogmodex": { + "title": "6a. If there are other mode of onset of cognitive symptoms, specify:" + }, + "fu_meaning_impair.fu_decage": { + "title": "7. Based on the clinician's assessment, at what age did the cognitive decline begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_bhvr_symp.fu_decclbe": { + "title": "8. Based on the clinician's judgment, is the subject currently experiencing any kind of behavioral symptoms?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beapathy": { + "title": "9a. Apathy, withdrawal : Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_bedep": { + "title": "9b. Depressed mood : Has the subject seemed depressed for more than two weeks at a time, e.g., shown loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bevhall": { + "title": "9c1. Visual hallucinations" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bevwell": { + "title": "9c1a. If Yes, are the hallucinations well formed and detailed?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bevhago": { + "title": "9c1b. If well formed, clear-cut visual hallucinations, at what age did these visual hallucinations begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_beahall": { + "title": "9c2. Auditory hallucinations" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bedel": { + "title": "9c3. Abnormal, false, or delusional beliefs" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_bedisin": { + "title": "9d. Disinhibition : Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beirrit": { + "title": "9e. Irritability : Does the subject overreact, e.g., by shouting at family members or others?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beagit": { + "title": "9f. Agitation : Does the subject have trouble sitting still? Does s/he shout, hit, and/or kick?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beperch": { + "title": "9g. Personality change : Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness (without delusions), unusual dress, or dietary changes? Does the subject fail to take others' feelings into account?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_berem": { + "title": "9h. REM sleep behavior disorder : While sleeping, does the subject appear to act out his/her dreams (e.g., punch or flail their arms, shout, or scream)?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beremago": { + "title": "9h1. If yes, at what age did the REM sleep behavior disorder begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beanx": { + "title": "9i. Anxiety : For example, does s/he show signs of nervousness (e.g., frequent sighing, anxious facial expressions, or hand-wringing) and/or excessive worrying?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beothr": { + "title": "9j. Other behavioral symptoms, specify:" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beothrx": { + "title": "9j1. If there are other behavioral symptoms, specify:" + }, + "fu_bhvr_symp.fu_befpred": { + "title": "10. Indicate the predominant symptom that was first recognized as a decline in the subject's behavior: " + }, + "fu_bhvr_symp.fu_befpredx": { + "title": "10a. If there are other predominant symptoms, specify:" + }, + "fu_bhvr_symp.fu_bemode": { + "title": "11. Mode of onset of behavioral symptoms:" + }, + "fu_bhvr_symp.fu_bemodex": { + "title": "11a. If there are other mode of onset of behavioral symptoms, specify:" + }, + "fu_bhvr_symp.fu_beage": { + "title": "12. Based on the clinician's assessment, at what age did the behavioral symptoms begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_motor_symp.fu_decclmot": { + "title": "13. Based on the clinician's judgment, is the subject currently experiencing any motor symptoms?" + }, + "fu_motor_symp.fu_motor_meaning_change.fu_mogait": { + "title": "14a. Gait disorder : Has the subject's walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little to no arm-swing, or drag a foot?" + }, + "fu_motor_symp.fu_motor_meaning_change.fu_mofalls": { + "title": "14b. Falls : Does the subject fall more than usual?" + }, + "fu_motor_symp.fu_motor_meaning_change.fu_motrem": { + "title": "14c. Tremor : Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth, or tongue?" + }, + "fu_motor_symp.fu_motor_meaning_change.fu_moslow": { + "title": "14d. Slowness : Has the subject noticeably slowed down in walking, moving, or writing by hand, other than due to an injury or illness? Has his/her facial expression changed or become more wooden, or masked and unexpressive?" + }, + "fu_motor_symp.fu_mofrst": { + "title": "15. Indicate the predominant symptom that was first recognized as a decline in the subject's motor function: NOTE: Enter 0 if this information was provided on a previously submitted Form B9. " + }, + "fu_motor_symp.fu_momode": { + "title": "16. Mode of onset of motor symptoms:" + }, + "fu_motor_symp.fu_momodex": { + "title": "16a. If there are other mode of onset of motor symptoms, specify:" + }, + "fu_motor_symp.fu_momopark": { + "title": "17. Were changes in motor function suggestive of parkinsonism? (If No or Unknown, SKIP TO QUESTION 18)" + }, + "fu_motor_symp.fu_parkage": { + "title": "17a. If Yes, at what age did the motor symptoms suggestive of parkinsonism begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_motor_symp.fu_momoals": { + "title": "18. Were changes in motor function suggestive of amyotrophic lateral sclerosis? (If No or Unknown, SKIP TO QUESTION 19)" + }, + "fu_motor_symp.fu_alsage": { + "title": "18a. If Yes, at what age did the motor symptoms suggestive of ALS begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_motor_symp.fu_moage": { + "title": "19. Based on the clinician's assessment, at what age did the motor changes begin? (The clinician must use his/her best judgment to estimate an age of onset of motor changes.)" + }, + "fu_overall_course.fu_course": { + "title": "20. Overall course of decline of cognitive / behavioral / motor syndrome:" + }, + "fu_overall_course.fu_frstchg": { + "title": "21. Indicate the predominant domain that was first recognized as changed in the subject: NOTE: Enter 0 if this information was provided on a previously submitted Form B9. " + }, + "fu_candidate.fu_lbdeval": { + "title": "22. Is the subject a potential candidate for further evaluation for Lewy body disease?" + }, + "fu_candidate.fu_ftldeval": { + "title": "23. Is the subject a potential candidate for further evaluation for frontotemporal lobar degeneration?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_decl_memo.fu_decsub": { + "title": "1. Does the subject report a decline in memory (relative to previously attained abilities)?" + }, + "fu_decl_memo.fu_decin": { + "title": "2. Does the co-participant report a decline in the subject's memory (relative to previously attained abilities)?" + }, + "fu_cogn_symp.fu_decclcog": { + "title": "3. Based on the clinician's judgment, is the subject currently experiencing meaningful impairment in cognition?" + }, + "fu_meaning_impair.fu_cogmem": { + "title": "4a. Memory : For example, does s/he forget conversations and/or dates, repeat questions and/or statements, misplace things more than usual, forget names of people s/he knows well?" + }, + "fu_meaning_impair.fu_cogori": { + "title": "4b. Orientation : For example, does s/he have trouble knowing the day, month, and year, or not recognize familiar locations, or get lost in familiar locations?" + }, + "fu_meaning_impair.fu_cogjudg": { + "title": "4c. Executive function - judgment, planning, problem-solving : Does s/he have trouble handling money (e.g., tips), paying bills, preparing meals, shopping, using appliances, handling medications, driving?" + }, + "fu_meaning_impair.fu_coglang": { + "title": "4d. Language : Does s/he have hesitant speech, have trouble finding words, use inappropriate words without self-correction?" + }, + "fu_meaning_impair.fu_cogvis": { + "title": "4e. Visuospatial function : Does s/he have difficulty interpreting visual stimuli and finding his/her way around?" + }, + "fu_meaning_impair.fu_cogattn": { + "title": "4f. Attention, concentration : Does the subject have a short attention span or limited ability to concentrate? Is s/he easily distracted?" + }, + "fu_meaning_impair.fu_cogfluc": { + "title": "4g. Fluctuating cognition : Does the subject exhibit pronounced variation in attention and alertness, noticeably over hours or days - for example, long lapses or periods of staring into space, or times when his/her ideas have a disorganized flow?" + }, + "fu_meaning_impair.fu_display_cogflago.fu_cogflago": { + "title": "4g1. If yes, at what age did the fluctuating cognition begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_meaning_impair.fu_cogothr": { + "title": "4h. Other cognitive symptoms, specify:" + }, + "fu_meaning_impair.fu_cogothrx": { + "title": "4h1. If yes, there are other cognitive symptoms, specify:" + }, + "fu_meaning_impair.fu_cogfpred": { + "title": "5. Indicate the predominant symptom that was first recognized as a decline in the subject's cognition:" + }, + "fu_meaning_impair.fu_cogfprex": { + "title": "5a. If there are other predominant symptoms, specify:" + }, + "fu_meaning_impair.fu_cogmode": { + "title": "6. Mode of onset of cognitive symptoms:" + }, + "fu_meaning_impair.fu_cogmodex": { + "title": "6a. If there are other mode of onset of cognitive symptoms, specify:" + }, + "fu_meaning_impair.fu_decage": { + "title": "7. Based on the clinician's assessment, at what age did the cognitive decline begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_bhvr_symp.fu_decclbe": { + "title": "8. Based on the clinician's judgment, is the subject currently experiencing any kind of behavioral symptoms?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beapathy": { + "title": "9a. Apathy, withdrawal : Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_bedep": { + "title": "9b. Depressed mood : Has the subject seemed depressed for more than two weeks at a time, e.g., shown loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bevhall": { + "title": "9c1. Visual hallucinations" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bevwell": { + "title": "9c1a. If Yes, are the hallucinations well formed and detailed?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bevhago": { + "title": "9c1b. If well formed, clear-cut visual hallucinations, at what age did these visual hallucinations begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_beahall": { + "title": "9c2. Auditory hallucinations" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bedel": { + "title": "9c3. Abnormal, false, or delusional beliefs" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_bedisin": { + "title": "9d. Disinhibition : Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beirrit": { + "title": "9e. Irritability : Does the subject overreact, e.g., by shouting at family members or others?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beagit": { + "title": "9f. Agitation : Does the subject have trouble sitting still? Does s/he shout, hit, and/or kick?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beperch": { + "title": "9g. Personality change : Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness (without delusions), unusual dress, or dietary changes? Does the subject fail to take others' feelings into account?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_berem": { + "title": "9h. REM sleep behavior disorder : While sleeping, does the subject appear to act out his/her dreams (e.g., punch or flail their arms, shout, or scream)?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beremago": { + "title": "9h1. If yes, at what age did the REM sleep behavior disorder begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beanx": { + "title": "9i. Anxiety : For example, does s/he show signs of nervousness (e.g., frequent sighing, anxious facial expressions, or hand-wringing) and/or excessive worrying?" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beothr": { + "title": "9j. Other behavioral symptoms, specify:" + }, + "fu_bhvr_symp.fu_bhvr_change.fu_beothrx": { + "title": "9j1. If there are other behavioral symptoms, specify:" + }, + "fu_bhvr_symp.fu_befpred": { + "title": "10. Indicate the predominant symptom that was first recognized as a decline in the subject's behavior: " + }, + "fu_bhvr_symp.fu_befpredx": { + "title": "10a. If there are other predominant symptoms, specify:" + }, + "fu_bhvr_symp.fu_bemode": { + "title": "11. Mode of onset of behavioral symptoms:" + }, + "fu_bhvr_symp.fu_bemodex": { + "title": "11a. If there are other mode of onset of behavioral symptoms, specify:" + }, + "fu_bhvr_symp.fu_beage": { + "title": "12. Based on the clinician's assessment, at what age did the behavioral symptoms begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_motor_symp.fu_decclmot": { + "title": "13. Based on the clinician's judgment, is the subject currently experiencing any motor symptoms?" + }, + "fu_motor_symp.fu_motor_meaning_change.fu_mogait": { + "title": "14a. Gait disorder : Has the subject's walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little to no arm-swing, or drag a foot?" + }, + "fu_motor_symp.fu_motor_meaning_change.fu_mofalls": { + "title": "14b. Falls : Does the subject fall more than usual?" + }, + "fu_motor_symp.fu_motor_meaning_change.fu_motrem": { + "title": "14c. Tremor : Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth, or tongue?" + }, + "fu_motor_symp.fu_motor_meaning_change.fu_moslow": { + "title": "14d. Slowness : Has the subject noticeably slowed down in walking, moving, or writing by hand, other than due to an injury or illness? Has his/her facial expression changed or become more wooden, or masked and unexpressive?" + }, + "fu_motor_symp.fu_mofrst": { + "title": "15. Indicate the predominant symptom that was first recognized as a decline in the subject's motor function: NOTE: Enter 0 if this information was provided on a previously submitted Form B9. " + }, + "fu_motor_symp.fu_momode": { + "title": "16. Mode of onset of motor symptoms:" + }, + "fu_motor_symp.fu_momodex": { + "title": "16a. If there are other mode of onset of motor symptoms, specify:" + }, + "fu_motor_symp.fu_momopark": { + "title": "17. Were changes in motor function suggestive of parkinsonism? (If No or Unknown, SKIP TO QUESTION 18)" + }, + "fu_motor_symp.fu_parkage": { + "title": "17a. If Yes, at what age did the motor symptoms suggestive of parkinsonism begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_motor_symp.fu_momoals": { + "title": "18. Were changes in motor function suggestive of amyotrophic lateral sclerosis? (If No or Unknown, SKIP TO QUESTION 19)" + }, + "fu_motor_symp.fu_alsage": { + "title": "18a. If Yes, at what age did the motor symptoms suggestive of ALS begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "fu_motor_symp.fu_moage": { + "title": "19. Based on the clinician's assessment, at what age did the motor changes begin? (The clinician must use his/her best judgment to estimate an age of onset of motor changes.)" + }, + "fu_overall_course.fu_course": { + "title": "20. Overall course of decline of cognitive / behavioral / motor syndrome:" + }, + "fu_overall_course.fu_frstchg": { + "title": "21. Indicate the predominant domain that was first recognized as changed in the subject: NOTE: Enter 0 if this information was provided on a previously submitted Form B9. " + }, + "fu_candidate.fu_lbdeval": { + "title": "22. Is the subject a potential candidate for further evaluation for Lewy body disease?" + }, + "fu_candidate.fu_ftldeval": { + "title": "23. Is the subject a potential candidate for further evaluation for frontotemporal lobar degeneration?" + } + }, + "boost_values": { + "patient": 1.0, + "fu_decl_memo.fu_decsub": 1.0, + "fu_decl_memo.fu_decin": 1.0, + "fu_cogn_symp.fu_decclcog": 1.0, + "fu_meaning_impair.fu_cogmem": 1.0, + "fu_meaning_impair.fu_cogori": 1.0, + "fu_meaning_impair.fu_cogjudg": 1.0, + "fu_meaning_impair.fu_coglang": 1.0, + "fu_meaning_impair.fu_cogvis": 1.0, + "fu_meaning_impair.fu_cogattn": 1.0, + "fu_meaning_impair.fu_cogfluc": 1.0, + "fu_meaning_impair.fu_display_cogflago.fu_cogflago": 1.0, + "fu_meaning_impair.fu_cogothr": 1.0, + "fu_meaning_impair.fu_cogothrx": 1.0, + "fu_meaning_impair.fu_cogfpred": 1.0, + "fu_meaning_impair.fu_cogfprex": 1.0, + "fu_meaning_impair.fu_cogmode": 1.0, + "fu_meaning_impair.fu_cogmodex": 1.0, + "fu_meaning_impair.fu_decage": 1.0, + "fu_bhvr_symp.fu_decclbe": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_beapathy": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_bedep": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bevhall": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bevwell": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bevhago": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_beahall": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_pcycho.fu_bedel": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_bedisin": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_beirrit": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_beagit": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_beperch": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_berem": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_beremago": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_beanx": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_beothr": 1.0, + "fu_bhvr_symp.fu_bhvr_change.fu_beothrx": 1.0, + "fu_bhvr_symp.fu_befpred": 1.0, + "fu_bhvr_symp.fu_befpredx": 1.0, + "fu_bhvr_symp.fu_bemode": 1.0, + "fu_bhvr_symp.fu_bemodex": 1.0, + "fu_bhvr_symp.fu_beage": 1.0, + "fu_motor_symp.fu_decclmot": 1.0, + "fu_motor_symp.fu_motor_meaning_change.fu_mogait": 1.0, + "fu_motor_symp.fu_motor_meaning_change.fu_mofalls": 1.0, + "fu_motor_symp.fu_motor_meaning_change.fu_motrem": 1.0, + "fu_motor_symp.fu_motor_meaning_change.fu_moslow": 1.0, + "fu_motor_symp.fu_mofrst": 1.0, + "fu_motor_symp.fu_momode": 1.0, + "fu_motor_symp.fu_momodex": 1.0, + "fu_motor_symp.fu_momopark": 1.0, + "fu_motor_symp.fu_parkage": 1.0, + "fu_motor_symp.fu_momoals": 1.0, + "fu_motor_symp.fu_alsage": 1.0, + "fu_motor_symp.fu_moage": 1.0, + "fu_overall_course.fu_course": 1.0, + "fu_overall_course.fu_frstchg": 1.0, + "fu_candidate.fu_lbdeval": 1.0, + "fu_candidate.fu_ftldeval": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b9v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_c1v1.json b/src/encoded/schemas/fvp_c1v1.json new file mode 100644 index 0000000000..9c31da0f5c --- /dev/null +++ b/src/encoded/schemas/fvp_c1v1.json @@ -0,0 +1,474 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet--Form C1: MMSE and Neuropsychological Battery", + "description": "NOTE: This form is to be completed by ADC or clinic staff. For test administrationADC Visit #:__ __ __\nand scoring, see UDS Coding Guidebook for Initial Visit Packet, Form C1.\nKEY: If the subject cannot complete any of the following exams, please use\nthe following codes for test scores (except for the Trail Making Test):\n95 = Physical problem 97 = Other problem\n96 = Cognitive/behavior problem 98 = Verbal refusal\n", + "id": "/profiles/fvp_c1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "c1_1": { + "title": "1. Mini-Mental State Examination", + "type": "object", + "properties": { + "MMSELOC": { + "title": "1A The administration of the MMSE was:", + "description": " ", + "type": "string", + "enum": [ + "1 In ADC/clinic", + "2 In home", + "3 In person-other" + ] + }, + "MMSELAN": { + "title": "1A1 Language of MMSE administration", + "description": " ", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other" + ] + }, + "MMSELANX": { + "title": "1A2 Language of MMSE, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #1A1, MMSELAN ≠ 3 (Other).", + "type": "string" + }, + "MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time", + "description": "(0-5, 95-98), 95/995 = Physical problem 96/996 = Cognitive/behavior problem 97/997 = Other problem 98/998 = Verbal refusal", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place", + "description": "(0-5, 95-98), 95/995 = Physical problem 96/996 = Cognitive/behavior problem 97/997 = Other problem 98/998 = Verbal refusal", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "MMSE": { + "title": "1C Total MMSE score (using D-L-R-O-W)", + "description": "0 – 30 ", + "type": "string", + "anyOf": [ + { + "pattern": "^[0-2]?[0-9]$|^30$||^95$|^96$|^97$|^98$" + }, + { + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + } + ] + } + } + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:", + "description": " ", + "type": "string", + "enum": [ + "1 In ADC/clinic", + "2 In home", + "3 In person-other" + ] + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration", + "description": " ", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other" + ] + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“) ampersands (&), or percentage signs (%). Blank if #2A, NPSYLAN ≠ 3 (Other). ", + "type": "string" + }, + "c1_3": { + "title": "3.Logical Memory IA – Immediate", + "type": "object", + "properties": { + "LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered", + "description": "Date can be submitted as YYYY-MM-DD,(Current Year or Previous Year)", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "LOGIPREV": { + "title": "3B Total score from the previous test administration:", + "description": "(0-25, 88 = N/A)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$" + }, + "LOGIMEM": { + "title": "3C Total number of story units recalled from this current test administration: ", + "description": "(0-25, 88 = N/A)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_4": { + "title": "4.Digit Span Forward", + "type": "object", + "properties": { + "DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: ", + "description": "(0-12, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-2]$|^95$|^96$|^97$|^98$" + }, + "DIGIFLEN": { + "title": "4B Digit span forward length:", + "description": " (0 – 8,95-98) ", + "type": "string", + "pattern": "^[0-8]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_5": { + "title": "5.Digit Span Backward", + "type": "object", + "properties": { + "DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:", + "description": "(0-12, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-2]$|^95$|^96$|^97$|^98$" + }, + "DIGIBLEN": { + "title": "5B Digit span backward length:", + "description": "(0 – 7,95-98) ", + "type": "string", + "pattern": "^[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_6": { + "title": "6.Category Fluency", + "type": "object", + "properties": { + "ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:", + "type": "string", + "description": "(0-77, 95-98)", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + }, + "VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:", + "description": "(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_7": { + "title": "7. Trail Making Test", + "type": "object", + "properties": { + "TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):", + "description": "(0-150, 995-998)(if not finished by 150 seconds, enter 150):(If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^1[0-4][0-9]$|^150$|^995$|^996$|^997$|^998$" + }, + "TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):", + "description": "(0-300, 995-998)(if not finished by 300 seconds, enter 300): (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a)", + "type": "string", + "pattern": "^[1-2]?[0-9]?[0-9]$|^300$|^995$|^996$|^997$|^998$" + } + } + }, + "c1_8": { + "title": "8. WAIS-R Digit Symbo", + "type": "object", + "properties": { + "WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:", + "description": " 0 – 93, 95-98", + "type": "string", + "pattern": "^[0-8]?[0-9]$|^9[0-3]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_9": { + "title": "9.Logical Memory IIA – Delayed", + "type": "object", + "properties": { + "MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:", + "description": "0 – 25,95-98 ", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^95$|^96$|^97$|^98$" + }, + "MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)", + "description": "0 – 85, 88 N/A,99 Unknown", + "type": "string", + "pattern": "^[0-7]?[0-9]$|^8[0-5]$|^88$|^99$" + } + } + }, + "c1_10": { + "title": "10.Boston Naming Test (30 Odd-numbered items)", + "type": "object", + "properties": { + "BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:", + "description": " 0 – 30,95-98 ", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^30$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_11": { + "title": "11.Overall Appraisal", + "type": "object", + "properties": { + "COGSTAT": { + "title": "11A Based on the neuropsychological examination, the subject’s cognitive status is deemed: ", + "description": " ", + "type": "string", + "enum": [ + "1 Better than normal for age", + "2 Normal for age", + "3 One or two test scores abnormal", + "4 Most test scores are abnormal or lower than expected", + "0 Clinician unable to render opinion" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "c1_1.MMSELOC": { + "title": "1A The administration of the MMSE was:" + }, + "c1_1.MMSELAN": { + "title": "1A1 Language of MMSE administration" + }, + "c1_1.MMSELANX": { + "title": "1A2 Language of MMSE, other – specify" + }, + "c1_1.MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time" + }, + "c1_1.MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place" + }, + "c1_1.MMSE": { + "title": "1C Total MMSE score (using D-L-R-O-W)" + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:" + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration" + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify" + }, + "c1_3.LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered" + }, + "c1_3.LOGIPREV": { + "title": "3B Total score from the previous test administration:" + }, + "c1_3.LOGIMEM": { + "title": "3C Total number of story units recalled from this current test administration: " + }, + "c1_4.DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: " + }, + "c1_4.DIGIFLEN": { + "title": "4B Digit span forward length:" + }, + "c1_5.DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:" + }, + "c1_5.DIGIBLEN": { + "title": "5B Digit span backward length:" + }, + "c1_6.ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:" + }, + "c1_6.VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:" + }, + "c1_7.TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):" + }, + "c1_7.TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):" + }, + "c1_8.WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:" + }, + "c1_9.MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:" + }, + "c1_9.MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)" + }, + "c1_10.BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:" + }, + "c1_11.COGSTAT": { + "title": "11A Based on the UDS neuropsychological examination, the subject’s cognitive status is deemed: " + } + }, + "columns": { + "status": { + "title": "Status" + }, + "c1_1.MMSELOC": { + "title": "1A The administration of the MMSE was:" + }, + "c1_1.MMSELAN": { + "title": "1A1 Language of MMSE administration" + }, + "c1_1.MMSELANX": { + "title": "1A2 Language of MMSE, other – specify" + }, + "c1_1.MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time" + }, + "c1_1.MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place" + }, + "c1_1.MMSE": { + "title": "1C Total MMSE score (using D-L-R-O-W)" + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:" + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration" + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify" + }, + "c1_3.LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered" + }, + "c1_3.LOGIPREV": { + "title": "3B Total score from the previous test administration:" + }, + "c1_3.LOGIMEM": { + "title": "3C Total number of story units recalled from this current test administration: " + }, + "c1_4.DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: " + }, + "c1_4.DIGIFLEN": { + "title": "4B Digit span forward length:" + }, + "c1_5.DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:" + }, + "c1_5.DIGIBLEN": { + "title": "5B Digit span backward length:" + }, + "c1_6.ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:" + }, + "c1_6.VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:" + }, + "c1_7.TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):" + }, + "c1_7.TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):" + }, + "c1_8.WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:" + }, + "c1_9.MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:" + }, + "c1_9.MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)" + }, + "c1_10.BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:" + }, + "c1_11.COGSTAT": { + "title": "11A Based on the UDS neuropsychological examination, the subject’s cognitive status is deemed: " + } + }, + "boost_values": { + "patient": 1.0, + "c1_1.MMSELOC": 1.0, + "c1_1.MMSELAN": 1.0, + "c1_1.MMSELANX": 1.0, + "c1_1.MMSEORDA": 1.0, + "c1_1.MMSEORLO": 1.0, + "c1_1.MMSE": 1.0, + "NPSYCLOC": 1.0, + "NPSYLAN": 1.0, + "NPSYLANX": 1.0, + "c1_3.LOGIMO": 1.0, + "c1_3.LOGIPREV": 1.0, + "c1_3.LOGIMEM": 1.0, + "c1_4.DIGIF": 1.0, + "c1_4.DIGIFLEN": 1.0, + "c1_5.DIGIB": 1.0, + "c1_5.DIGIBLEN": 1.0, + "c1_6.ANIMALS": 1.0, + "c1_6.VEG": 1.0, + "c1_7.TRAILA": 1.0, + "c1_7.TRAILB": 1.0, + "c1_8.WAIS": 1.0, + "c1_9.MEMUNITS": 1.0, + "c1_9.MEMTIME": 1.0, + "c1_10.BOSTON": 1.0, + "c1_11.COGSTAT": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_c1v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_c1v2.json b/src/encoded/schemas/fvp_c1v2.json new file mode 100644 index 0000000000..4a82dc07ff --- /dev/null +++ b/src/encoded/schemas/fvp_c1v2.json @@ -0,0 +1,535 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Follow-up Form C1: MMSE and Neuropsychological Battery", + "description": "NOTE: This form is to be completed by ADC or clinic staff. For test administration\nand scoring, see UDS Coding Guidebook for Follow-up Visit Packet, Form C1.\nKEY: If the subject cannot complete any of the following exams, please use\nthe following codes for test scores (except for the Trail Making Test):\n95 = Physical problem 97 = Other problem\n96 = Cognitive/behavior problem 98 = Verbal refusal\n", + "id": "/profiles/fvp_c1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "c1_1": { + "title": "1. Mini-Mental State Examination", + "type": "object", + "properties": { + "MMSELOC": { + "title": "1A The administration of the MMSE was:", + "type": "string", + "enum": [ + "1 In ADC/clinic", + "2 In home", + "3 In person-other" + ] + }, + "MMSELAN": { + "title": "1A1 Language of MMSE administration", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other" + ] + }, + "MMSELANX": { + "title": "1A2 Language of MMSE, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #1A1, MMSELAN ≠ 3 (Other).", + "type": "string" + }, + "MMSE_score": { + "title": "Orientation subscale score", + "type": "object", + "properties": { + "MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time", + "description": "(0-5, 95-98), 95 = Physical problem 96 = Cognitive/behavior problem 97 = Other problem 98 = Verbal refusal", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place", + "description": "(0-5, 95-98), 95 = Physical problem 96 = Cognitive/behavior problem 97 = Other problem 98 = Verbal refusal", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + } + } + }, + "PENTAGON": { + "title": "1C Intersecting pentagon subscale score", + "description": "(0-1, 95-98)", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "MMSE": { + "title": "1D Total MMSE score (using D-L-R-O-W)", + "description": "(0 – 30,95-98)", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^30$|^95$|^96$|^97$|^98$" + } + } + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:", + "type": "string", + "enum": [ + "1 In ADC/clinic", + "2 In home", + "3 In person-other" + ] + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other" + ] + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“) ampersands (&), or percentage signs (%). Blank if #2A, NPSYLAN ≠ 3 (Other). ", + "type": "string" + }, + "c1_3": { + "title": "3.Logical Memory IA – Immediate", + "type": "object", + "properties": { + "LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered", + "description": "Date can be submitted as YYYY-MM-DD,(Current Year or Previous Year, 8888-88-88 = N/A)", + "type": "string", + "anyOf": [ + { + "format": "date" + }, + + { + "pattern": "^8888-88-88$" + + } + + ] + }, + "LOGIPREV": { + "title": "3A1 Total score from the previous test administration:", + "description": "(0-25, 88 = N/A)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$" + }, + "LOGIMEM": { + "title": "3B Total number of story units recalled from this current test administration: ", + "description": "(0-25, 95-98), 95 = Physical problem 96 = Cognitive/behavior problem 97 = Other problem 98 = Verbal refusal", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_4": { + "title": "4.Digit Span Forward", + "type": "object", + "properties": { + "DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: ", + "description": "(0-12, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-2]$|^95$|^96$|^97$|^98$" + }, + "DIGIFLEN": { + "title": "4B Digit span forward length:", + "description": " (0 – 8,95-98) ", + "type": "string", + "pattern": "^[0-8]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_5": { + "title": "5.Digit Span Backward", + "type": "object", + "properties": { + "DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:", + "description": "(0-12, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-2]$|^95$|^96$|^97$|^98$" + }, + "DIGIBLEN": { + "title": "5B Digit span backward length:", + "description": "(0 – 7,95-98) ", + "type": "string", + "pattern": "^[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_6": { + "title": "6.Category Fluency", + "type": "object", + "properties": { + "ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:", + "type": "string", + "description": "(0-77, 95-98)", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + }, + "VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:", + "description": "(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_7": { + "title": "7. Trail Making Test", + "type": "object", + "description": "KEY 2: If necessary, use the following codes for the Trail Making Test only:\n995 = Physical problem 997 = Other problem\n996 = Cognitive/behavior problem 998 = Verbal refusal\n", + "properties": { + "TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):", + "description": "(0-150, 995-998)(if not finished by 150 seconds, enter 150):(If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^1[0-4][0-9]$|^150$|^995$|^996$|^997$|^998$" + }, + "TRAILARR": { + "title": "7A1 Number of commission errors", + "description": "(0-40,88 = N/A)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^88$" + }, + "TRAILALI": { + "title": "7A2 Number of correct lines", + "description": "(0-24,88= N/A)", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-4]$|^88$" + }, + "TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):", + "description": "(0-300, 995-998)(if not finished by 300 seconds, enter 300): (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a)", + "type": "string", + "pattern": "^[1-2]?[0-9]?[0-9]$|^300$|^995$|^996$|^997$|^998$" + }, + "TRAILBRR": { + "title": "7B1 Number of commission errors", + "description": "(0 – 40,88 N/A),Blank if #7B, TRAILB = 995,996,997 or 998.", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^88$" + }, + "TRAILBLI": { + "title": "7B2 Number of correct lines", + "description": "(0 – 24, 88 N/A), Blank if #7B, TRAILB = 995,996,997 or 998.", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-4]$|^88$" + } + } + }, + "c1_8": { + "title": "8. WAIS-R Digit Symbo", + "type": "object", + "properties": { + "WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:", + "description": " (0 – 93, 95-98)", + "type": "string", + "pattern": "^[0-8]?[0-9]$|^9[0-3]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_9": { + "title": "9.Logical Memory IIA – Delayed", + "type": "object", + "properties": { + "MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:", + "description": "(0 – 25,95-98)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^95$|^96$|^97$|^98$" + }, + "MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)", + "description": "(0 – 85, 88 N/A,99 Unknown)", + "type": "string", + "pattern": "^[0-7]?[0-9]$|^8[0-5]$|^88$|^99$" + } + } + }, + "c1_10": { + "title": "10.Boston Naming Test (30 Odd-numbered items)", + "type": "object", + "properties": { + "BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:", + "description": " (0 – 30,95-98)", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^30$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_11": { + "title": "11.Overall Appraisal", + "type": "object", + "properties": { + "COGSTAT": { + "title": "11A Based on the UDS neuropsychological examination, the subject’s cognitive status is deemed: ", + "type": "string", + "enum": [ + "1 Better than normal for age", + "2 Normal for age", + "3 One or two test scores abnormal", + "4 Three or more scores are abnormal or lower than expected", + "0 Clinician unable to render opinion" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "c1_1.MMSELOC": { + "title": "1A The administration of the MMSE was:" + }, + "c1_1.MMSELAN": { + "title": "1A1 Language of MMSE administration" + }, + "c1_1.MMSELANX": { + "title": "1A2 Language of MMSE, other – specify" + }, + "c1_1.MMSE_score.MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time" + }, + "c1_1.MMSE_score.MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place" + }, + "c1_1.PENTAGON": { + "title": "1C Intersecting pentagon subscale score" + }, + "c1_1.MMSE": { + "title": "1D Total MMSE score (using D-L-R-O-W)" + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:" + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration" + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify" + }, + "c1_3.LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered" + }, + "c1_3.LOGIPREV": { + "title": "3A1 Total score from the previous test administration:" + }, + "c1_3.LOGIMEM": { + "title": "3B Total number of story units recalled from this current test administration: " + }, + "c1_4.DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: " + }, + "c1_4.DIGIFLEN": { + "title": "4B Digit span forward length:" + }, + "c1_5.DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:" + }, + "c1_5.DIGIBLEN": { + "title": "5B Digit span backward length:" + }, + "c1_6.ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:" + }, + "c1_6.VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:" + }, + "c1_7.TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):" + }, + "c1_7.TRAILARR": { + "title": "7A1 Number of commission errors" + }, + "c1_7.TRAILALI": { + "title": "7A2 Number of correct lines" + }, + "c1_7.TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):" + }, + "c1_7.TRAILBRR": { + "title": "7B1 Number of commission errors" + }, + "c1_7.TRAILBLI": { + "title": "7B2 Number of correct lines" + }, + "c1_8.WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:" + }, + "c1_9.MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:" + }, + "c1_9.MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)" + }, + "c1_10.BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:" + }, + "c1_11.COGSTAT": { + "title": "11A Based on the UDS neuropsychological examination, the subject’s cognitive status is deemed: " + } + }, + "columns": { + "status": { + "title": "Status" + }, + "c1_1.MMSELOC": { + "title": "1A The administration of the MMSE was:" + }, + "c1_1.MMSELAN": { + "title": "1A1 Language of MMSE administration" + }, + "c1_1.MMSELANX": { + "title": "1A2 Language of MMSE, other – specify" + }, + "c1_1.MMSE_score.MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time" + }, + "c1_1.MMSE_score.MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place" + }, + "c1_1.PENTAGON": { + "title": "1C Intersecting pentagon subscale score" + }, + "c1_1.MMSE": { + "title": "1D Total MMSE score (using D-L-R-O-W)" + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:" + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration" + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify" + }, + "c1_3.LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered" + }, + "c1_3.LOGIPREV": { + "title": "3A1 Total score from the previous test administration:" + }, + "c1_3.LOGIMEM": { + "title": "3B Total number of story units recalled from this current test administration: " + }, + "c1_4.DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: " + }, + "c1_4.DIGIFLEN": { + "title": "4B Digit span forward length:" + }, + "c1_5.DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:" + }, + "c1_5.DIGIBLEN": { + "title": "5B Digit span backward length:" + }, + "c1_6.ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:" + }, + "c1_6.VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:" + }, + "c1_7.TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):" + }, + "c1_7.TRAILARR": { + "title": "7A1 Number of commission errors" + }, + "c1_7.TRAILALI": { + "title": "7A2 Number of correct lines" + }, + "c1_7.TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):" + }, + "c1_7.TRAILBRR": { + "title": "7B1 Number of commission errors" + }, + "c1_7.TRAILBLI": { + "title": "7B2 Number of correct lines" + }, + "c1_8.WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:" + }, + "c1_9.MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:" + }, + "c1_9.MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)" + }, + "c1_10.BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:" + }, + "c1_11.COGSTAT": { + "title": "11A Based on the UDS neuropsychological examination, the subject’s cognitive status is deemed: " + } + }, + "boost_values": { + "patient": 1.0, + "c1_1.MMSELOC": 1.0, + "c1_1.MMSELAN": 1.0, + "c1_1.MMSELANX": 1.0, + "c1_1.MMSE_score.MMSEORDA": 1.0, + "c1_1.MMSE_score.MMSEORLO": 1.0, + "c1_1.PENTAGON": 1.0, + "c1_1.MMSE": 1.0, + "NPSYCLOC": 1.0, + "NPSYLAN": 1.0, + "NPSYLANX": 1.0, + "c1_3.LOGIMO": 1.0, + "c1_3.LOGIPREV": 1.0, + "c1_3.LOGIMEM": 1.0, + "c1_4.DIGIF": 1.0, + "c1_4.DIGIFLEN": 1.0, + "c1_5.DIGIB": 1.0, + "c1_5.DIGIBLEN": 1.0, + "c1_6.ANIMALS": 1.0, + "c1_6.VEG": 1.0, + "c1_7.TRAILA": 1.0, + "c1_7.TRAILARR": 1.0, + "c1_7.TRAILALI": 1.0, + "c1_7.TRAILB": 1.0, + "c1_7.TRAILBRR": 1.0, + "c1_7.TRAILBLI": 1.0, + "c1_8.WAIS": 1.0, + "c1_9.MEMUNITS": 1.0, + "c1_9.MEMTIME": 1.0, + "c1_10.BOSTON": 1.0, + "c1_11.COGSTAT": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_c1v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_c1v3.json b/src/encoded/schemas/fvp_c1v3.json new file mode 100644 index 0000000000..6f87f6389f --- /dev/null +++ b/src/encoded/schemas/fvp_c1v3.json @@ -0,0 +1,769 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP VISIT PACKETFORM C1: Neuropsychological Battery Summary Scores", + "description": "INSTRUCTIONS: This form is to be completed by ADC or clinic staff. For test administration and scoring, see\nInstructions for Neuropsychological Battery Form C1. Link to C1 Instructions. \nLink to NACC Coding Guidebook \nPROTOCOL FOR ADMINISTERING the neuropsychological battery for UDS Version 3 FVP (using either Form C1 or Form \nC2): For subjects who had already been seen for one or more UDS visits before the implementation of Version 3, you \nmay: \na.) continue to follow those subjects with the old neuropsychological battery (Form C1): \n-ORb.) \nswitch those subjects to the new neuropsychological battery (Form C2). \nA given subject may be switched to the new battery at any time after Version 3 implementation, at the Center's \ndiscretion. \nKEY: If the subject cannot complete any of the following tests, please give the reason by entering one of the following codes: \n95/995 = Physical problem \n96/996 = Cognitive/behavior problem \n97/997 = Other problem \n98/998 = Verbal refusal", + "id": "/profiles/uds_fvp_c1v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "fu_1", + "fu_2", + "fu_3", + "fu_4", + "fu_5", + "fu_6", + "fu_7", + "fu_8", + "fu_9", + "fu_10", + "fu_11", + "fu_12", + "fu_13" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_1": { + "title": "1. Mini-Mental State Examination", + "type": "object", + "properties": { + "fu_mmsecomp": { + "title": "1. Was any part of the MMSE completed?", + "type": "string", + "enum": [ + "0 No (Enter reason code, 95-98, and SKIP TO QUESTION 2a):", + "1 Yes (CONTINUE TO QUESTION 1a)" + ] + }, + "fu_mmsereas": { + "title": "1no. Reason code for not completing MMSE", + "type": "string", + "enum": [ + "95 = Physical problem", + "96 = Cognitive/behavior problem", + "97 = Other problem", + "98 = Verbal refusal" + ] + }, + "fu_mmseloc": { + "title": "1a. Administration of the MMSE was:", + "type": "string", + "enum": [ + "1 In ADC/clinic", + "2 In home", + "3 In person - other" + ] + }, + "fu_mmselan": { + "title": "1a1. Language of MMSE administration:", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other (SPECIFY)" + ] + }, + "fu_mmselanx": { + "title": "1a2. Language of MMSE administration - Other (specify):", + "description": "( Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "fu_mmsevis": { + "title": "1b. Subject was unable to complete one or more sections due to visual impairment.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mmsehear": { + "title": "1c. Subject was unable to complete one or more sections due to hearing impairment.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_note_c": { + "title": "1_3 1d. Orientation subscale score", + "type": "object", + "properties": { + "fu_mmseorda": { + "title": "1d1. Time:", + "description": "(0-5, 95-98), 95/995 = Physical problem 96/996 = Cognitive/behavior problem 97/997 = Other problem 98/998 = Verbal refusal", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "fu_mmseorlo": { + "title": "1d2. Place:", + "description": "(0-5, 95-98), 95/995 = Physical problem 96/996 = Cognitive/behavior problem 97/997 = Other problem 98/998 = Verbal refusal", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + } + } + }, + "fu_pentagon": { + "title": "1e. Intersecting pentagon subscale score:", + "description": "(0-1, 95-98)", + "type": "string", + + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mmse": { + "title": "1f. Total MMSE score (using D-L-R-O-W) (if any of the MMSE items are 95-98, enter 88):", + "description": "(0-30, 88)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$|^88$" + } + } + }, + "fu_2": { + "title": "2. Administration of the remainder of the battery", + "type": "object", + "properties": { + "fu_npsycloc": { + "title": "2a. The remainder of the battery (i.e., the tests summarized below) was administered:", + "type": "string", + "enum": [ + "1 In ADC/clinic", + "2 In home", + "3 In person - other" + ] + }, + "fu_npsylan": { + "title": "2b. Language of test administration:", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other (SPECIFY):" + ] + }, + "fu_npsylanx": { + "title": "2b1. Language of test administration - Other (specify):", + "description": "( Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + } + } + }, + "fu_3": { + "title": "3. Logical Memory IA - Immediate", + "type": "object", + "properties": { + "fu_logi_date": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered", + "description": "Date can be submitted as YYYY-MM-DD,(Current Year or Previous Year, 88/88/8888 = N/A)", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "fu_logiprev": { + "title": "3a1. Total score from the previous test administration:", + "description": "(0-25, 88 = N/A)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$" + }, + "fu_logimem": { + "title": "3b. Total number of story units recalled from this current test administration:", + "description": "(0-25, 95-98)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$" + } + } + }, + "fu_4": { + "title": "4. Benson Complex Figure Copy", + "type": "object", + "properties": { + "fu_udsbentc_c": { + "title": "4a. Total score for copy of Benson figure:", + "description": "(0-17, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "fu_5": { + "title": "5. Digit Span Forward", + "type": "object", + "properties": { + "fu_digif": { + "title": "5a. Total number of trials correct before two consecutive errors at same digit length:(If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 6a)", + "description": "(0-12, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-2]$|^95$|^96$|^97$|^98$" + }, + "fu_digiflen": { + "title": "5b. Digit span forward length:", + "description": "(0-8)", + "type": "string", + "pattern": "^[0-8]$" + } + } + }, + "fu_6": { + "title": "6. Digit Span Backward", + "type": "object", + "properties": { + "fu_digib": { + "title": "6a. Total number of trials correct before two consecutive errors at same digit length: (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 7a)", + "description": "(0-12, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-2]$|^95$|^96$|^97$|^98$" + }, + "fu_digiblen": { + "title": "6b. Digit span backward length:", + "description": "(0-7)", + "type": "string", + "pattern": "^[0-7]$" + } + } + }, + "fu_7": { + "title": "7. Category Fluency", + "type": "object", + "properties": { + "fu_animals": { + "title": "7a. Animals: Total number of animals named in 60 seconds:", + "description": "(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + }, + "fu_veg": { + "title": "7b. Vegetables: Total number of vegetables named in 60 seconds:", + "description": "(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "fu_8": { + "title": "8. Trail Making Test", + "type": "object", + "properties": { + "fu_traila": { + "title": "8a. PART A: Total number of seconds to complete", + "description": "(0-150, 995-998)(if not finished by 150 seconds, enter 150):(If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^1[0-4][0-9]$|^150$|^995$|^996$|^997$|^998$" + }, + "fu_trailarr": { + "title": "8a1. Number of commission errors:", + "description": "(0-40)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$" + }, + "fu_trailali": { + "title": "8a2. Number of correct lines:", + "description": "(0-24)", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-4]$" + }, + "fu_trailb": { + "title": "8b. PART B: Total number of seconds to complete", + "description": "(0-300, 995-998)(if not finished by 300 seconds, enter 300): (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a)", + "type": "string", + "pattern": "^[1-2]?[0-9]?[0-9]$|^300$|^995$|^996$|^997$|^998$" + }, + "fu_trailbrr": { + "title": "8b1. Number of commission errors:", + "description": "(0-40)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$" + }, + "fu_trailbli": { + "title": "8b2. Number of correct lines:", + "description": "(0-24)", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-4]$" + } + } + }, + "fu_9": { + "title": "9. Logical Memory IIA - Delayed", + "type": "object", + "properties": { + "fu_memunits": { + "title": "9a. Total number of story units recalled:(If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 10a)", + "description": "(0-25, 95-98)", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-5]$|^95$|^96$|^97$|^98$" + }, + "fu_memtime": { + "title": "9b. Time elapsed since Logical Memory 1A - Immediate:", + "description": "(0-85 minutes,99= Unkown)", + "type": "string", + "pattern": "^[1-7]?[0-9]$|8[0-5]$|^99$" + } + } + }, + "fu_10": { + "title": "10. Benson Complex Figure Recall", + "type": "object", + "properties": { + "fu_udsbentd_c": { + "title": "10a. Total score for 10- to 15-minute delayed drawing of Benson figure:(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 11a)", + "description": "(0-17, 95-98)", + "type": "string", + "pattern": "^[1]?[0-9]$|^1[0-7]$|^95$|^96$|^97$|^98$" + }, + "fu_udsbenrs_c": { + "title": "10b. Recognized original stimulus from among four options? ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "fu_11": { + "title": "11. Boston Naming Test (30 odd-numbered items)", + "type": "object", + "properties": { + "fu_boston": { + "title": "11a. Total score:", + "description": "(0-30, 95-98)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$|^95$|^96$|^97$|^98$" + } + } + }, + "fu_12": { + "title": "12. Verbal Fluency: Phonemic Test", + "type": "object", + "properties": { + "fu_udsverfc_c": { + "title": "12a. Number of correct F-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12d.)", + "description": "(0-40, 95-98)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^95$|^96$|^97$|^98$" + }, + "fu_udsverfn_c": { + "title": "12b. Number of F-words repeated in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^1[0-5]$" + }, + "fu_udsvernf_c": { + "title": "12c. Number of non-F-words and rule violation errors in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^1[0-5]$" + }, + "fu_udsverlc_c": { + "title": "12d. Number of correct L-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 13a.)", + "description": "(0-40, 95-98)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^95$|^96$|^97$|^98$" + }, + "fu_udsverlr_c": { + "title": "12e. Number of L-words repeated in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^1[0-5]$" + }, + "fu_udsverln_c": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^1[0-5]$" + }, + "fu_udsvertn_c": { + "title": "12g. TOTAL number of correct F-words and L-words", + "description": "(0-80)", + "type": "string", + "pattern": "^[1-7]?[0-9]$|^80$" + }, + "fu_udsverte_c": { + "title": "12h. TOTAL number of F-words and L-words repetition errors", + "description": "(0-30)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$" + }, + "fu_udsverti_c": { + "title": "12i. TOTAL number of non-F/L-words and rule violation errors", + "description": "(0-30)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$" + } + } + }, + "fu_13": { + "title": "13. Overall appraisal", + "type": "object", + "properties": { + "fu_cogstat": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS neuropsychological examination, the subject's cognitive status is deemed:", + "type": "string", + "enum": [ + "1 Better than normal for age", + "2 Normal for age", + "3 One or two test scores are abnormal", + "4 Three or more scores are abnormal or lower than expected", + "0 Clinician unable to render opinion" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_1.fu_mmsecomp": { + "title": "1. Was any part of the MMSE completed?" + }, + "fu_1.fu_mmsereas": { + "title": "1no. Reason code for not completing MMSE" + }, + "fu_1.fu_mmseloc": { + "title": "1a. Administration of the MMSE was:" + }, + "fu_1.fu_mmselan": { + "title": "1a1. Language of MMSE administration:" + }, + "fu_1.fu_mmselanx": { + "title": "1a2. Language of MMSE administration - Other (specify):" + }, + "fu_1.fu_mmsevis": { + "title": "1b. Subject was unable to complete one or more sections due to visual impairment." + }, + "fu_1.fu_mmsehear": { + "title": "1c. Subject was unable to complete one or more sections due to hearing impairment." + }, + "fu_1.fu_note_c.fu_mmseorda": { + "title": "1d1. Time:" + }, + "fu_1.fu_note_c.fu_mmseorlo": { + "title": "1d2. Place:" + }, + "fu_1.fu_pentagon": { + "title": "1e. Intersecting pentagon subscale score:" + }, + "fu_1.fu_mmse": { + "title": "1f. Total MMSE score (using D-L-R-O-W) (if any of the MMSE items are 95-98, enter 88):" + }, + "fu_2.fu_npsycloc": { + "title": "2a. The remainder of the battery (i.e., the tests summarized below) was administered:" + }, + "fu_2.fu_npsylan": { + "title": "2b. Language of test administration:" + }, + "fu_2.fu_npsylanx": { + "title": "2b1. Language of test administration - Other (specify):" + }, + "fu_3.fu_logi_date": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered" + }, + "fu_3.fu_logiprev": { + "title": "3a1. Total score from the previous test administration:" + }, + "fu_3.fu_logimem": { + "title": "3b. Total number of story units recalled from this current test administration:" + }, + "fu_4.fu_udsbentc_c": { + "title": "4a. Total score for copy of Benson figure:" + }, + "fu_5.fu_digif": { + "title": "5a. Total number of trials correct before two consecutive errors at same digit length:(If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 6a)" + }, + "fu_5.fu_digiflen": { + "title": "5b. Digit span forward length:" + }, + "fu_6.fu_digib": { + "title": "6a. Total number of trials correct before two consecutive errors at same digit length: (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 7a)" + }, + "fu_6.fu_digiblen": { + "title": "6b. Digit span backward length:" + }, + "fu_6.fu_animals": { + "title": "7a. Animals: Total number of animals named in 60 seconds:" + }, + "fu_6.fu_veg": { + "title": "7b. Vegetables: Total number of vegetables named in 60 seconds:" + }, + "fu_8.fu_traila": { + "title": "8a. PART A: Total number of seconds to complete" + }, + "fu_8.fu_trailarr": { + "title": "8a1. Number of commission errors:" + }, + "fu_8.fu_trailali": { + "title": "8a2. Number of correct lines:" + }, + "fu_8.fu_trailb": { + "title": "8b. PART B: Total number of seconds to complete" + }, + "fu_8.fu_trailbrr": { + "title": "8b1. Number of commission errors:" + }, + "fu_8.fu_trailbli": { + "title": "8b2. Number of correct lines:" + }, + "fu_9.fu_memunits": { + "title": "9a. Total number of story units recalled:(If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 10a)" + }, + "fu_9.fu_memtime": { + "title": "9b. Time elapsed since Logical Memory 1A - Immediate:" + }, + "fu_10.fu_udsbentd_c": { + "title": "10a. Total score for 10- to 15-minute delayed drawing of Benson figure:(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 11a)" + }, + "fu_10.fu_udsbenrs_c": { + "title": "10b. Recognized original stimulus from among four options? " + }, + "fu_11.fu_boston": { + "title": "11a. Total score:" + }, + "fu_12.fu_udsverfc_c": { + "title": "12a. Number of correct F-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12d.)" + }, + "fu_12.fu_udsverfn_c": { + "title": "12b. Number of F-words repeated in 1 minute" + }, + "fu_12.fu_udsvernf_c": { + "title": "12c. Number of non-F-words and rule violation errors in 1 minute" + }, + "fu_12.fu_udsverlc_c": { + "title": "12d. Number of correct L-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 13a.)" + }, + "fu_12.fu_udsverlr_c": { + "title": "12e. Number of L-words repeated in 1 minute" + }, + "fu_12.fu_udsverln_c": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute" + }, + "fu_12.fu_udsvertn_c": { + "title": "12g. TOTAL number of correct F-words and L-words" + }, + "fu_12.fu_udsverte_c": { + "title": "12h. TOTAL number of F-words and L-words repetition errors" + }, + "fu_12.fu_udsverti_c": { + "title": "12i. TOTAL number of non-F/L-words and rule violation errors" + }, + "fu_13.fu_cogstat": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS neuropsychological examination, the subject's cognitive status is deemed:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_1.fu_mmsecomp": { + "title": "1. Was any part of the MMSE completed?" + }, + "fu_1.fu_mmsereas": { + "title": "1no. Reason code for not completing MMSE" + }, + "fu_1.fu_mmseloc": { + "title": "1a. Administration of the MMSE was:" + }, + "fu_1.fu_mmselan": { + "title": "1a1. Language of MMSE administration:" + }, + "fu_1.fu_mmselanx": { + "title": "1a2. Language of MMSE administration - Other (specify):" + }, + "fu_1.fu_mmsevis": { + "title": "1b. Subject was unable to complete one or more sections due to visual impairment." + }, + "fu_1.fu_mmsehear": { + "title": "1c. Subject was unable to complete one or more sections due to hearing impairment." + }, + "fu_1.fu_note_c.fu_mmseorda": { + "title": "1d1. Time:" + }, + "fu_1.fu_note_c.fu_mmseorlo": { + "title": "1d2. Place:" + }, + "fu_1.fu_pentagon": { + "title": "1e. Intersecting pentagon subscale score:" + }, + "fu_1.fu_mmse": { + "title": "1f. Total MMSE score (using D-L-R-O-W) (if any of the MMSE items are 95-98, enter 88):" + }, + "fu_2.fu_npsycloc": { + "title": "2a. The remainder of the battery (i.e., the tests summarized below) was administered:" + }, + "fu_2.fu_npsylan": { + "title": "2b. Language of test administration:" + }, + "fu_2.fu_npsylanx": { + "title": "2b1. Language of test administration - Other (specify):" + }, + "fu_3.fu_logi_date": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered" + }, + "fu_3.fu_logiprev": { + "title": "3a1. Total score from the previous test administration:" + }, + "fu_3.fu_logimem": { + "title": "3b. Total number of story units recalled from this current test administration:" + }, + "fu_4.fu_udsbentc_c": { + "title": "4a. Total score for copy of Benson figure:" + }, + "fu_5.fu_digif": { + "title": "5a. Total number of trials correct before two consecutive errors at same digit length:(If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 6a)" + }, + "fu_5.fu_digiflen": { + "title": "5b. Digit span forward length:" + }, + "fu_6.fu_digib": { + "title": "6a. Total number of trials correct before two consecutive errors at same digit length: (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 7a)" + }, + "fu_6.fu_digiblen": { + "title": "6b. Digit span backward length:" + }, + "fu_6.fu_animals": { + "title": "7a. Animals: Total number of animals named in 60 seconds:" + }, + "fu_6.fu_veg": { + "title": "7b. Vegetables: Total number of vegetables named in 60 seconds:" + }, + "fu_8.fu_traila": { + "title": "8a. PART A: Total number of seconds to complete" + }, + "fu_8.fu_trailarr": { + "title": "8a1. Number of commission errors:" + }, + "fu_8.fu_trailali": { + "title": "8a2. Number of correct lines:" + }, + "fu_8.fu_trailb": { + "title": "8b. PART B: Total number of seconds to complete" + }, + "fu_8.fu_trailbrr": { + "title": "8b1. Number of commission errors:" + }, + "fu_8.fu_trailbli": { + "title": "8b2. Number of correct lines:" + }, + "fu_9.fu_memunits": { + "title": "9a. Total number of story units recalled:(If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 10a)" + }, + "fu_9.fu_memtime": { + "title": "9b. Time elapsed since Logical Memory 1A - Immediate:" + }, + "fu_10.fu_udsbentd_c": { + "title": "10a. Total score for 10- to 15-minute delayed drawing of Benson figure:(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 11a)" + }, + "fu_10.fu_udsbenrs_c": { + "title": "10b. Recognized original stimulus from among four options? " + }, + "fu_11.fu_boston": { + "title": "11a. Total score:" + }, + "fu_12.fu_udsverfc_c": { + "title": "12a. Number of correct F-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12d.)" + }, + "fu_12.fu_udsverfn_c": { + "title": "12b. Number of F-words repeated in 1 minute" + }, + "fu_12.fu_udsvernf_c": { + "title": "12c. Number of non-F-words and rule violation errors in 1 minute" + }, + "fu_12.fu_udsverlc_c": { + "title": "12d. Number of correct L-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 13a.)" + }, + "fu_12.fu_udsverlr_c": { + "title": "12e. Number of L-words repeated in 1 minute" + }, + "fu_12.fu_udsverln_c": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute" + }, + "fu_12.fu_udsvertn_c": { + "title": "12g. TOTAL number of correct F-words and L-words" + }, + "fu_12.fu_udsverte_c": { + "title": "12h. TOTAL number of F-words and L-words repetition errors" + }, + "fu_12.fu_udsverti_c": { + "title": "12i. TOTAL number of non-F/L-words and rule violation errors" + }, + "fu_13.fu_cogstat": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS neuropsychological examination, the subject's cognitive status is deemed:" + } + }, + "boost_values": { + "patient": 1.0, + "fu_1.fu_mmsecomp": 1.0, + "fu_1.fu_mmsereas": 1.0, + "fu_1.fu_mmseloc": 1.0, + "fu_1.fu_mmselan": 1.0, + "fu_1.fu_mmselanx": 1.0, + "fu_1.fu_mmsevis": 1.0, + "fu_1.fu_mmsehear": 1.0, + "fu_1.fu_note_c.fu_mmseorda": 1.0, + "fu_1.fu_note_c.fu_mmseorlo": 1.0, + "fu_1.fu_pentagon": 1.0, + "fu_1.fu_mmse": 1.0, + "fu_2.fu_npsycloc": 1.0, + "fu_2.fu_npsylan": 1.0, + "fu_2.fu_npsylanx": 1.0, + "fu_3.fu_logi_date": 1.0, + "fu_3.fu_logiprev": 1.0, + "fu_3.fu_logimem": 1.0, + "fu_4.fu_udsbentc_c": 1.0, + "fu_5.fu_digif": 1.0, + "fu_5.fu_digiflen": 1.0, + "fu_6.fu_digib": 1.0, + "fu_6.fu_digiblen": 1.0, + "fu_7.fu_animals": 1.0, + "fu_7.fu_veg": 1.0, + "fu_8.fu_traila": 1.0, + "fu_8.fu_trailarr": 1.0, + "fu_8.fu_trailali": 1.0, + "fu_8.fu_trailb": 1.0, + "fu_8.fu_trailbrr": 1.0, + "fu_8.fu_trailbli": 1.0, + "fu_9.fu_memunits": 1.0, + "fu_9.fu_memtime": 1.0, + "fu_10.fu_udsbentd_c": 1.0, + "fu_10.fu_udsbenrs_c": 1.0, + "fu_11.fu_boston": 1.0, + "fu_12.fu_udsverfc_c": 1.0, + "fu_12.fu_udsverfn_c": 1.0, + "fu_12.fu_udsvernf_c": 1.0, + "fu_12.fu_udsverlc_c": 1.0, + "fu_12.fu_udsverlr_c": 1.0, + "fu_12.fu_udsverln_c": 1.0, + "fu_12.fu_udsvertn_c": 1.0, + "fu_12.fu_udsverte_c": 1.0, + "fu_12.fu_udsverti_c": 1.0, + "fu_13.fu_cogstat": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_c1v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_c2v3.json b/src/encoded/schemas/fvp_c2v3.json new file mode 100644 index 0000000000..0b4224c529 --- /dev/null +++ b/src/encoded/schemas/fvp_c2v3.json @@ -0,0 +1,1080 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW UP Form C2: Neuropsychological Battery Scores", + "description": "INSTRUCTIONS: This form is to be completed by ADC or clinic staff. For test administration and scoring, see Instructions for Neuropsychological Battery Form C2. Link to C2 Instructions . Any new subjects who enroll in the UDS after the implementation of UDS3 must be assessed with the new neuropsychological test battery (Form C2). Link to NACC Coding Guidebook KEY: If the subject cannot complete any of the following exams, please give the reason by entering one of the following codes: 95/995=Physical problem 96/996=Cognitive/behavior problem 97/997=Other problem 98/998=Verbal refusal", + "id": "/profiles/uds_fvp_c2v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "fu_1", + "fu_2", + "fu_3", + "fu_4", + "fu_5", + "fu_6", + "fu_7", + "fu_8", + "fu_9", + "fu_10", + "fu_11", + "fu_12", + "fu_13" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_1": { + "title": "1. Montreal Cognitive Assessment (MoCA)", + "type": "object", + "properties": { + "fu_mocacomp": { + "title": "1a. Was any part of the MoCA administered?", + "type": "string", + "enum": [ + "0 No (If No, enter reason code, 95-98) below i Question 1a1 and (SKIP TO QUESTION 2a)", + "1 Yes (CONTINUE WITH QUESTION 1b)" + ] + }, + "fu_mocareas": { + "title": "1a1. Was any part of MoCA administered? If no, enter reason code, 95-98)", + "type": "string", + "enum": [ + "95 = Physical problem", + "96 = Cognitive/behavior problem", + "97 = Other problem", + "98 = Verbal refusal" + ] + }, + "fu_mocaloc": { + "title": "1b. MoCA was administered:", + "type": "string", + "enum": [ + "1 In ADC or clinic", + "2 In home", + "3 In person - other" + ] + }, + "fu_mocalan": { + "title": "1c. Language of MoCA administration:", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other(SPECIFY BELOW):" + ] + }, + "fu_mocalanx": { + "title": "1c1. Specify language of MoCA administration", + "type": "string" + }, + "fu_mocavis": { + "title": "1d. Subject was unable to complete one or more sections due to visual impairment: ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mocahear": { + "title": "1e. Subject was unable to complete one or more sections due to hearing impairment: ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mocatots": { + "title": "1f. TOTAL RAW SCORE - UNCORRECTED (Not corrected for education or visual/hearing impairment) (Enter 88 if any of the following MoCA items where not administered: 1g-1l, 1n-1t, 1w-1bb)", + "description": "((0-30, 88)),WARNING - a value of 88 should be entered in the box above. At least one of the following MoCA items was not administered: 1g-1l, 1n-1t, 1w-1bb.", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$|^88$" + }, + "fu_mocatrai": { + "title": "1g. Visuospatial/executive -- Trails", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocacube": { + "title": "1h. Visuospatial/executive -- Cube", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocacloc": { + "title": "1i. Visuospatial/executive -- Clock contour", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocaclon": { + "title": "1j. Visuospatial/executive -- Clock numbers", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocacloh": { + "title": "1k. Visuospatial/executive -- Clock hands", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocanami": { + "title": "1l. Language -- Naming", + "description": "((0-3, 95-98))", + "type": "string", + "pattern": "^[0-3]$|^95$|^96$|^97$|^98$" + }, + "fu_mocaregi": { + "title": "1m. Memory -- Registration (two trials)", + "description": "((0-10, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^10$|^95$|^96$|^97$|^98$" + }, + "fu_mocadigi": { + "title": "1n. Attention -- Digits", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "fu_mocalett": { + "title": "1o. Attention -- Letter A", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocaser": { + "title": "1p. Attention -- Serial 7s", + "description": "((0-3, 95-98))", + "type": "string", + "pattern": "^[0-3]$|^95$|^96$|^97$|^98$" + }, + "fu_mocarepe": { + "title": "1q. Language -- Repetition", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "fu_mocaflue": { + "title": "1r. Language -- Fluency", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocaabst": { + "title": "1s. Abstraction", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "fu_mocarecn": { + "title": "1t. Delayed recall -- No cue", + "description": "((0-5, 95-98))", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "fu_mocarecc": { + "title": "1u. Delayed recall -- Category cue", + "description": "((0-5; 88=not applicable))", + "type": "string", + "pattern": "^[0-5]$||^88$" + }, + "fu_mocarecr": { + "title": "1v. Delayed recall -- Recognition", + "description": "((0-5; 88=not applicable))", + "type": "string", + "pattern": "^[0-5]$||^88$" + }, + "fu_mocaordt": { + "title": "1w. Orientation -- Date", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocaormo": { + "title": "1x. Orientation -- Month", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocaoryr": { + "title": "1y. Orientation -- Year", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocaordy": { + "title": "1z. Orientation -- Day", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocaorpl": { + "title": "1aa. Orientation -- Place", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "fu_mocaorct": { + "title": "1bb. Orientation -- City", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + } + } + }, + "fu_2": { + "title": "2. ADMINISTRATION OF THE REMAINDER OF THE BATTERY", + "type": "object", + "properties": { + "fu_npsycloc_c": { + "title": "2a. The tests following the MoCA were administered:", + "type": "string", + "enum": [ + "1 In ADC or clinic", + "2 In home", + "3 In person - other" + ] + }, + "fu_npsylan_c": { + "title": "2b. Test following MoCA: Language of test administration.", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other(SPECIFY BELOW):" + ] + }, + "fu_npsylanx_c": { + "title": "2b1. Other language of tests following the MoCA:", + "type": "string" + } + } + }, + "fu_3": { + "title": "3. Craft Story 21 Recall (Immediate)", + "type": "object", + "properties": { + "fu_craftvrs": { + "title": "3a. Total story units recalled, verbatim scoring (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 4a.)", + "description": "((0-44, 95-98))", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^4[0-4]$|^95$|^96$|^97$|^98$" + }, + "fu_crafturs": { + "title": "3b. Total story units recalled, paraphrase scoring (0-25)", + "description": "(0-25)", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-5]$" + } + } + }, + "fu_4": { + "title": "4. Benson Complex Figure Copy", + "type": "object", + "properties": { + "fu_udsbentc": { + "title": "4a. Total score for copy of Benson figure (If test not completed, enter reason code, 95-98)", + "description": "((0-17, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^1[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "fu_5": { + "title": "5. Number Span Test: Forward", + "type": "object", + "properties": { + "fu_digforct": { + "title": "5a. Number of correct trials (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 6a.)", + "description": "((0-14, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^1[0-4]$|^95$|^96$|^97$|^98$" + }, + "fu_digforsl": { + "title": "5b. Longest span forward", + "description": "(0, 3-9)", + "type": "string", + "pattern": "^0$|^[3-9]$" + } + } + }, + "fu_6": { + "title": "6. Number Span Test: Backward", + "type": "object", + "properties": { + "fu_digbacct": { + "title": "6a. Number of correct trials (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 7a.)", + "description": "((0-14, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^1[0-4]$|^95$|^96$|^97$|^98$" + }, + "fu_digbacls": { + "title": "6b. Longest span backward", + "description": "(0, 2-8)", + "type": "string", + "pattern": "^0$|^[2-8]$" + } + } + }, + "fu_7": { + "title": "7. Category Fluency", + "type": "object", + "properties": { + "fu_animals_c": { + "title": "7a. Animals: Total number of animals named in 60 seconds (If test not completed, enter reason code, 95-98)", + "description": "(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + }, + "fu_veg_c": { + "title": "7b. Vegetables: Total number of vegetables named in 60 seconds (If test not completed, enter reason code, 95-98)", + "description": "(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "fu_8": { + "title": "8. Trail Making Test", + "type": "object", + "properties": { + "fu_traila_c": { + "title": "8a. PART A: Total number of seconds to complete (if not finished by 150 seconds, enter 150) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b.)", + "description": "(0-150, 995-998)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^1[0-4][0-9]$|^150$|^995$|^996$|^997$|^998$" + }, + "fu_trailarr_c": { + "title": "8a1. Number of commission errors", + "description": "(0-40)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$" + }, + "fu_trailali_c": { + "title": "8a2. Number of correct lines", + "description": "(0-24)", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-4]$" + }, + "fu_trailb_c": { + "title": "8b. PART B: Total number of seconds to complete (if not finished by 300 seconds, enter 300) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a.)", + "description": "(0-300, 995-998)", + "type": "string", + "pattern": "^[1-2]?[0-9]?[0-9]$|^300$|^995$|^996$|^997$|^998$" + }, + "fu_trailbrr_c": { + "title": "8b1. Number of commission errors", + "description": "(0-40)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$" + }, + "fu_trailbli_c": { + "title": "8b2. Number of correct lines", + "description": "(0-24)", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-4]$" + } + } + }, + "fu_9": { + "title": "9. Craft Story 21 recall (Delayed)", + "type": "object", + "properties": { + "fu_craftdvr": { + "title": "9a. Total story units recalled, verbatim scoring (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 10a.)", + "description": "((0-44, 95-98))", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^4[0-4]$|^95$|^96$|^97$|^98$" + }, + "fu_craftdre": { + "title": "9b. Total story units recalled, paraphrase scoring (0-25)", + "description": "(0-25)", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-5]$" + }, + "fu_craftdti": { + "title": "9c. Delay time (minutes) (99=Unknown)", + "description": "(0-85 minutes 99=Unknown)", + "type": "string", + "pattern": "^[1-7]?[0-9]$|8[0-5]$|^99$" + }, + "fu_craftcue": { + "title": "9d. Cue (boy) needed", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "fu_10": { + "title": "10. Benson Complex Figure Recall", + "type": "object", + "properties": { + "fu_udsbentd": { + "title": "10a. Total score for drawing of Benson figure following 10- to 15-minute delay (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 11a.)", + "description": "((0-17, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^1[0-7]$|^95$|^96$|^97$|^98$" + }, + "fu_udsbenrs": { + "title": "10b. Recognized original stimulus from among four options? ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "fu_11": { + "title": "11. Multilingual Naming Test (MINT)", + "type": "object", + "properties": { + "fu_minttots": { + "title": "11a. Total score (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12a.)", + "description": "(0-32, 95-98)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^3[0-2]$|^95$|^96$|^97$|^98$" + }, + "fu_minttotw": { + "title": "11b. Total correct without semantic cue", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^3[0-2]$" + }, + "fu_mintscng": { + "title": "11c. Semantic cues: Number given", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^3[0-2]$" + }, + "fu_mintscnc": { + "title": "11d. Semantic cues: Number correct with cue (88=not applicable)", + "description": "(0-32, 88)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^3[0-2]$|^88$" + }, + "fu_mintpcng": { + "title": "11e. Phonemic cues: Number given", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^3[0-2]$" + }, + "fu_mintpcnc": { + "title": "11f. Phonemic cues: Number correct with cue (88=not applicable)", + "description": "(0-32, 88)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^3[0-2]$|^88$" + } + } + }, + "fu_12": { + "title": "12. Verbal Fluency: Phonemic Test", + "type": "object", + "properties": { + "fu_udsverfc": { + "title": "12a. Number of correct F-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12d.)", + "description": "(0-40, 95-98)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^95$|^96$|^97$|^98$" + }, + "fu_udsverfn": { + "title": "12b. Number of F-words repeated in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^1[0-5]$" + }, + "fu_udsvernf": { + "title": "12c. Number of F-words and rule violation errors in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^1[0-5]$" + }, + "fu_udsverlc": { + "title": "12d. Number of correct L-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 13a.)", + "description": "(0-40, 95-98)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^95$|^96$|^97$|^98$" + }, + "fu_udsverlr": { + "title": "12e. Number of L-words repeated in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^1[0-5]$" + }, + "fu_udsverln": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^1[0-5]$" + }, + "fu_udsvertn": { + "title": "12g. TOTAL number of correct F-words and L-words", + "description": "(0-80)", + "type": "string", + "pattern": "^[1-7]?[0-9]$|^80$" + }, + "fu_udsverte": { + "title": "12h. TOTAL number of F-words and L-words repetition errors", + "description": "(0-30)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$" + }, + "fu_udsverti": { + "title": "12i. TOTAL number of non-F/L-words and rule violation errors", + "description": "(0-30)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$" + } + } + }, + "fu_13": { + "title": "13. Overall appraisal", + "type": "object", + "properties": { + "fu_cogstat_c": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS neuropsychological examination, the subject's cognitive status is deemed:", + "type": "string", + "enum": [ + "1 Better than normal for age", + "2 Normal for age", + "3 One or two test scores are abnormal", + "4 Three or more scores are abnormal or lower than expected", + "0 Clinician unable to render opinion" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_1.fu_mocacomp": { + "title": "1a. Was any part of the MoCA administered?" + }, + "fu_1.fu_mocareas": { + "title": "1a1. Was any part of MoCA administered? If no, enter reason code, 95-98)" + }, + "fu_1.fu_mocaloc": { + "title": "1b. MoCA was administered:" + }, + "fu_1.fu_mocalan": { + "title": "1c. Language of MoCA administration:" + }, + "fu_1.fu_mocalanx": { + "title": "1c1. Specify language of MoCA administration" + }, + "fu_1.fu_mocavis": { + "title": "1d. Subject was unable to complete one or more sections due to visual impairment: " + }, + "fu_1.fu_mocahear": { + "title": "1e. Subject was unable to complete one or more sections due to hearing impairment: " + }, + "fu_1.fu_mocatots": { + "title": "1f. TOTAL RAW SCORE - UNCORRECTED (Not corrected for education or visual/hearing impairment) (Enter 88 if any of the following MoCA items where not administered: 1g-1l, 1n-1t, 1w-1bb)" + }, + "fu_1.fu_mocatrai": { + "title": "1g. Visuospatial/executive -- Trails" + }, + "fu_1.fu_mocacube": { + "title": "1h. Visuospatial/executive -- Cube" + }, + "fu_1.fu_mocacloc": { + "title": "1i. Visuospatial/executive -- Clock contour" + }, + "fu_1.fu_mocaclon": { + "title": "1j. Visuospatial/executive -- Clock numbers" + }, + "fu_1.fu_mocacloh": { + "title": "1k. Visuospatial/executive -- Clock hands" + }, + "fu_1.fu_mocanami": { + "title": "1l. Language -- Naming" + }, + "fu_1.fu_mocaregi": { + "title": "1m. Memory -- Registration (two trials)" + }, + "fu_1.fu_mocadigi": { + "title": "1n. Attention -- Digits" + }, + "fu_1.fu_mocalett": { + "title": "1o. Attention -- Letter A" + }, + "fu_1.fu_mocaser": { + "title": "1p. Attention -- Serial 7s" + }, + "fu_1.fu_mocarepe": { + "title": "1q. Language -- Repetition" + }, + "fu_1.fu_mocaflue": { + "title": "1r. Language -- Fluency" + }, + "fu_1.fu_mocaabst": { + "title": "1s. Abstraction" + }, + "fu_1.fu_mocarecn": { + "title": "1t. Delayed recall -- No cue" + }, + "fu_1.fu_mocarecc": { + "title": "1u. Delayed recall -- Category cue" + }, + "fu_1.fu_mocarecr": { + "title": "1v. Delayed recall -- Recognition" + }, + "fu_1.fu_mocaordt": { + "title": "1w. Orientation -- Date" + }, + "fu_1.fu_mocaormo": { + "title": "1x. Orientation -- Month" + }, + "fu_1.fu_mocaoryr": { + "title": "1y. Orientation -- Year" + }, + "fu_1.fu_mocaordy": { + "title": "1z. Orientation -- Day" + }, + "fu_1.fu_mocaorpl": { + "title": "1aa. Orientation -- Place" + }, + "fu_1.fu_mocaorct": { + "title": "1bb. Orientation -- City" + }, + "fu_2.fu_npsycloc_c": { + "title": "2a. The tests following the MoCA were administered:" + }, + "fu_2.fu_npsylan_c": { + "title": "2b. Test following MoCA: Language of test administration." + }, + "fu_2.fu_npsylanx_c": { + "title": "2b1. Other language of tests following the MoCA:" + }, + "fu_3.fu_craftvrs": { + "title": "3a. Total story units recalled, verbatim scoring (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 4a.)" + }, + "fu_3.fu_crafturs": { + "title": "3b. Total story units recalled, paraphrase scoring (0-25)" + }, + "fu_4.fu_udsbentc": { + "title": "4a. Total score for copy of Benson figure (If test not completed, enter reason code, 95-98)" + }, + "fu_5.fu_digforct": { + "title": "5a. Number of correct trials (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 6a.)" + }, + "fu_5.fu_digforsl": { + "title": "5b. Longest span forward" + }, + "fu_6.fu_digbacct": { + "title": "6a. Number of correct trials (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 7a.)" + }, + "fu_6.fu_digbacls": { + "title": "6b. Longest span backward" + }, + "fu_7.fu_animals_c": { + "title": "7a. Animals: Total number of animals named in 60 seconds (If test not completed, enter reason code, 95-98)" + }, + "fu_7.fu_veg_c": { + "title": "7b. Vegetables: Total number of vegetables named in 60 seconds (If test not completed, enter reason code, 95-98)" + }, + "fu_8.fu_traila_c": { + "title": "8a. PART A: Total number of seconds to complete (if not finished by 150 seconds, enter 150) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b.)" + }, + "fu_8.fu_trailarr_c": { + "title": "8a1. Number of commission errors" + }, + "fu_8.fu_trailali_c": { + "title": "8a2. Number of correct lines" + }, + "fu_8.fu_trailb_c": { + "title": "8b. PART B: Total number of seconds to complete (if not finished by 300 seconds, enter 300) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a.)" + }, + "fu_8.fu_trailbrr_c": { + "title": "8b1. Number of commission errors" + }, + "fu_8.fu_trailbli_c": { + "title": "8b2. Number of correct lines" + }, + "fu_9.fu_craftdvr": { + "title": "9a. Total story units recalled, verbatim scoring (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 10a.)" + }, + "fu_9.fu_craftdre": { + "title": "9b. Total story units recalled, paraphrase scoring (0-25)" + }, + "fu_9.fu_craftdti": { + "title": "9c. Delay time (minutes) (99=Unknown)" + }, + "fu_9.fu_craftcue": { + "title": "9d. Cue (boy) needed" + }, + "fu_10.fu_udsbentd": { + "title": "10a. Total score for drawing of Benson figure following 10- to 15-minute delay (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 11a.)" + }, + "fu_10.fu_udsbenrs": { + "title": "10b. Recognized original stimulus from among four options? " + }, + "fu_11.fu_minttots": { + "title": "11a. Total score (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12a.)" + }, + "fu_11.fu_minttotw": { + "title": "11b. Total correct without semantic cue" + }, + "fu_11.fu_mintscng": { + "title": "11c. Semantic cues: Number given" + }, + "fu_11.fu_mintscnc": { + "title": "11d. Semantic cues: Number correct with cue (88=not applicable)" + }, + "fu_11.fu_mintpcng": { + "title": "11e. Phonemic cues: Number given" + }, + "fu_11.fu_mintpcnc": { + "title": "11f. Phonemic cues: Number correct with cue (88=not applicable)" + }, + "fu_12.fu_udsverfc": { + "title": "12a. Number of correct F-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12d.)" + }, + "fu_12.fu_udsverfn": { + "title": "12b. Number of F-words repeated in 1 minute" + }, + "fu_12.fu_udsvernf": { + "title": "12c. Number of F-words and rule violation errors in 1 minute" + }, + "fu_12.fu_udsverlc": { + "title": "12d. Number of correct L-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 13a.)" + }, + "fu_12.fu_udsverlr": { + "title": "12e. Number of L-words repeated in 1 minute" + }, + "fu_12.fu_udsverln": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute" + }, + "fu_12.fu_udsvertn": { + "title": "12g. TOTAL number of correct F-words and L-words" + }, + "fu_12.fu_udsverte": { + "title": "12h. TOTAL number of F-words and L-words repetition errors" + }, + "fu_12.fu_udsverti": { + "title": "12i. TOTAL number of non-F/L-words and rule violation errors" + }, + "fu_13.fu_cogstat_c": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS neuropsychological examination, the subject's cognitive status is deemed:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_1.fu_mocacomp": { + "title": "1a. Was any part of the MoCA administered?" + }, + "fu_1.fu_mocareas": { + "title": "1a1. Was any part of MoCA administered? If no, enter reason code, 95-98)" + }, + "fu_1.fu_mocaloc": { + "title": "1b. MoCA was administered:" + }, + "fu_1.fu_mocalan": { + "title": "1c. Language of MoCA administration:" + }, + "fu_1.fu_mocalanx": { + "title": "1c1. Specify language of MoCA administration" + }, + "fu_1.fu_mocavis": { + "title": "1d. Subject was unable to complete one or more sections due to visual impairment: " + }, + "fu_1.fu_mocahear": { + "title": "1e. Subject was unable to complete one or more sections due to hearing impairment: " + }, + "fu_1.fu_mocatots": { + "title": "1f. TOTAL RAW SCORE - UNCORRECTED (Not corrected for education or visual/hearing impairment) (Enter 88 if any of the following MoCA items where not administered: 1g-1l, 1n-1t, 1w-1bb)" + }, + "fu_1.fu_mocatrai": { + "title": "1g. Visuospatial/executive -- Trails" + }, + "fu_1.fu_mocacube": { + "title": "1h. Visuospatial/executive -- Cube" + }, + "fu_1.fu_mocacloc": { + "title": "1i. Visuospatial/executive -- Clock contour" + }, + "fu_1.fu_mocaclon": { + "title": "1j. Visuospatial/executive -- Clock numbers" + }, + "fu_1.fu_mocacloh": { + "title": "1k. Visuospatial/executive -- Clock hands" + }, + "fu_1.fu_mocanami": { + "title": "1l. Language -- Naming" + }, + "fu_1.fu_mocaregi": { + "title": "1m. Memory -- Registration (two trials)" + }, + "fu_1.fu_mocadigi": { + "title": "1n. Attention -- Digits" + }, + "fu_1.fu_mocalett": { + "title": "1o. Attention -- Letter A" + }, + "fu_1.fu_mocaser": { + "title": "1p. Attention -- Serial 7s" + }, + "fu_1.fu_mocarepe": { + "title": "1q. Language -- Repetition" + }, + "fu_1.fu_mocaflue": { + "title": "1r. Language -- Fluency" + }, + "fu_1.fu_mocaabst": { + "title": "1s. Abstraction" + }, + "fu_1.fu_mocarecn": { + "title": "1t. Delayed recall -- No cue" + }, + "fu_1.fu_mocarecc": { + "title": "1u. Delayed recall -- Category cue" + }, + "fu_1.fu_mocarecr": { + "title": "1v. Delayed recall -- Recognition" + }, + "fu_1.fu_mocaordt": { + "title": "1w. Orientation -- Date" + }, + "fu_1.fu_mocaormo": { + "title": "1x. Orientation -- Month" + }, + "fu_1.fu_mocaoryr": { + "title": "1y. Orientation -- Year" + }, + "fu_1.fu_mocaordy": { + "title": "1z. Orientation -- Day" + }, + "fu_1.fu_mocaorpl": { + "title": "1aa. Orientation -- Place" + }, + "fu_1.fu_mocaorct": { + "title": "1bb. Orientation -- City" + }, + "fu_2.fu_npsycloc_c": { + "title": "2a. The tests following the MoCA were administered:" + }, + "fu_2.fu_npsylan_c": { + "title": "2b. Test following MoCA: Language of test administration." + }, + "fu_2.fu_npsylanx_c": { + "title": "2b1. Other language of tests following the MoCA:" + }, + "fu_3.fu_craftvrs": { + "title": "3a. Total story units recalled, verbatim scoring (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 4a.)" + }, + "fu_3.fu_crafturs": { + "title": "3b. Total story units recalled, paraphrase scoring (0-25)" + }, + "fu_4.fu_udsbentc": { + "title": "4a. Total score for copy of Benson figure (If test not completed, enter reason code, 95-98)" + }, + "fu_5.fu_digforct": { + "title": "5a. Number of correct trials (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 6a.)" + }, + "fu_5.fu_digforsl": { + "title": "5b. Longest span forward" + }, + "fu_6.fu_digbacct": { + "title": "6a. Number of correct trials (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 7a.)" + }, + "fu_6.fu_digbacls": { + "title": "6b. Longest span backward" + }, + "fu_7.fu_animals_c": { + "title": "7a. Animals: Total number of animals named in 60 seconds (If test not completed, enter reason code, 95-98)" + }, + "fu_7.fu_veg_c": { + "title": "7b. Vegetables: Total number of vegetables named in 60 seconds (If test not completed, enter reason code, 95-98)" + }, + "fu_8.fu_traila_c": { + "title": "8a. PART A: Total number of seconds to complete (if not finished by 150 seconds, enter 150) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b.)" + }, + "fu_8.fu_trailarr_c": { + "title": "8a1. Number of commission errors" + }, + "fu_8.fu_trailali_c": { + "title": "8a2. Number of correct lines" + }, + "fu_8.fu_trailb_c": { + "title": "8b. PART B: Total number of seconds to complete (if not finished by 300 seconds, enter 300) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a.)" + }, + "fu_8.fu_trailbrr_c": { + "title": "8b1. Number of commission errors" + }, + "fu_8.fu_trailbli_c": { + "title": "8b2. Number of correct lines" + }, + "fu_9.fu_craftdvr": { + "title": "9a. Total story units recalled, verbatim scoring (If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 10a.)" + }, + "fu_9.fu_craftdre": { + "title": "9b. Total story units recalled, paraphrase scoring (0-25)" + }, + "fu_9.fu_craftdti": { + "title": "9c. Delay time (minutes) (99=Unknown)" + }, + "fu_9.fu_craftcue": { + "title": "9d. Cue (boy) needed" + }, + "fu_10.fu_udsbentd": { + "title": "10a. Total score for drawing of Benson figure following 10- to 15-minute delay (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 11a.)" + }, + "fu_10.fu_udsbenrs": { + "title": "10b. Recognized original stimulus from among four options? " + }, + "fu_11.fu_minttots": { + "title": "11a. Total score (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12a.)" + }, + "fu_11.fu_minttotw": { + "title": "11b. Total correct without semantic cue" + }, + "fu_11.fu_mintscng": { + "title": "11c. Semantic cues: Number given" + }, + "fu_11.fu_mintscnc": { + "title": "11d. Semantic cues: Number correct with cue (88=not applicable)" + }, + "fu_11.fu_mintpcng": { + "title": "11e. Phonemic cues: Number given" + }, + "fu_11.fu_mintpcnc": { + "title": "11f. Phonemic cues: Number correct with cue (88=not applicable)" + }, + "fu_12.fu_udsverfc": { + "title": "12a. Number of correct F-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12d.)" + }, + "fu_12.fu_udsverfn": { + "title": "12b. Number of F-words repeated in 1 minute" + }, + "fu_12.fu_udsvernf": { + "title": "12c. Number of F-words and rule violation errors in 1 minute" + }, + "fu_12.fu_udsverlc": { + "title": "12d. Number of correct L-words generated in 1 minute (If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 13a.)" + }, + "fu_12.fu_udsverlr": { + "title": "12e. Number of L-words repeated in 1 minute" + }, + "fu_12.fu_udsverln": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute" + }, + "fu_12.fu_udsvertn": { + "title": "12g. TOTAL number of correct F-words and L-words" + }, + "fu_12.fu_udsverte": { + "title": "12h. TOTAL number of F-words and L-words repetition errors" + }, + "fu_12.fu_udsverti": { + "title": "12i. TOTAL number of non-F/L-words and rule violation errors" + }, + "fu_13.fu_cogstat_c": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS neuropsychological examination, the subject's cognitive status is deemed:" + } + }, + "boost_values": { + "patient": 1.0, + "fu_1.fu_mocacomp": 1.0, + "fu_1.fu_mocareas": 1.0, + "fu_1.fu_mocaloc": 1.0, + "fu_1.fu_mocalan": 1.0, + "fu_1.fu_mocalanx": 1.0, + "fu_1.fu_mocavis": 1.0, + "fu_1.fu_mocahear": 1.0, + "fu_1.fu_mocatots": 1.0, + "fu_1.fu_mocatrai": 1.0, + "fu_1.fu_mocacube": 1.0, + "fu_1.fu_mocacloc": 1.0, + "fu_1.fu_mocaclon": 1.0, + "fu_1.fu_mocacloh": 1.0, + "fu_1.fu_mocanami": 1.0, + "fu_1.fu_mocaregi": 1.0, + "fu_1.fu_mocadigi": 1.0, + "fu_1.fu_mocalett": 1.0, + "fu_1.fu_mocaser": 1.0, + "fu_1.fu_mocarepe": 1.0, + "fu_1.fu_mocaflue": 1.0, + "fu_1.fu_mocaabst": 1.0, + "fu_1.fu_mocarecn": 1.0, + "fu_1.fu_mocarecc": 1.0, + "fu_1.fu_mocarecr": 1.0, + "fu_1.fu_mocaordt": 1.0, + "fu_1.fu_mocaormo": 1.0, + "fu_1.fu_mocaoryr": 1.0, + "fu_1.fu_mocaordy": 1.0, + "fu_1.fu_mocaorpl": 1.0, + "fu_1.fu_mocaorct": 1.0, + "fu_2.fu_npsycloc_c": 1.0, + "fu_2.fu_npsylan_c": 1.0, + "fu_2.fu_npsylanx_c": 1.0, + "fu_3.fu_craftvrs": 1.0, + "fu_3.fu_crafturs": 1.0, + "fu_4.fu_udsbentc": 1.0, + "fu_5.fu_digforct": 1.0, + "fu_5.fu_digforsl": 1.0, + "fu_6.fu_digbacct": 1.0, + "fu_6.fu_digbacls": 1.0, + "fu_7.fu_animals_c": 1.0, + "fu_7.fu_veg_c": 1.0, + "fu_8.fu_traila_c": 1.0, + "fu_8.fu_trailarr_c": 1.0, + "fu_8.fu_trailali_c": 1.0, + "fu_8.fu_trailb_c": 1.0, + "fu_8.fu_trailbrr_c": 1.0, + "fu_8.fu_trailbli_c": 1.0, + "fu_9.fu_craftdvr": 1.0, + "fu_9.fu_craftdre": 1.0, + "fu_9.fu_craftdti": 1.0, + "fu_9.fu_craftcue": 1.0, + "fu_10.fu_udsbentd": 1.0, + "fu_10.fu_udsbenrs": 1.0, + "fu_11.fu_minttots": 1.0, + "fu_11.fu_minttotw": 1.0, + "fu_11.fu_mintscng": 1.0, + "fu_11.fu_mintscnc": 1.0, + "fu_11.fu_mintpcng": 1.0, + "fu_11.fu_mintpcnc": 1.0, + "fu_12.fu_udsverfc": 1.0, + "fu_12.fu_udsverfn": 1.0, + "fu_12.fu_udsvernf": 1.0, + "fu_12.fu_udsverlc": 1.0, + "fu_12.fu_udsverlr": 1.0, + "fu_12.fu_udsverln": 1.0, + "fu_12.fu_udsvertn": 1.0, + "fu_12.fu_udsverte": 1.0, + "fu_12.fu_udsverti": 1.0, + "fu_13.fu_cogstat_c": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_c2v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_d1v1.json b/src/encoded/schemas/fvp_d1v1.json new file mode 100644 index 0000000000..eb6ba6a5dd --- /dev/null +++ b/src/encoded/schemas/fvp_d1v1.json @@ -0,0 +1,1190 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet, Form D1: Clinician Diagnosis – Cognitive Status and Dementia", + "description": "NOTE: This form is to be completed by the clinician. For diagnostic \ncriteria, see UDS Coding Guidebook for Initial Visit Packet, Form D1.\nCheck only one box per response category.\n", + "id": "/profiles/fvp_d1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "WHODIDDX": { + "title": "1 Responses are based on:", + "type": "string", + "enum": [ + "1 Diagnosis from single clinician", + "2 Consensus diagnosis" + ] + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?", + "description": "Skips If Yes, go to #14, PSP. If No, continue to #3, DEMENTED.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?", + "description": "Skips If Yes, go to #5, PROBAD. If No, continue to #4A, MCIAMEM.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "cogn_impair": { + "title": "4.If the subject does not have normal cognition and is not clinically demented, indicate the type of\ncognitive impairment (choose only one impairment from items 4a thru 4e as being “present”;\nmark all others “absent”) and then designate the suspected cause(s) of the impairment by\ncompleting items 5–27:\n", + "type": "object", + "properties": { + "MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains.", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B, MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCINON1": { + "title": "4C Non-amnestic MCI – single domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C,MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "IMPNOMCI": { + "title": "4E Impaired, not MCI", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + } + } + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)", + "description": "Blank if #2, NORMCOG = 1 (Yes).Skips If present, complete #5A, PROBADIF, then go to #7, DLB.", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #5 PROBAD = 0 (Absent)", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #5, PROBAD = 1 (Present).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), #5, PROBAD = 1 (Present), or #6,POSSAD = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "DLB": { + "title": "7 Dementia with Lewy bodies", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #7, DLB = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)", + "description": "Blank if #2, NORMCOG = 1 (Yes).Skips If present, complete #8A, VASCIF, then go to #10, ALCDEM.", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #8, VASC = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "ALCDEM": { + "title": "9 Alcohol-related dementia", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "ALCDEMIF": { + "title": "9A Alcohol-related dementia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #10, ALCDEM = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "DEMUN": { + "title": "10 Dementia of undetermined etiology", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DEMUNIF": { + "title": "10A Dementia of undetermined etiology, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #11, DEMUN = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "FTD": { + "title": "11 Frontotemporal dementia (behavioral/executive dementia)", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "FTDIF": { + "title": "11A Frontotemporal dementia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #12, FTD = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "PPAPH": { + "title": "12 Primary progressive aphasia (aphasic dementia)", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PPAPHIF": { + "title": "12A Primary progressive aphasia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "PNAPH": { + "title": "12A1 Progressive nonfluent aphasia", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SEMDEMAN": { + "title": "12A2 Semantic dementia – anomia plus word comprehension", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SEMDEMAG": { + "title": "12A3 Semantic dementia – agnostic variant", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PPAOTHR": { + "title": "12A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PSP": { + "title": "13 Progressive supranuclear palsy", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PSPIF": { + "title": "13A Progressive supranuclear palsy, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "CORT": { + "title": "14 Corticobasal degeneration", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "CORTIF": { + "title": "14A Corticobasal degeneration, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "HUNT": { + "title": "15 Huntington’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HUNTIF": { + "title": "15A Huntington’s disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "PRION": { + "title": "16 Prion disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PRIONIF": { + "title": "16A Prion disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "MEDS": { + "title": "17 Cognitive dysfunction from medications", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MEDSIF": { + "title": "17A Cognitive dysfunction from medications, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DYSILL": { + "title": "18 Cognitive dysfunction from medical illnesses", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DYSILLIF": { + "title": "18A Cognitive dysfunction from medical illnesses, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DEP": { + "title": "19 Depression", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DEPIF": { + "title": "19A Depression, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "OTHPSY": { + "title": "20 Other major psychiatric illness", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "OTHPSYIF": { + "title": "20A Other major psychiatric illness, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DOWNS": { + "title": "21 Down’s syndrome", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DOWNSIF": { + "title": "21A Down’s syndrome, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "PARK": { + "title": "22 Parkinson’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PARKIF": { + "title": "22A Parkinson’s disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "STROKE": { + "title": "23 Stroke", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "STROKIF": { + "title": "23A Stroke, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "HYCEPH": { + "title": "24 Hydrocephalus", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HYCEPHIF": { + "title": "24A Hydrocephalus, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "BRNINJ": { + "title": "25 Traumatic brain injury", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "BRNINJIF": { + "title": "25A Traumatic brain injury, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "NEOP": { + "title": "26 CNS neoplasm", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "NEOPIF": { + "title": "26A CNS neoplasm, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTH": { + "title": "27 Other cognitive/neurologic condition", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "COGOTHIF": { + "title": "27A Other cognitive/neurologic condition, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTHX": { + "title": "27B Other cognitive/neurologic condition, specify", + "description": "Blank if #28, COGOTH = 0 (Absent).", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "WHODIDDX": { + "title": "1 Responses are based on:" + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?" + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?" + }, + "cogn_impair.MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only" + }, + "cogn_impair.MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains." + }, + "cogn_impair.MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain" + }, + "cogn_impair.MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain" + }, + "cogn_impair.MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain" + }, + "cogn_impair.MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain" + }, + "cogn_impair.MCINON1": { + "title": "4C Non-amnestic MCI – single domain" + }, + "cogn_impair.MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language" + }, + "cogn_impair.MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention" + }, + "cogn_impair.MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function" + }, + "cogn_impair.MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial" + }, + "cogn_impair.MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains" + }, + "cogn_impair.MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language" + }, + "cogn_impair.MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention" + }, + "cogn_impair.MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function" + }, + "cogn_impair.MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial" + }, + "cogn_impair.IMPNOMCI": { + "title": "4E Impaired, not MCI" + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)" + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing" + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)" + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing" + }, + "DLB": { + "title": "7 Dementia with Lewy bodies" + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing" + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)" + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing" + }, + "ALCDEM": { + "title": "9 Alcohol-related dementia" + }, + "ALCDEMIF": { + "title": "9A Alcohol-related dementia, primary or contributing" + }, + "DEMUN": { + "title": "10 Dementia of undetermined etiology" + }, + "DEMUNIF": { + "title": "10A Dementia of undetermined etiology, primary or contributing" + }, + "FTD": { + "title": "11 Frontotemporal dementia (behavioral/executive dementia)" + }, + "FTDIF": { + "title": "11A Frontotemporal dementia, primary or contributing" + }, + "PPAPH": { + "title": "12 Primary progressive aphasia (aphasic dementia)" + }, + "PPAPHIF": { + "title": "12A Primary progressive aphasia, primary or contributing" + }, + "PNAPH": { + "title": "12A1 Progressive nonfluent aphasia" + }, + "SEMDEMAN": { + "title": "12A2 Semantic dementia – anomia plus word comprehension" + }, + "SEMDEMAG": { + "title": "12A3 Semantic dementia – agnosic variant" + }, + "PPAOTHR": { + "title": "12A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)" + }, + "PSP": { + "title": "13 Progressive supranuclear palsy" + }, + "PSPIF": { + "title": "13A Progressive supranuclear palsy, primary or contributing" + }, + "CORT": { + "title": "14 Corticobasal degeneration" + }, + "CORTIF": { + "title": "14A Corticobasal degeneration, primary or contributing" + }, + "HUNT": { + "title": "15 Huntington’s disease" + }, + "HUNTIF": { + "title": "15A Huntington’s disease, primary or contributing" + }, + "PRION": { + "title": "16 Prion disease" + }, + "PRIONIF": { + "title": "16A Prion disease, primary or contributing" + }, + "MEDS": { + "title": "17 Cognitive dysfunction from medications" + }, + "MEDSIF": { + "title": "17A Cognitive dysfunction from medications, primary or contributing" + }, + "DYSILL": { + "title": "18 Cognitive dysfunction from medical illnesses" + }, + "DYSILLIF": { + "title": "18A Cognitive dysfunction from medical illnesses, primary or contributing" + }, + "DEP": { + "title": "19 Depression" + }, + "DEPIF": { + "title": "19A Depression, primary or contributing" + }, + "OTHPSY": { + "title": "20 Other major psychiatric illness" + }, + "OTHPSYIF": { + "title": "20A Other major psychiatric illness, primary or contributing" + }, + "DOWNS": { + "title": "21 Down’s syndrome" + }, + "DOWNSIF": { + "title": "21A Down’s syndrome, primary or contributing" + }, + "PARK": { + "title": "22 Parkinson’s disease" + }, + "PARKIF": { + "title": "22A Parkinson’s disease, primary or contributing" + }, + "STROKE": { + "title": "23 Stroke" + }, + "STROKIF": { + "title": "23A Stroke, primary or contributing" + }, + "HYCEPH": { + "title": "24 Hydrocephalus" + }, + "HYCEPHIF": { + "title": "24A Hydrocephalus, primary or contributing" + }, + "BRNINJ": { + "title": "25 Traumatic brain injury" + }, + "BRNINJIF": { + "title": "25A Traumatic brain injury, primary or contributing" + }, + "NEOP": { + "title": "26 CNS neoplasm" + }, + "NEOPIF": { + "title": "26A CNS neoplasm, primary or contributing" + }, + "COGOTH": { + "title": "27 Other cognitive/neurologic condition" + }, + "COGOTHIF": { + "title": "27A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTHX": { + "title": "27B Other cognitive/neurologic condition, specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "WHODIDDX": { + "title": "1 Responses are based on:" + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?" + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?" + }, + "cogn_impair.MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only" + }, + "cogn_impair.MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains." + }, + "cogn_impair.MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain" + }, + "cogn_impair.MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain" + }, + "cogn_impair.MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain" + }, + "cogn_impair.MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain" + }, + "cogn_impair.MCINON1": { + "title": "4C Non-amnestic MCI – single domain" + }, + "cogn_impair.MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language" + }, + "cogn_impair.MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention" + }, + "cogn_impair.MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function" + }, + "cogn_impair.MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial" + }, + "cogn_impair.MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains" + }, + "cogn_impair.MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language" + }, + "cogn_impair.MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention" + }, + "cogn_impair.MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function" + }, + "cogn_impair.MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial" + }, + "cogn_impair.IMPNOMCI": { + "title": "4E Impaired, not MCI" + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)" + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing" + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)" + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing" + }, + "DLB": { + "title": "7 Dementia with Lewy bodies" + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing" + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)" + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing" + }, + "ALCDEM": { + "title": "9 Alcohol-related dementia" + }, + "ALCDEMIF": { + "title": "9A Alcohol-related dementia, primary or contributing" + }, + "DEMUN": { + "title": "10 Dementia of undetermined etiology" + }, + "DEMUNIF": { + "title": "10A Dementia of undetermined etiology, primary or contributing" + }, + "FTD": { + "title": "11 Frontotemporal dementia (behavioral/executive dementia)" + }, + "FTDIF": { + "title": "11A Frontotemporal dementia, primary or contributing" + }, + "PPAPH": { + "title": "12 Primary progressive aphasia (aphasic dementia)" + }, + "PPAPHIF": { + "title": "12A Primary progressive aphasia, primary or contributing" + }, + "PNAPH": { + "title": "12A1 Progressive nonfluent aphasia" + }, + "SEMDEMAN": { + "title": "12A2 Semantic dementia – anomia plus word comprehension" + }, + "SEMDEMAG": { + "title": "12A3 Semantic dementia – agnosic variant" + }, + "PPAOTHR": { + "title": "12A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)" + }, + "PSP": { + "title": "13 Progressive supranuclear palsy" + }, + "PSPIF": { + "title": "13A Progressive supranuclear palsy, primary or contributing" + }, + "CORT": { + "title": "14 Corticobasal degeneration" + }, + "CORTIF": { + "title": "14A Corticobasal degeneration, primary or contributing" + }, + "HUNT": { + "title": "15 Huntington’s disease" + }, + "HUNTIF": { + "title": "15A Huntington’s disease, primary or contributing" + }, + "PRION": { + "title": "16 Prion disease" + }, + "PRIONIF": { + "title": "16A Prion disease, primary or contributing" + }, + "MEDS": { + "title": "17 Cognitive dysfunction from medications" + }, + "MEDSIF": { + "title": "17A Cognitive dysfunction from medications, primary or contributing" + }, + "DYSILL": { + "title": "18 Cognitive dysfunction from medical illnesses" + }, + "DYSILLIF": { + "title": "18A Cognitive dysfunction from medical illnesses, primary or contributing" + }, + "DEP": { + "title": "19 Depression" + }, + "DEPIF": { + "title": "19A Depression, primary or contributing" + }, + "OTHPSY": { + "title": "20 Other major psychiatric illness" + }, + "OTHPSYIF": { + "title": "20A Other major psychiatric illness, primary or contributing" + }, + "DOWNS": { + "title": "21 Down’s syndrome" + }, + "DOWNSIF": { + "title": "21A Down’s syndrome, primary or contributing" + }, + "PARK": { + "title": "22 Parkinson’s disease" + }, + "PARKIF": { + "title": "22A Parkinson’s disease, primary or contributing" + }, + "STROKE": { + "title": "23 Stroke" + }, + "STROKIF": { + "title": "23A Stroke, primary or contributing" + }, + "HYCEPH": { + "title": "24 Hydrocephalus" + }, + "HYCEPHIF": { + "title": "24A Hydrocephalus, primary or contributing" + }, + "BRNINJ": { + "title": "25 Traumatic brain injury" + }, + "BRNINJIF": { + "title": "25A Traumatic brain injury, primary or contributing" + }, + "NEOP": { + "title": "26 CNS neoplasm" + }, + "NEOPIF": { + "title": "26A CNS neoplasm, primary or contributing" + }, + "COGOTH": { + "title": "27 Other cognitive/neurologic condition" + }, + "COGOTHIF": { + "title": "27A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTHX": { + "title": "27B Other cognitive/neurologic condition, specify" + } + }, + "boost_values": { + "patient": 1.0, + "WHODIDDX": 1.0, + "NORMCOG": 1.0, + "DEMENTED": 1.0, + "cogn_impair.MCIAMEM": 1.0, + "cogn_impair.MCIAPLUS": 1.0, + "cogn_impair.MCIAPLAN": 1.0, + "cogn_impair.MCIAPATT": 1.0, + "cogn_impair.MCIAPEX": 1.0, + "cogn_impair.MCIAPVIS": 1.0, + "cogn_impair.MCINON1": 1.0, + "cogn_impair.MCIN1LAN": 1.0, + "cogn_impair.MCIN1ATT": 1.0, + "cogn_impair.MCIN1EX": 1.0, + "cogn_impair.MCIN1VIS": 1.0, + "cogn_impair.MCINON2": 1.0, + "cogn_impair.MCIN2LAN": 1.0, + "cogn_impair.MCIN2ATT": 1.0, + "cogn_impair.MCIN2EX": 1.0, + "cogn_impair.MCIN2VIS": 1.0, + "cogn_impair.IMPNOMCI": 1.0, + "PROBAD": 1.0, + "PROBADIF": 1.0, + "POSSAD": 1.0, + "POSSADIF": 1.0, + "DLB": 1.0, + "DLBIF": 1.0, + "VASC": 1.0, + "VASCIF": 1.0, + "ALCDEM": 1.0, + "ALCDEMIF": 1.0, + "DEMUN": 1.0, + "DEMUNIF": 1.0, + "FTD": 1.0, + "FTDIF": 1.0, + "PPAPH": 1.0, + "PPAPHIF": 1.0, + "PNAPH": 1.0, + "SEMDEMAN": 1.0, + "SEMDEMAG": 1.0, + "PPAOTHR": 1.0, + "PSP": 1.0, + "PSPIF": 1.0, + "CORT": 1.0, + "CORTIF": 1.0, + "HUNT": 1.0, + "HUNTIF": 1.0, + "PRION": 1.0, + "PRIONIF": 1.0, + "MEDS": 1.0, + "MEDSIF": 1.0, + "DYSILL": 1.0, + "DYSILLIF": 1.0, + "DEP": 1.0, + "DEPIF": 1.0, + "OTHPSY": 1.0, + "OTHPSYIF": 1.0, + "DOWNS": 1.0, + "DOWNSIF": 1.0, + "PARK": 1.0, + "PARKIF": 1.0, + "STROKE": 1.0, + "STROKIF": 1.0, + "HYCEPH": 1.0, + "HYCEPHIF": 1.0, + "BRNINJ": 1.0, + "BRNINJIF": 1.0, + "NEOP": 1.0, + "NEOPIF": 1.0, + "COGOTH": 1.0, + "COGOTHIF": 1.0, + "COGOTHX": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_d1v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_d1v2.json b/src/encoded/schemas/fvp_d1v2.json new file mode 100644 index 0000000000..57c62ae8c7 --- /dev/null +++ b/src/encoded/schemas/fvp_d1v2.json @@ -0,0 +1,1311 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet, Form D1: Clinician Diagnosis – Cognitive Status and Dementia", + "description": "NOTE: This form is to be completed by the clinician. For diagnostic \ncriteria, see UDS Coding Guidebook for Initial Visit Packet, Form D1.\nCheck only one box per response category.\n", + "id": "/profiles/fvp_d1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "WHODIDDX": { + "title": "1 Responses are based on:", + "type": "string", + "enum": [ + "1 Diagnosis from single clinician", + "2 Consensus diagnosis" + ] + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?", + "description": "Skips If Yes, go to #14, PSP. If No, continue to #3, DEMENTED.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?", + "description": "Skips If Yes, go to #5, PROBAD. If No, continue to #4A, MCIAMEM.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "cogn_impair": { + "title": "4. If the subject does not have normal cognition and is not clinically demented, indicate the type of\ncognitive impairment (choose only one impairment from items 4a thru 4e as being “present”;\nmark all others “absent”) and then designate the suspected underlying cause(s) of the impairment\nby completing items 5–30:\n", + + "type": "object", + "properties": { + "MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains.", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B, MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCINON1": { + "title": "4C Non-amnestic MCI – single domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C,MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "IMPNOMCI": { + "title": "4E Impaired, not MCI", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + } + } + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)", + "description": "Blank if #2, NORMCOG = 1 (Yes).Skips If present, complete #5A, PROBADIF, then go to #7, DLB.", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #5 PROBAD = 0 (Absent)", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #5, PROBAD = 1 (Present).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), #5, PROBAD = 1 (Present), or #6,POSSAD = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "DLB": { + "title": "7 Dementia with Lewy bodies", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #7, DLB = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)", + "description": "Blank if #2, NORMCOG = 1 (Yes).Skips If present, complete #8A, VASCIF, then go to #10, ALCDEM.", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #8, VASC = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "VASCPS": { + "title": "9 Vascular dementia (NINDS/AIREN Possible)", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #8, VASC = 1(Present)", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "VASCPSIF": { + "title": "9A Vascular dementia (NINDS/AIREN Possible), primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #8, VASC = 1 (Present) or #9, VASCPS = 0.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "ALCDEM": { + "title": "10 Alcohol-related dementia", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "ALCDEMIF": { + "title": "10A Alcohol-related dementia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #10, ALCDEM = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "DEMUN": { + "title": "11 Dementia of undetermined etiology", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DEMUNIF": { + "title": "11A Dementia of undetermined etiology, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #11, DEMUN = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "FTD": { + "title": "12 Frontotemporal dementia (behavioral/executive dementia)", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "FTDIF": { + "title": "12A Frontotemporal dementia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #12, FTD = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "PPAPH": { + "title": "13 Primary progressive aphasia (aphasic dementia)", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PPAPHIF": { + "title": "13A Primary progressive aphasia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "PNAPH": { + "title": "13A1 Progressive nonfluent aphasia", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SEMDEMAN": { + "title": "13A2 Semantic dementia – anomia plus word comprehension", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SEMDEMAG": { + "title": "13A3 Semantic dementia – agnosic variant", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PPAOTHR": { + "title": "13A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PSP": { + "title": "14 Progressive supranuclear palsy", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PSPIF": { + "title": "14A Progressive supranuclear palsy, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "CORT": { + "title": "15 Corticobasal degeneration", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "CORTIF": { + "title": "15A Corticobasal degeneration, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "HUNT": { + "title": "16 Huntington’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HUNTIF": { + "title": "16A Huntington’s disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "PRION": { + "title": "17 Prion disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PRIONIF": { + "title": "17A Prion disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "MEDS": { + "title": "18 Cognitive dysfunction from medications", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MEDSIF": { + "title": "18A Cognitive dysfunction from medications, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DYSILL": { + "title": "19 Cognitive dysfunction from medical illnesses", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DYSILLIF": { + "title": "19A Cognitive dysfunction from medical illnesses, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DEP": { + "title": "20 Depression", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DEPIF": { + "title": "20A Depression, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "OTHPSY": { + "title": "21 Other major psychiatric illness", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "OTHPSYIF": { + "title": "21A Other major psychiatric illness, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DOWNS": { + "title": "22 Down’s syndrome", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DOWNSIF": { + "title": "22A Down’s syndrome, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "PARK": { + "title": "23 Parkinson’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PARKIF": { + "title": "23A Parkinson’s disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "STROKE": { + "title": "24 Stroke", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "STROKIF": { + "title": "24A Stroke, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "HYCEPH": { + "title": "25 Hydrocephalus", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HYCEPHIF": { + "title": "25A Hydrocephalus, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "BRNINJ": { + "title": "26 Traumatic brain injury", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "BRNINJIF": { + "title": "26A Traumatic brain injury, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "NEOP": { + "title": "27 CNS neoplasm", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "NEOPIF": { + "title": "27A CNS neoplasm, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTH": { + "title": "28 Other cognitive/neurologic condition", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "COGOTHIF": { + "title": "28A Other cognitive/neurologic condition, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTHX": { + "title": "28B Other cognitive/neurologic condition, specify", + "description": "Blank if #28, COGOTH = 0 (Absent).", + "type": "string" + }, + "COGOTH2": { + "title": "29 Other cognitive/neurologic condition", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "COGOTH2F": { + "title": "29A Other cognitive/neurologic condition, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTH2X": { + "title": "29B Other cognitive/neurologic condition, specify", + "description": "Blank if #29, COGOTH2 = 0 (Absent).", + "type": "string" + }, + "COGOTH3": { + "title": "30 Other cognitive/neurologic condition", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "COGOTH3F": { + "title": "30A Other cognitive/neurologic condition, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTH3X": { + "title": "30B Other cognitive/neurologic condition, specify", + "description": "Blank if #30, COGOTH3 = 0 (Absent).", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "WHODIDDX": { + "title": "1 Responses are based on:" + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?" + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?" + }, + "cogn_impair.MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only" + }, + "cogn_impair.MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains." + }, + "cogn_impair.MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain" + }, + "cogn_impair.MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain" + }, + "cogn_impair.MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain" + }, + "cogn_impair.MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain" + }, + "cogn_impair.MCINON1": { + "title": "4C Non-amnestic MCI – single domain" + }, + "cogn_impair.MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language" + }, + "cogn_impair.MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention" + }, + "cogn_impair.MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function" + }, + "cogn_impair.MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial" + }, + "cogn_impair.MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains" + }, + "cogn_impair.MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language" + }, + "cogn_impair.MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention" + }, + "cogn_impair.MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function" + }, + "cogn_impair.MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial" + }, + "cogn_impair.IMPNOMCI": { + "title": "4E Impaired, not MCI" + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)" + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing" + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)" + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing" + }, + "DLB": { + "title": "7 Dementia with Lewy bodies" + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing" + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)" + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing" + }, + "VASCPS": { + "title": "9 Vascular dementia (NINDS/AIREN Possible)" + }, + "VASCPSIF": { + "title": "9A Vascular dementia (NINDS/AIREN Possible), primary or contributing" + }, + "ALCDEM": { + "title": "10 Alcohol-related dementia" + }, + "ALCDEMIF": { + "title": "10A Alcohol-related dementia, primary or contributing" + }, + "DEMUN": { + "title": "11 Dementia of undetermined etiology" + }, + "DEMUNIF": { + "title": "11A Dementia of undetermined etiology, primary or contributing" + }, + "FTD": { + "title": "12 Frontotemporal dementia (behavioral/executive dementia)" + }, + "FTDIF": { + "title": "12A Frontotemporal dementia, primary or contributing" + }, + "PPAPH": { + "title": "13 Primary progressive aphasia (aphasic dementia)" + }, + "PPAPHIF": { + "title": "13A Primary progressive aphasia, primary or contributing" + }, + "PNAPH": { + "title": "13A1 Progressive nonfluent aphasia" + }, + "SEMDEMAN": { + "title": "13A2 Semantic dementia – anomia plus word comprehension" + }, + "SEMDEMAG": { + "title": "13A3 Semantic dementia – agnosic variant" + }, + "PPAOTHR": { + "title": "13A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)" + }, + "PSP": { + "title": "14 Progressive supranuclear palsy" + }, + "PSPIF": { + "title": "14A Progressive supranuclear palsy, primary or contributing" + }, + "CORT": { + "title": "15 Corticobasal degeneration" + }, + "CORTIF": { + "title": "15A Corticobasal degeneration, primary or contributing" + }, + "HUNT": { + "title": "16 Huntington’s disease" + }, + "HUNTIF": { + "title": "16A Huntington’s disease, primary or contributing" + }, + "PRION": { + "title": "17 Prion disease" + }, + "PRIONIF": { + "title": "17A Prion disease, primary or contributing" + }, + "MEDS": { + "title": "18 Cognitive dysfunction from medications" + }, + "MEDSIF": { + "title": "18A Cognitive dysfunction from medications, primary or contributing" + }, + "DYSILL": { + "title": "19 Cognitive dysfunction from medical illnesses" + }, + "DYSILLIF": { + "title": "19A Cognitive dysfunction from medical illnesses, primary or contributing" + }, + "DEP": { + "title": "20 Depression" + }, + "DEPIF": { + "title": "20A Depression, primary or contributing" + }, + "OTHPSY": { + "title": "21 Other major psychiatric illness" + }, + "OTHPSYIF": { + "title": "21A Other major psychiatric illness, primary or contributing" + }, + "DOWNS": { + "title": "22 Down’s syndrome" + }, + "DOWNSIF": { + "title": "22A Down’s syndrome, primary or contributing" + }, + "PARK": { + "title": "23 Parkinson’s disease" + }, + "PARKIF": { + "title": "23A Parkinson’s disease, primary or contributing" + }, + "STROKE": { + "title": "24 Stroke" + }, + "STROKIF": { + "title": "24A Stroke, primary or contributing" + }, + "HYCEPH": { + "title": "25 Hydrocephalus" + }, + "HYCEPHIF": { + "title": "25A Hydrocephalus, primary or contributing" + }, + "BRNINJ": { + "title": "26 Traumatic brain injury" + }, + "BRNINJIF": { + "title": "26A Traumatic brain injury, primary or contributing" + }, + "NEOP": { + "title": "27 CNS neoplasm" + }, + "NEOPIF": { + "title": "27A CNS neoplasm, primary or contributing" + }, + "COGOTH": { + "title": "28 Other cognitive/neurologic condition" + }, + "COGOTHIF": { + "title": "28A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTHX": { + "title": "28B Other cognitive/neurologic condition, specify" + }, + "COGOTH2": { + "title": "29 Other cognitive/neurologic condition" + }, + "COGOTH2F": { + "title": "29A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTH2X": { + "title": "29B Other cognitive/neurologic condition, specify" + }, + "COGOTH3": { + "title": "30 Other cognitive/neurologic condition" + }, + "COGOTH3F": { + "title": "30A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTH3X": { + "title": "30B Other cognitive/neurologic condition, specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "WHODIDDX": { + "title": "1 Responses are based on:" + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?" + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?" + }, + "cogn_impair.MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only" + }, + "cogn_impair.MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains." + }, + "cogn_impair.MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain" + }, + "cogn_impair.MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain" + }, + "cogn_impair.MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain" + }, + "cogn_impair.MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain" + }, + "cogn_impair.MCINON1": { + "title": "4C Non-amnestic MCI – single domain" + }, + "cogn_impair.MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language" + }, + "cogn_impair.MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention" + }, + "cogn_impair.MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function" + }, + "cogn_impair.MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial" + }, + "cogn_impair.MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains" + }, + "cogn_impair.MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language" + }, + "cogn_impair.MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention" + }, + "cogn_impair.MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function" + }, + "cogn_impair.MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial" + }, + "cogn_impair.IMPNOMCI": { + "title": "4E Impaired, not MCI" + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)" + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing" + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)" + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing" + }, + "DLB": { + "title": "7 Dementia with Lewy bodies" + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing" + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)" + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing" + }, + "VASCPS": { + "title": "9 Vascular dementia (NINDS/AIREN Possible)" + }, + "VASCPSIF": { + "title": "9A Vascular dementia (NINDS/AIREN Possible), primary or contributing" + }, + "ALCDEM": { + "title": "10 Alcohol-related dementia" + }, + "ALCDEMIF": { + "title": "10A Alcohol-related dementia, primary or contributing" + }, + "DEMUN": { + "title": "11 Dementia of undetermined etiology" + }, + "DEMUNIF": { + "title": "11A Dementia of undetermined etiology, primary or contributing" + }, + "FTD": { + "title": "12 Frontotemporal dementia (behavioral/executive dementia)" + }, + "FTDIF": { + "title": "12A Frontotemporal dementia, primary or contributing" + }, + "PPAPH": { + "title": "13 Primary progressive aphasia (aphasic dementia)" + }, + "PPAPHIF": { + "title": "13A Primary progressive aphasia, primary or contributing" + }, + "PNAPH": { + "title": "13A1 Progressive nonfluent aphasia" + }, + "SEMDEMAN": { + "title": "13A2 Semantic dementia – anomia plus word comprehension" + }, + "SEMDEMAG": { + "title": "13A3 Semantic dementia – agnosic variant" + }, + "PPAOTHR": { + "title": "13A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)" + }, + "PSP": { + "title": "14 Progressive supranuclear palsy" + }, + "PSPIF": { + "title": "14A Progressive supranuclear palsy, primary or contributing" + }, + "CORT": { + "title": "15 Corticobasal degeneration" + }, + "CORTIF": { + "title": "15A Corticobasal degeneration, primary or contributing" + }, + "HUNT": { + "title": "16 Huntington’s disease" + }, + "HUNTIF": { + "title": "16A Huntington’s disease, primary or contributing" + }, + "PRION": { + "title": "17 Prion disease" + }, + "PRIONIF": { + "title": "17A Prion disease, primary or contributing" + }, + "MEDS": { + "title": "18 Cognitive dysfunction from medications" + }, + "MEDSIF": { + "title": "18A Cognitive dysfunction from medications, primary or contributing" + }, + "DYSILL": { + "title": "19 Cognitive dysfunction from medical illnesses" + }, + "DYSILLIF": { + "title": "19A Cognitive dysfunction from medical illnesses, primary or contributing" + }, + "DEP": { + "title": "20 Depression" + }, + "DEPIF": { + "title": "20A Depression, primary or contributing" + }, + "OTHPSY": { + "title": "21 Other major psychiatric illness" + }, + "OTHPSYIF": { + "title": "21A Other major psychiatric illness, primary or contributing" + }, + "DOWNS": { + "title": "22 Down’s syndrome" + }, + "DOWNSIF": { + "title": "22A Down’s syndrome, primary or contributing" + }, + "PARK": { + "title": "23 Parkinson’s disease" + }, + "PARKIF": { + "title": "23A Parkinson’s disease, primary or contributing" + }, + "STROKE": { + "title": "24 Stroke" + }, + "STROKIF": { + "title": "24A Stroke, primary or contributing" + }, + "HYCEPH": { + "title": "25 Hydrocephalus" + }, + "HYCEPHIF": { + "title": "25A Hydrocephalus, primary or contributing" + }, + "BRNINJ": { + "title": "26 Traumatic brain injury" + }, + "BRNINJIF": { + "title": "26A Traumatic brain injury, primary or contributing" + }, + "NEOP": { + "title": "27 CNS neoplasm" + }, + "NEOPIF": { + "title": "27A CNS neoplasm, primary or contributing" + }, + "COGOTH": { + "title": "28 Other cognitive/neurologic condition" + }, + "COGOTHIF": { + "title": "28A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTHX": { + "title": "28B Other cognitive/neurologic condition, specify" + }, + "COGOTH2": { + "title": "29 Other cognitive/neurologic condition" + }, + "COGOTH2F": { + "title": "29A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTH2X": { + "title": "29B Other cognitive/neurologic condition, specify" + }, + "COGOTH3": { + "title": "30 Other cognitive/neurologic condition" + }, + "COGOTH3F": { + "title": "30A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTH3X": { + "title": "30B Other cognitive/neurologic condition, specify" + } + }, + "boost_values": { + "patient": 1.0, + "WHODIDDX": 1.0, + "NORMCOG": 1.0, + "DEMENTED": 1.0, + "cogn_impair.MCIAMEM": 1.0, + "cogn_impair.MCIAPLUS": 1.0, + "cogn_impair.MCIAPLAN": 1.0, + "cogn_impair.MCIAPATT": 1.0, + "cogn_impair.MCIAPEX": 1.0, + "cogn_impair.MCIAPVIS": 1.0, + "cogn_impair.MCINON1": 1.0, + "cogn_impair.MCIN1LAN": 1.0, + "cogn_impair.MCIN1ATT": 1.0, + "cogn_impair.MCIN1EX": 1.0, + "cogn_impair.MCIN1VIS": 1.0, + "cogn_impair.MCINON2": 1.0, + "cogn_impair.MCIN2LAN": 1.0, + "cogn_impair.MCIN2ATT": 1.0, + "cogn_impair.MCIN2EX": 1.0, + "cogn_impair.MCIN2VIS": 1.0, + "cogn_impair.IMPNOMCI": 1.0, + "PROBAD": 1.0, + "PROBADIF": 1.0, + "POSSAD": 1.0, + "POSSADIF": 1.0, + "DLB": 1.0, + "DLBIF": 1.0, + "VASC": 1.0, + "VASCIF": 1.0, + "VASCPS": 1.0, + "VASCPSIF": 1.0, + "ALCDEM": 1.0, + "ALCDEMIF": 1.0, + "DEMUN": 1.0, + "DEMUNIF": 1.0, + "FTD": 1.0, + "FTDIF": 1.0, + "PPAPH": 1.0, + "PPAPHIF": 1.0, + "PNAPH": 1.0, + "SEMDEMAN": 1.0, + "SEMDEMAG": 1.0, + "PPAOTHR": 1.0, + "PSP": 1.0, + "PSPIF": 1.0, + "CORT": 1.0, + "CORTIF": 1.0, + "HUNT": 1.0, + "HUNTIF": 1.0, + "PRION": 1.0, + "PRIONIF": 1.0, + "MEDS": 1.0, + "MEDSIF": 1.0, + "DYSILL": 1.0, + "DYSILLIF": 1.0, + "DEP": 1.0, + "DEPIF": 1.0, + "OTHPSY": 1.0, + "OTHPSYIF": 1.0, + "DOWNS": 1.0, + "DOWNSIF": 1.0, + "PARK": 1.0, + "PARKIF": 1.0, + "STROKE": 1.0, + "STROKIF": 1.0, + "HYCEPH": 1.0, + "HYCEPHIF": 1.0, + "BRNINJ": 1.0, + "BRNINJIF": 1.0, + "NEOP": 1.0, + "NEOPIF": 1.0, + "COGOTH": 1.0, + "COGOTHIF": 1.0, + "COGOTHX": 1.0, + "COGOTH2": 1.0, + "COGOTH2F": 1.0, + "COGOTH2X": 1.0, + "COGOTH3": 1.0, + "COGOTH3F": 1.0, + "COGOTH3X": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_d1v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_d1v3.json b/src/encoded/schemas/fvp_d1v3.json new file mode 100644 index 0000000000..372550fcd2 --- /dev/null +++ b/src/encoded/schemas/fvp_d1v3.json @@ -0,0 +1,2126 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW UP FORM D1: Clinician Diagnosis", + "description": "INSTRUCTIONS: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Follow-Up Visit Packet, Form D1. Link to NACC Coding Guidebook Check only one box per question. This form is divided into three main sections: Section 1   Cognitive Status: Normal cognition/MCI/dementia and dementia syndrome Section 2   Biomarkers, imaging and genetics: Neurodegenerative imaging and CSF biomarkers, imaging evidence for CVD, and known genetic mutations for AD and FTLD Section 3 Etiological diagnoses: presumed etiological diagnoses for the cognitive disorder", + "id": "/profiles/uds_fvp_d1v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "fu_dxmethod" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_dxmethod": { + "title": "1. Diagnosis method - responses in this form are based on diagnosis by:", + "type": "string", + "enum": [ + "1 A single clinician", + "2 A formal consensus panel", + "3 Other (e.g., two or more clinicians or other informal group)" + ] + }, + "fu_sec1": { + "title": "SECTION 1: Cognitive and behavioral status", + "type": "object", + "properties": { + "fu_normcog": { + "title": "2. Does the subject have normal cognition (global CDR=0 and/or neuropsychological testing within normal range) and normal behavior (i.e., the subject does not exhibit behavior sufficient to diagnose MCI or dementia due to FTLD or LBD)?", + "description": "ALL-CAUSE DEMENTIA \nThe subject has cognitive or behavioral (neuropsychiatric) symptoms that meet all of the following criteria: \n- Interfere with ability to function as before at work or at usual activities? \n- Represent a decline from previous levels of functioning? \n- Are not explained by delirium or major psychiatric disorder? \n- Include cognitive impairment detected and diagnosed through a combination of 1) history-taking and 2) objective cognitive \nassessment (bedside or neuropsychological testing)? \n \nAND \nImpairment in one* or more of the following domains. \nImpaired ability to acquire and remember new information \nImpaired reasoning and handling of complex tasks, poor judgment \nImpaired visuospatial abilities \nImpaired language functions \nChanges in personality, behavior, or comportment \n \n*In the event of single-domain impairment (e.g., language in PPA, behavior in bvFTD, posterior cortical atrophy), \nthe subject must not fulfill criteria for MCI.", + "type": "string", + "enum": [ + "0 No (CONTINUE TO QUESTION 3)", + "1 Yes (SKIP TO QUESTION 6)" + ] + }, + "fu_demented": { + "title": "3. Does the subject meet the criteria for dementia?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 5)", + "1 Yes (CONTINUE TO QUESTION 4)" + ] + }, + "fu_note_d1_3": { + "title": "4. If the subject meets criteria for dementia, answer Questions 4a-4f below and then SKIP TO QUESTION 6.", + "description": "Based entirely on the history and examination (including neuropsychological testing), what is the cognitive/behavioral syndrome? Select one or more as Present; all others will default to Absent in the NACC database.", + "type": "object", + "properties": { + "fu_note_d1_5": { + "title": "Dementia syndrome", + "type": "object", + "properties": { + "fu_amndem": { + "title": "4a. Amnestic multidomain dementia syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_pca": { + "title": "4b. Posterior cortical atrophy syndrome (or primary visual presentation)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_ppasyn": { + "title": "4c. Primary progressive aphasia (PPA) syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_ppasynt": { + "title": "4c1.", + "type": "string", + "enum": [ + "1 Meets criteria for semantic PPA", + "2 Meets criteria for logopenic PPA", + "3 Meets criteria for nonfluent/agrammatic PPA", + "4 PPA other/not otherwise specified" + ] + }, + "fu_ftdsyn": { + "title": "4d. Behavioral variant FTD (bvFTD) syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_lbdsyn": { + "title": "4e. Lewy body dementia syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_namndem": { + "title": "4f. Non-amnestic multidomain dementia, not PCA, PPA, bvFTD, or DLB syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + } + } + } + } + }, + "fu_note_d1_6": { + "title": "5. If the subject does not have normal cognition or behavior and is not clinically demented, indicate the type of cognitive impairment below. \nMCI CORE CLINICAL CRITERIA \n - Is the subject, the co-participant, or a clinician concerned about a change in cognition compared to the subject's \n - Is there impairment in one or more cognitive domains (memory, language, executive function, attention, and \n visuospatial skills)? \n- Is there largely preserved independence in functional abilities (no change from prior manner of functioning or uses \n minimal aids or assistance)?", + "description": "Select one syndrome from 5a-5e as being Present (all others will default to Absent in the NACC database), and then CONTINUE TO QUESTION 6. If you select MCI below, it should meet the MCI core clinical criteria outlined above.", + "type": "object", + "properties": { + "fu_mciamem": { + "title": "5a. Amnestic MCI, single domain (aMCI SD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_mciaplus": { + "title": "5b. Amnestic MCI, multiple domains (aMCI MD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_note_d1_8": { + "title": "CHECK YES for at least one additional domain (besides memory): ", + "type": "object", + "properties": { + "fu_mciaplan": { + "title": "5b1. Language", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mciapatt": { + "title": "5b2. Attention", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mciapex": { + "title": "5b3. Executive", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mciapvis": { + "title": "5b4. Visuospatial", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "fu_mcinon1": { + "title": "5c. Non-amnestic MCI, single domain (naMCI SD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_note_d1_9": { + "title": "CHECK YES to indicate the affected domain:", + "type": "object", + "properties": { + "fu_mci1lan": { + "title": "5c1. Language", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mci1att": { + "title": "5c2. Attention", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mci1ex": { + "title": "5c3. Executive", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mci1vis": { + "title": "5c4. Visuospatial", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "fu_mcinon2": { + "title": "5d. Non-amnestic MCI, multiple domains (naMCI MD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_note_d1_10": { + "title": "CHECK YES for at least two domains:", + "type": "object", + "properties": { + "fu_mci2lan": { + "title": "5d1 Language", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mci2att": { + "title": "5d2. Attention", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mci2ex": { + "title": "5d3. Executive", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_mci2vis": { + "title": "5d4. Visuospatial", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "fu_impnomci": { + "title": "5e. Cognitively impaired, not MCI", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + } + } + } + } + }, + "fu_sec2": { + "title": "SECTION 2: Biomarkers, imaging, and genetics", + "description": "Section 2 must be completed for all subjects", + "type": "object", + "properties": { + "fu_biomarker_findings": { + "title": "6. Indicate neurodegenerative biomarker status, using local standards for positivity.\nBiomarker Findings", + "type": "object", + "properties": { + "fu_amylpet": { + "title": "6a. Abnormally elevated amyloid on PET", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fu_amylcsf": { + "title": "6b. Abnormally low amyloid in CSF", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fu_fdgad": { + "title": "6c. FDG-PET pattern of AD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fu_hippatr": { + "title": "6d. Hippocampal atrophy", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fu_taupetad": { + "title": "6e. Tau PET evidence for AD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fu_csftau": { + "title": "6f. Abnormally elevated CSF tau or ptau", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fu_fdgftld": { + "title": "6g. FDG-PET evidence for frontal or anterior temporal hypometabolism for FTLD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fu_tpetftld": { + "title": "6h. Tau PET evidence for FTLD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fu_mrftld": { + "title": "6i. Structural MR evidence for frontal or anterior temporal atrophy for FTLD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fu_datscan": { + "title": "6j. Dopamine transporter scan (DATscan) evidence for Lewy body disease", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fu_othbiom": { + "title": "6k. Other neurodegenerative biomarker", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_othbiomx": { + "title": "6k1. If other biomarker findings present, please specify:", + "type": "string" + } + } + }, + "fu_image_findings": { + "title": "7. Is there evidence for cerebrovascular disease (CVD) on imaging? \nImaging Findings", + "type": "object", + "properties": { + "fu_imaglinf": { + "title": "7a. Large vessel infarct(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "fu_imaglac": { + "title": "7b. Lacunar infarct(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "fu_imagmach": { + "title": "7c. Macrohemorrhage(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "fu_imagmich": { + "title": "7d. Microhemorrhage(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "fu_imagmwmh": { + "title": "7e. Moderate white-matter hyperintensity (CHS score 5-6)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "fu_imagewmh": { + "title": "7f. Extensive white-matter hyperintensity (CHS score 7-8+)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + } + } + }, + "fu_admut": { + "title": "8. Does the subject have a dominantly inherited AD mutation (PSEN1, PSEN2, APP)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown/not assessed" + ] + }, + "fu_ftldmut": { + "title": "9. Does the subject have a hereditary FTLD mutation (e.g, GRN, VCP, TARBP, FUS, C9orf72, CHMP2B, MAPT)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown/not assessed" + ] + }, + "fu_othmut": { + "title": "10. Does the subject have a hereditary mutation other than AD or FTLD mutation?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown/not assessed" + ] + }, + "fu_othmutx": { + "title": "10a. If question 10 is 1 Yes, please specify hereditary mutation other than AD or FTLD mutation.", + "type": "string" + } + } + }, + "fu_sec3": { + "title": "SECTION 3: Etiologic diagnoses", + "description": "Section 3 must be filled out for all subjects. Indicate presumptive etiologic diagnoses of the cognitive disorder and whether a given diagnosis is a primary, contributing, or non-contributing cause of the observed impairment, based on the clinician's best judgment. Select one or more diagnoses as Present; all others will default to Absent in the NACC database. Only one diagnosis should be selected as 1=Primary. For subjects with normal cognition: Indicate the presence of any diagnoses by marking Present, and leave the questions on whether the diagnosis was primary, contributing, or non-contributing blank. Subjects with positive biomarkers but no clinical symptoms of Alzheimer's disease, Lewy body disease, or frontotemporal lobar degeneration should not have these diagnoses marked as Present. Instead, the biomarker data from Section 2 can be used to identify the presence of preclinical disease.", + "type": "object", + "properties": { + "fu_etio_diag": { + "title": "Etiologic diagnoses", + "description": "Section 3 must be filled out for all subjects. Indicate presumptive etiologic diagnoses of the cognitive disorder and whether a given diagnosis is a primary, contributing, or non-contributing cause of the observed impairment, based on the clinician's best judgment. Select one or more diagnoses as Present; all others will default to Absent in the NACC database. Only one diagnosis should be selected as 1=Primary.For subjects with normal cognition: Indicate the presence of any diagnoses by marking Present, and leave the questions on whether the diagnosis was primary, contributing, or non-contributing blank. Subjects with positive biomarkers but no clinical symptoms of Alzheimer's disease, Lewy body disease, or frontotemporal lobar degeneration should not have these diagnoses marked as Present. Instead, the biomarker data from Section 2 can be used to identify the presence of preclinical disease. ", + "type": "object", + "properties": { + "fu_alzdis": { + "title": "11. Alzheimer's disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_alzdisif": { + "title": "11a. If Alzheimer's disease present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributin" + ] + }, + "fu_lbdis": { + "title": "12. Lewy body disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_lbdif": { + "title": "12a. If Lewy body disease present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributin" + ] + }, + "fu_park": { + "title": "12b. Parkinson's disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_msa": { + "title": "13. Multiple system atrophy", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_msaif": { + "title": "13a. If Multiple system atrophy present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributin" + ] + }, + "fu_note_d1_13": { + "title": "14. Frontotemporal lobar degeneration", + "type": "object", + "properties": { + "fu_psp": { + "title": "14a. Progressive supranuclear palsy (PSP)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_pspif": { + "title": "14a1. If Progressive supranuclear palsy (PSP) is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributin" + ] + }, + "fu_cort": { + "title": "14b. Corticobasal degeneration (CBD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_cortif": { + "title": "14b1. If Corticobasal degeneration (CBD) is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributin" + ] + }, + "fu_ftldmo": { + "title": "14c. FTLD with motor neuron disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_ftldmoif": { + "title": "14c1. If FTLD with motor neuron disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributin" + ] + }, + "fu_ftldnos": { + "title": "14d. FTLD NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_ftldnoif": { + "title": "14d1. If FTLD NOS is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributin" + ] + }, + "fu_ftldsubt": { + "title": "14e. If FTLD (Questions 14a-14d) is Present, specify FTLD subtype:", + "type": "string", + "enum": [ + "1 Tauopathy", + "2 TDP-43 proteinopathy", + "3 Other (SPECIFY):", + "9 Unknown" + ] + }, + "fu_ftldsubx": { + "title": "14e1. Other FTLD, specify", + "type": "string" + } + } + }, + "fu_cvd": { + "title": "15. Vascular Brain injury (based on clinical or imaging evidence)", + "type": "string", + "description": "If significant vascular brain injury is absent, SKIP TO QUESTION 16.", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_cvdif": { + "title": "15a. If vascular brain injury is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_prevstk": { + "title": "15b. Previous symptomatic stroke?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 15c)", + "1 Yes" + ] + }, + "fu_strokedec": { + "title": "15b1. Temporal relationship between stroke and cognitive decline?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_stkimag": { + "title": "15b2. Confirmation of stroke by neuroimaging?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown; no relevant imaging data available" + ] + }, + "fu_infnetw": { + "title": "15c. Is there imaging evidence of cystic infarction in cognitive network(s)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown; no relevant imaging data available" + ] + }, + "fu_infwmh": { + "title": "15d. Is there imaging evidence of cystic infarction, imaging evidence of extensive white matter hyperintensity (CHS grade 7-8+), and impairment in executive function? ", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown; no relevant imaging data available" + ] + }, + "fu_esstrem": { + "title": "16. Essential tremor", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_esstreif": { + "title": "16a. If essential tremor is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_downs": { + "title": "17. Down syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_downsif": { + "title": "17a. If Down syndrome is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_hunt": { + "title": "18. Huntington's disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_huntif": { + "title": "18a. If Huntington's disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_prion": { + "title": "19. Prion disease (CJD, other)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_prionif": { + "title": "19a. If Prion's disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_brninj": { + "title": "20. Traumatic brain injury", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_brninjif": { + "title": "20a. If Traumatic brain injury is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_brnincte": { + "title": "20b. If traumatic brain injury present, does the subject have symptoms consistent with chronic traumatic encephalopathy?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_hyceph": { + "title": "21. Normal-pressure hydrocephalus", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_hycephif": { + "title": "21a. If Normal-pressure hydrocephalus is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_epilep": { + "title": "22. Epilepsy", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_epilepif": { + "title": "22a. If Epilepsy is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_neop": { + "title": "23. CNS neoplasm", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_neopif": { + "title": "23a. If CNS neoplasm present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_neopstat": { + "title": "23b. CNS neoplasm, benign or malignant?", + "type": "string", + "enum": [ + "1 Benign", + "2 Malignant" + ] + }, + "fu_hiv": { + "title": "24. Human immunodeficiency virus (HIV)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_hivif": { + "title": "24a. If Human immunodeficiency virus (HIV) is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_othcog": { + "title": "25. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_othcogif": { + "title": "25a. If other cognitive impairment present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_othcogx": { + "title": "25b. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above. If Present, specify: ", + "type": "string" + } + } + }, + "fu_conditions": { + "title": "Condition", + "type": "object", + "properties": { + "fu_dep": { + "title": "26. Active depression", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_depif": { + "title": "26a. If active depression is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_deptreat": { + "title": "26b. If active depression present, select one:", + "type": "string", + "enum": [ + "0 Untreated", + "1 Treated with medication and/or counseling" + ] + }, + "fu_bipoldx": { + "title": "27. Bipolar disorder", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_bipoldif": { + "title": "27a. If bipolar disorder is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_schizop": { + "title": "28. Schizophrenia or other psychosis", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_schizoif": { + "title": "28a. If Schizophrenia or other psychosis is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_anxiet": { + "title": "29. Anxiety disorder", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_anxietif": { + "title": "29a. If Anxiety disorder is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_delir": { + "title": "30. Delirium", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_delirif": { + "title": "30a. If Delirium is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_ptsddx": { + "title": "31. Post-traumatic stress disorder (PTSD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_ptsddxif": { + "title": "31a. If Post-traumatic stress disorder is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_othpsy": { + "title": "32. Other psychiatric disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_othpsyif": { + "title": "32a. If other psychiatric disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_othpsyx": { + "title": "32b. If other psychiatric disease is present, please specify:", + "type": "string" + }, + "fu_alcdem": { + "title": "33. Cognitive impairment due to alcohol abuse", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_alcdemif": { + "title": "33a. If cognitive impairment due to alcohol abuse is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_alcabuse": { + "title": "33b. Current alcohol abuse:", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "fu_impsub": { + "title": "34. Cognitive impairment due to other substance abuse", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_impsubif": { + "title": "34a. If Cognitive impairment due to other substance abuse is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_dysill": { + "title": "35. Cognitive impairment due to systemic disease/medical illness (as indicated on Form D2)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_dysillif": { + "title": "35a. If Cognitive impairment due to systemic disease/medical illness is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_meds": { + "title": "36. Cognitive impairment due to medications", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_medsif": { + "title": "36a. If Cognitive impairment due to medications, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_cogoth": { + "title": "37. Cognitive impairment NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_cogothif": { + "title": "37a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_cogothx": { + "title": "37b. If Cognitive impairment NOS present, specify:", + "type": "string" + }, + "fu_cogoth2": { + "title": "38. Cognitive impairment NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_cogot2f": { + "title": "38a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_cogot2x": { + "title": "38b. If Cognitive impairment NOS present, specify:", + "type": "string" + }, + "fu_cogoth3": { + "title": "39. Cognitive impairment NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "fu_cogot3f": { + "title": "39a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "fu_cogot3x": { + "title": "39b. If Cognitive impairment NOS present, specify:", + "type": "string" + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_dxmethod": { + "title": "1. Diagnosis method - responses in this form are based on diagnosis by:" + }, + "fu_sec1.fu_normcog": { + "title": "2. Does the subject have normal cognition (global CDR=0 and/or neuropsychological testing within normal range) and normal behavior (i.e., the subject does not exhibit behavior sufficient to diagnose MCI or dementia due to FTLD or LBD)? " + }, + "fu_sec1.fu_demented": { + "title": "3. Does the subject meet the criteria for dementia? " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_amndem": { + "title": "4a. Amnestic multidomain dementia syndrome " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_pca": { + "title": "4b. Posterior cortical atrophy syndrome (or primary visual presentation) " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_ppasyn": { + "title": "4c. Primary progressive aphasia (PPA) syndrome " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_ppasynt": { + "title": "4c1. " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_ftdsyn": { + "title": "4d. Behavioral variant FTD (bvFTD) syndrome " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_lbdsyn": { + "title": "4e. Lewy body dementia syndrome " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_namndem": { + "title": "4f. Non-amnestic multidomain dementia, not PCA, PPA, bvFTD, or DLB syndrome " + }, + "fu_sec1.fu_note_d1_6.fu_mciamem": { + "title": "5a. Amnestic MCI, single domain (aMCI SD) " + }, + "fu_sec1.fu_note_d1_6.fu_mciaplus": { + "title": "5b. Amnestic MCI, multiple domains (aMCI MD) " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciaplan": { + "title": "5b1. Language " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciapatt": { + "title": "5b2. Attention " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciapex": { + "title": "5b3. Executive " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciapvis": { + "title": "5b4. Visuospatial " + }, + "fu_sec1.fu_note_d1_6.fu_mcinon1": { + "title": "5c. Non-amnestic MCI, single domain (naMCI SD) " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1lan": { + "title": "5c1. Language " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1att": { + "title": "5c2. Attention " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1ex": { + "title": "5c3. Executive " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1vis": { + "title": "5c4. Visuospatial " + }, + "fu_sec1.fu_note_d1_6.fu_mcinon2": { + "title": "5d. Non-amnestic MCI, multiple domains (naMCI MD) " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2lan": { + "title": "5d1 Language " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2att": { + "title": "5d2. Attention " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2ex": { + "title": "5d3. Executive " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2vis": { + "title": "5d4. Visuospatial " + }, + "fu_sec1.fu_note_d1_6.fu_impnomci": { + "title": "5e. Cognitively impaired, not MCI " + }, + "fu_sec2.fu_biomarker_findings.fu_amylpet": { + "title": "6a. Abnormally elevated amyloid on PET " + }, + "fu_sec2.fu_biomarker_findings.fu_amylcsf": { + "title": "6b. Abnormally low amyloid in CSF " + }, + "fu_sec2.fu_biomarker_findings.fu_fdgad": { + "title": "6c. FDG-PET pattern of AD " + }, + "fu_sec2.fu_biomarker_findings.fu_hippatr": { + "title": "6d. Hippocampal atrophy " + }, + "fu_sec2.fu_biomarker_findings.fu_taupetad": { + "title": "6e. Tau PET evidence for AD " + }, + "fu_sec2.fu_biomarker_findings.fu_csftau": { + "title": "6f. Abnormally elevated CSF tau or ptau " + }, + "fu_sec2.fu_biomarker_findings.fu_fdgftld": { + "title": "6g. FDG-PET evidence for frontal or anterior temporal hypometabolism for FTLD " + }, + "fu_sec2.fu_biomarker_findings.fu_tpetftld": { + "title": "6h. Tau PET evidence for FTLD " + }, + "fu_sec2.fu_biomarker_findings.fu_mrftld": { + "title": "6i. Structural MR evidence for frontal or anterior temporal atrophy for FTLD " + }, + "fu_sec2.fu_biomarker_findings.fu_datscan": { + "title": "6j. Dopamine transporter scan (DATscan) evidence for Lewy body disease " + }, + "fu_sec2.fu_biomarker_findings.fu_othbiom": { + "title": "6k. Other neurodegenerative biomarker " + }, + "fu_sec2.fu_biomarker_findings.fu_othbiomx": { + "title": "6k1. If other biomarker findings present, please specify: " + }, + "fu_sec2.fu_image_findings.fu_imaglinf": { + "title": "7a. Large vessel infarct(s) " + }, + "fu_sec2.fu_image_findings.fu_imaglac": { + "title": "7b. Lacunar infarct(s) " + }, + "fu_sec2.fu_image_findings.fu_imagmach": { + "title": "7c. Macrohemorrhage(s) " + }, + "fu_sec2.fu_image_findings.fu_imagmich": { + "title": "7d. Microhemorrhage(s) " + }, + "fu_sec2.fu_image_findings.fu_imagmwmh": { + "title": "7e. Moderate white-matter hyperintensity (CHS score 5-6) " + }, + "fu_sec2.fu_image_findings.fu_imagewmh": { + "title": "7f. Extensive white-matter hyperintensity (CHS score 7-8+) " + }, + "fu_sec2.fu_admut": { + "title": "8. Does the subject have a dominantly inherited AD mutation (PSEN1, PSEN2, APP)? " + }, + "fu_sec2.fu_ftldmut": { + "title": "9. Does the subject have a hereditary FTLD mutation (e.g, GRN, VCP, TARBP, FUS, C9orf72, CHMP2B, MAPT)? " + }, + "fu_sec2.fu_othmut": { + "title": "10. Does the subject have a hereditary mutation other than AD or FTLD mutation? " + }, + "fu_sec2.fu_othmutx": { + "title": "10a. If question 10 is 1 Yes, please specify hereditary mutation other than AD or FTLD mutation. " + }, + "fu_sec3.fu_etio_diag.fu_alzdis": { + "title": "11. Alzheimer's disease " + }, + "fu_sec3.fu_etio_diag.fu_alzdisif": { + "title": "11a. If Alzheimer's disease present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_lbdis": { + "title": "12. Lewy body disease " + }, + "fu_sec3.fu_etio_diag.fu_lbdif": { + "title": "12a. If Lewy body disease present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_park": { + "title": "12b. Parkinson's disease " + }, + "fu_sec3.fu_etio_diag.fu_msa": { + "title": "13. Multiple system atrophy " + }, + "fu_sec3.fu_etio_diag.fu_msaif": { + "title": "13a. If Multiple system atrophy present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_psp": { + "title": "14a. Progressive supranuclear palsy (PSP) " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_pspif": { + "title": "14a1. If Progressive supranuclear palsy (PSP) is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_cort": { + "title": "14b. Corticobasal degeneration (CBD) " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_cortif": { + "title": "14b1. If Corticobasal degeneration (CBD) is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldmo": { + "title": "14c. FTLD with motor neuron disease " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldmoif": { + "title": "14c1. If FTLD with motor neuron disease is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldnos": { + "title": "14d. FTLD NOS " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldnoif": { + "title": "14d1. If FTLD NOS is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldsubt": { + "title": "14e. If FTLD (Questions 14a-14d) is Present, specify FTLD subtype: " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldsubx": { + "title": "14e1. Other FTLD, specify " + }, + "fu_sec3.fu_etio_diag.fu_cvd": { + "title": "15. Vascular Brain injury (based on clinical or imaging evidence) " + }, + "fu_sec3.fu_etio_diag.fu_cvdif": { + "title": "15a. If vascular brain injury is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_prevstk": { + "title": "15b. Previous symptomatic stroke? " + }, + "fu_sec3.fu_etio_diag.fu_strokedec": { + "title": "15b1. Temporal relationship between stroke and cognitive decline? " + }, + "fu_sec3.fu_etio_diag.fu_stkimag": { + "title": "15b2. Confirmation of stroke by neuroimaging? " + }, + "fu_sec3.fu_etio_diag.fu_infnetw": { + "title": "15c. Is there imaging evidence of cystic infarction in cognitive network(s)? " + }, + "fu_sec3.fu_etio_diag.fu_infwmh": { + "title": "15d. Is there imaging evidence of cystic infarction, imaging evidence of extensive white matter hyperintensity (CHS grade 7-8+), and impairment in executive function? " + }, + "fu_sec3.fu_etio_diag.fu_esstrem": { + "title": "16. Essential tremor " + }, + "fu_sec3.fu_etio_diag.fu_esstreif": { + "title": "16a. If essential tremor is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_downs": { + "title": "17. Down syndrome " + }, + "fu_sec3.fu_etio_diag.fu_downsif": { + "title": "17a. If Down syndrome is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_hunt": { + "title": "18. Huntington's disease " + }, + "fu_sec3.fu_etio_diag.fu_huntif": { + "title": "18a. If Huntington's disease is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_prion": { + "title": "19. Prion disease (CJD, other) " + }, + "fu_sec3.fu_etio_diag.fu_prionif": { + "title": "19a. If Prion's disease is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_brninj": { + "title": "20. Traumatic brain injury " + }, + "fu_sec3.fu_etio_diag.fu_brninjif": { + "title": "20a. If Traumatic brain injury is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_brnincte": { + "title": "20b. If traumatic brain injury present, does the subject have symptoms consistent with chronic traumatic encephalopathy? " + }, + "fu_sec3.fu_etio_diag.fu_hyceph": { + "title": "21. Normal-pressure hydrocephalus " + }, + "fu_sec3.fu_etio_diag.fu_hycephif": { + "title": "21a. If Normal-pressure hydrocephalus is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_epilep": { + "title": "22. Epilepsy " + }, + "fu_sec3.fu_etio_diag.fu_epilepif": { + "title": "22a. If Epilepsy is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_neop": { + "title": "23. CNS neoplasm " + }, + "fu_sec3.fu_etio_diag.fu_neopif": { + "title": "23a. If CNS neoplasm present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_neopstat": { + "title": "23b. CNS neoplasm, benign or malignant? " + }, + "fu_sec3.fu_etio_diag.fu_hiv": { + "title": "24. Human immunodeficiency virus (HIV) " + }, + "fu_sec3.fu_etio_diag.fu_hivif": { + "title": "24a. If Human immunodeficiency virus (HIV) is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_othcog": { + "title": "25. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above " + }, + "fu_sec3.fu_etio_diag.fu_othcogif": { + "title": "25a. If other cognitive impairment present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_othcogx": { + "title": "25b. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above. If Present, specify: " + }, + "fu_sec3.fu_conditions.fu_dep": { + "title": "26. Active depression " + }, + "fu_sec3.fu_conditions.fu_depif": { + "title": "26a. If active depression is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_deptreat": { + "title": "26b. If active depression present, select one: " + }, + "fu_sec3.fu_conditions.fu_bipoldx": { + "title": "27. Bipolar disorder " + }, + "fu_sec3.fu_conditions.fu_bipoldif": { + "title": "27a. If bipolar disorder is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_schizop": { + "title": "28. Schizophrenia or other psychosis " + }, + "fu_sec3.fu_conditions.fu_schizoif": { + "title": "28a. If Schizophrenia or other psychosis is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_anxiet": { + "title": "29. Anxiety disorder " + }, + "fu_sec3.fu_conditions.fu_anxietif": { + "title": "29a. If Anxiety disorder is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_delir": { + "title": "30. Delirium " + }, + "fu_sec3.fu_conditions.fu_delirif": { + "title": "30a. If Delirium is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_ptsddx": { + "title": "31. Post-traumatic stress disorder (PTSD) " + }, + "fu_sec3.fu_conditions.fu_ptsddxif": { + "title": "31a. If Post-traumatic stress disorder is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_othpsy": { + "title": "32. Other psychiatric disease " + }, + "fu_sec3.fu_conditions.fu_othpsyif": { + "title": "32a. If other psychiatric disease is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_othpsyx": { + "title": "32b. If other psychiatric disease is present, please specify: " + }, + "fu_sec3.fu_conditions.fu_alcdem": { + "title": "33. Cognitive impairment due to alcohol abuse " + }, + "fu_sec3.fu_conditions.fu_alcdemif": { + "title": "33a. If cognitive impairment due to alcohol abuse is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_alcabuse": { + "title": "33b. Current alcohol abuse: " + }, + "fu_sec3.fu_conditions.fu_impsub": { + "title": "34. Cognitive impairment due to other substance abuse " + }, + "fu_sec3.fu_conditions.fu_impsubif": { + "title": "34a. If Cognitive impairment due to other substance abuse is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_dysill": { + "title": "35. Cognitive impairment due to systemic disease/medical illness (as indicated on Form D2) " + }, + "fu_sec3.fu_conditions.fu_dysillif": { + "title": "35a. If Cognitive impairment due to systemic disease/medical illness is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_meds": { + "title": "36. Cognitive impairment due to medications " + }, + "fu_sec3.fu_conditions.fu_medsif": { + "title": "36a. If Cognitive impairment due to medications, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_cogoth": { + "title": "37. Cognitive impairment NOS " + }, + "fu_sec3.fu_conditions.fu_cogothif": { + "title": "37a. If Cognitive impairment NOS, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_cogothx": { + "title": "37b. If Cognitive impairment NOS present, specify: " + }, + "fu_sec3.fu_conditions.fu_cogoth2": { + "title": "38. Cognitive impairment NOS " + }, + "fu_sec3.fu_conditions.fu_cogot2f": { + "title": "38a. If Cognitive impairment NOS, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_cogot2x": { + "title": "38b. If Cognitive impairment NOS present, specify: " + }, + "fu_sec3.fu_conditions.fu_cogoth3": { + "title": "39. Cognitive impairment NOS " + }, + "fu_sec3.fu_conditions.fu_cogot3f": { + "title": "39a. If Cognitive impairment NOS, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_cogot3x": { + "title": "39b. If Cognitive impairment NOS present, specify: " + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_dxmethod": { + "title": "1. Diagnosis method - responses in this form are based on diagnosis by:" + }, + "fu_sec1.fu_normcog": { + "title": "2. Does the subject have normal cognition (global CDR=0 and/or neuropsychological testing within normal range) and normal behavior (i.e., the subject does not exhibit behavior sufficient to diagnose MCI or dementia due to FTLD or LBD)? " + }, + "fu_sec1.fu_demented": { + "title": "3. Does the subject meet the criteria for dementia? " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_amndem": { + "title": "4a. Amnestic multidomain dementia syndrome " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_pca": { + "title": "4b. Posterior cortical atrophy syndrome (or primary visual presentation) " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_ppasyn": { + "title": "4c. Primary progressive aphasia (PPA) syndrome " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_ppasynt": { + "title": "4c1. " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_ftdsyn": { + "title": "4d. Behavioral variant FTD (bvFTD) syndrome " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_lbdsyn": { + "title": "4e. Lewy body dementia syndrome " + }, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_namndem": { + "title": "4f. Non-amnestic multidomain dementia, not PCA, PPA, bvFTD, or DLB syndrome " + }, + "fu_sec1.fu_note_d1_6.fu_mciamem": { + "title": "5a. Amnestic MCI, single domain (aMCI SD) " + }, + "fu_sec1.fu_note_d1_6.fu_mciaplus": { + "title": "5b. Amnestic MCI, multiple domains (aMCI MD) " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciaplan": { + "title": "5b1. Language " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciapatt": { + "title": "5b2. Attention " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciapex": { + "title": "5b3. Executive " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciapvis": { + "title": "5b4. Visuospatial " + }, + "fu_sec1.fu_note_d1_6.fu_mcinon1": { + "title": "5c. Non-amnestic MCI, single domain (naMCI SD) " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1lan": { + "title": "5c1. Language " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1att": { + "title": "5c2. Attention " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1ex": { + "title": "5c3. Executive " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1vis": { + "title": "5c4. Visuospatial " + }, + "fu_sec1.fu_note_d1_6.fu_mcinon2": { + "title": "5d. Non-amnestic MCI, multiple domains (naMCI MD) " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2lan": { + "title": "5d1 Language " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2att": { + "title": "5d2. Attention " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2ex": { + "title": "5d3. Executive " + }, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2vis": { + "title": "5d4. Visuospatial " + }, + "fu_sec1.fu_note_d1_6.fu_impnomci": { + "title": "5e. Cognitively impaired, not MCI " + }, + "fu_sec2.fu_biomarker_findings.fu_amylpet": { + "title": "6a. Abnormally elevated amyloid on PET " + }, + "fu_sec2.fu_biomarker_findings.fu_amylcsf": { + "title": "6b. Abnormally low amyloid in CSF " + }, + "fu_sec2.fu_biomarker_findings.fu_fdgad": { + "title": "6c. FDG-PET pattern of AD " + }, + "fu_sec2.fu_biomarker_findings.fu_hippatr": { + "title": "6d. Hippocampal atrophy " + }, + "fu_sec2.fu_biomarker_findings.fu_taupetad": { + "title": "6e. Tau PET evidence for AD " + }, + "fu_sec2.fu_biomarker_findings.fu_csftau": { + "title": "6f. Abnormally elevated CSF tau or ptau " + }, + "fu_sec2.fu_biomarker_findings.fu_fdgftld": { + "title": "6g. FDG-PET evidence for frontal or anterior temporal hypometabolism for FTLD " + }, + "fu_sec2.fu_biomarker_findings.fu_tpetftld": { + "title": "6h. Tau PET evidence for FTLD " + }, + "fu_sec2.fu_biomarker_findings.fu_mrftld": { + "title": "6i. Structural MR evidence for frontal or anterior temporal atrophy for FTLD " + }, + "fu_sec2.fu_biomarker_findings.fu_datscan": { + "title": "6j. Dopamine transporter scan (DATscan) evidence for Lewy body disease " + }, + "fu_sec2.fu_biomarker_findings.fu_othbiom": { + "title": "6k. Other neurodegenerative biomarker " + }, + "fu_sec2.fu_biomarker_findings.fu_othbiomx": { + "title": "6k1. If other biomarker findings present, please specify: " + }, + "fu_sec2.fu_image_findings.fu_imaglinf": { + "title": "7a. Large vessel infarct(s) " + }, + "fu_sec2.fu_image_findings.fu_imaglac": { + "title": "7b. Lacunar infarct(s) " + }, + "fu_sec2.fu_image_findings.fu_imagmach": { + "title": "7c. Macrohemorrhage(s) " + }, + "fu_sec2.fu_image_findings.fu_imagmich": { + "title": "7d. Microhemorrhage(s) " + }, + "fu_sec2.fu_image_findings.fu_imagmwmh": { + "title": "7e. Moderate white-matter hyperintensity (CHS score 5-6) " + }, + "fu_sec2.fu_image_findings.fu_imagewmh": { + "title": "7f. Extensive white-matter hyperintensity (CHS score 7-8+) " + }, + "fu_sec2.fu_admut": { + "title": "8. Does the subject have a dominantly inherited AD mutation (PSEN1, PSEN2, APP)? " + }, + "fu_sec2.fu_ftldmut": { + "title": "9. Does the subject have a hereditary FTLD mutation (e.g, GRN, VCP, TARBP, FUS, C9orf72, CHMP2B, MAPT)? " + }, + "fu_sec2.fu_othmut": { + "title": "10. Does the subject have a hereditary mutation other than AD or FTLD mutation? " + }, + "fu_sec2.fu_othmutx": { + "title": "10a. If question 10 is 1 Yes, please specify hereditary mutation other than AD or FTLD mutation. " + }, + "fu_sec3.fu_etio_diag.fu_alzdis": { + "title": "11. Alzheimer's disease " + }, + "fu_sec3.fu_etio_diag.fu_alzdisif": { + "title": "11a. If Alzheimer's disease present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_lbdis": { + "title": "12. Lewy body disease " + }, + "fu_sec3.fu_etio_diag.fu_lbdif": { + "title": "12a. If Lewy body disease present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_park": { + "title": "12b. Parkinson's disease " + }, + "fu_sec3.fu_etio_diag.fu_msa": { + "title": "13. Multiple system atrophy " + }, + "fu_sec3.fu_etio_diag.fu_msaif": { + "title": "13a. If Multiple system atrophy present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_psp": { + "title": "14a. Progressive supranuclear palsy (PSP) " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_pspif": { + "title": "14a1. If Progressive supranuclear palsy (PSP) is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_cort": { + "title": "14b. Corticobasal degeneration (CBD) " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_cortif": { + "title": "14b1. If Corticobasal degeneration (CBD) is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldmo": { + "title": "14c. FTLD with motor neuron disease " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldmoif": { + "title": "14c1. If FTLD with motor neuron disease is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldnos": { + "title": "14d. FTLD NOS " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldnoif": { + "title": "14d1. If FTLD NOS is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldsubt": { + "title": "14e. If FTLD (Questions 14a-14d) is Present, specify FTLD subtype: " + }, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldsubx": { + "title": "14e1. Other FTLD, specify " + }, + "fu_sec3.fu_etio_diag.fu_cvd": { + "title": "15. Vascular Brain injury (based on clinical or imaging evidence) " + }, + "fu_sec3.fu_etio_diag.fu_cvdif": { + "title": "15a. If vascular brain injury is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_prevstk": { + "title": "15b. Previous symptomatic stroke? " + }, + "fu_sec3.fu_etio_diag.fu_strokedec": { + "title": "15b1. Temporal relationship between stroke and cognitive decline? " + }, + "fu_sec3.fu_etio_diag.fu_stkimag": { + "title": "15b2. Confirmation of stroke by neuroimaging? " + }, + "fu_sec3.fu_etio_diag.fu_infnetw": { + "title": "15c. Is there imaging evidence of cystic infarction in cognitive network(s)? " + }, + "fu_sec3.fu_etio_diag.fu_infwmh": { + "title": "15d. Is there imaging evidence of cystic infarction, imaging evidence of extensive white matter hyperintensity (CHS grade 7-8+), and impairment in executive function? " + }, + "fu_sec3.fu_etio_diag.fu_esstrem": { + "title": "16. Essential tremor " + }, + "fu_sec3.fu_etio_diag.fu_esstreif": { + "title": "16a. If essential tremor is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_downs": { + "title": "17. Down syndrome " + }, + "fu_sec3.fu_etio_diag.fu_downsif": { + "title": "17a. If Down syndrome is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_hunt": { + "title": "18. Huntington's disease " + }, + "fu_sec3.fu_etio_diag.fu_huntif": { + "title": "18a. If Huntington's disease is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_prion": { + "title": "19. Prion disease (CJD, other) " + }, + "fu_sec3.fu_etio_diag.fu_prionif": { + "title": "19a. If Prion's disease is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_brninj": { + "title": "20. Traumatic brain injury " + }, + "fu_sec3.fu_etio_diag.fu_brninjif": { + "title": "20a. If Traumatic brain injury is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_brnincte": { + "title": "20b. If traumatic brain injury present, does the subject have symptoms consistent with chronic traumatic encephalopathy? " + }, + "fu_sec3.fu_etio_diag.fu_hyceph": { + "title": "21. Normal-pressure hydrocephalus " + }, + "fu_sec3.fu_etio_diag.fu_hycephif": { + "title": "21a. If Normal-pressure hydrocephalus is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_epilep": { + "title": "22. Epilepsy " + }, + "fu_sec3.fu_etio_diag.fu_epilepif": { + "title": "22a. If Epilepsy is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_neop": { + "title": "23. CNS neoplasm " + }, + "fu_sec3.fu_etio_diag.fu_neopif": { + "title": "23a. If CNS neoplasm present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_neopstat": { + "title": "23b. CNS neoplasm, benign or malignant? " + }, + "fu_sec3.fu_etio_diag.fu_hiv": { + "title": "24. Human immunodeficiency virus (HIV) " + }, + "fu_sec3.fu_etio_diag.fu_hivif": { + "title": "24a. If Human immunodeficiency virus (HIV) is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_othcog": { + "title": "25. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above " + }, + "fu_sec3.fu_etio_diag.fu_othcogif": { + "title": "25a. If other cognitive impairment present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_etio_diag.fu_othcogx": { + "title": "25b. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above. If Present, specify: " + }, + "fu_sec3.fu_conditions.fu_dep": { + "title": "26. Active depression " + }, + "fu_sec3.fu_conditions.fu_depif": { + "title": "26a. If active depression is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_deptreat": { + "title": "26b. If active depression present, select one: " + }, + "fu_sec3.fu_conditions.fu_bipoldx": { + "title": "27. Bipolar disorder " + }, + "fu_sec3.fu_conditions.fu_bipoldif": { + "title": "27a. If bipolar disorder is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_schizop": { + "title": "28. Schizophrenia or other psychosis " + }, + "fu_sec3.fu_conditions.fu_schizoif": { + "title": "28a. If Schizophrenia or other psychosis is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_anxiet": { + "title": "29. Anxiety disorder " + }, + "fu_sec3.fu_conditions.fu_anxietif": { + "title": "29a. If Anxiety disorder is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_delir": { + "title": "30. Delirium " + }, + "fu_sec3.fu_conditions.fu_delirif": { + "title": "30a. If Delirium is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_ptsddx": { + "title": "31. Post-traumatic stress disorder (PTSD) " + }, + "fu_sec3.fu_conditions.fu_ptsddxif": { + "title": "31a. If Post-traumatic stress disorder is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_othpsy": { + "title": "32. Other psychiatric disease " + }, + "fu_sec3.fu_conditions.fu_othpsyif": { + "title": "32a. If other psychiatric disease is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_othpsyx": { + "title": "32b. If other psychiatric disease is present, please specify: " + }, + "fu_sec3.fu_conditions.fu_alcdem": { + "title": "33. Cognitive impairment due to alcohol abuse " + }, + "fu_sec3.fu_conditions.fu_alcdemif": { + "title": "33a. If cognitive impairment due to alcohol abuse is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_alcabuse": { + "title": "33b. Current alcohol abuse: " + }, + "fu_sec3.fu_conditions.fu_impsub": { + "title": "34. Cognitive impairment due to other substance abuse " + }, + "fu_sec3.fu_conditions.fu_impsubif": { + "title": "34a. If Cognitive impairment due to other substance abuse is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_dysill": { + "title": "35. Cognitive impairment due to systemic disease/medical illness (as indicated on Form D2) " + }, + "fu_sec3.fu_conditions.fu_dysillif": { + "title": "35a. If Cognitive impairment due to systemic disease/medical illness is present, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_meds": { + "title": "36. Cognitive impairment due to medications " + }, + "fu_sec3.fu_conditions.fu_medsif": { + "title": "36a. If Cognitive impairment due to medications, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_cogoth": { + "title": "37. Cognitive impairment NOS " + }, + "fu_sec3.fu_conditions.fu_cogothif": { + "title": "37a. If Cognitive impairment NOS, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_cogothx": { + "title": "37b. If Cognitive impairment NOS present, specify: " + }, + "fu_sec3.fu_conditions.fu_cogoth2": { + "title": "38. Cognitive impairment NOS " + }, + "fu_sec3.fu_conditions.fu_cogot2f": { + "title": "38a. If Cognitive impairment NOS, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_cogot2x": { + "title": "38b. If Cognitive impairment NOS present, specify: " + }, + "fu_sec3.fu_conditions.fu_cogoth3": { + "title": "39. Cognitive impairment NOS " + }, + "fu_sec3.fu_conditions.fu_cogot3f": { + "title": "39a. If Cognitive impairment NOS, is it primary, contributing or non-contributing? " + }, + "fu_sec3.fu_conditions.fu_cogot3x": { + "title": "39b. If Cognitive impairment NOS present, specify: " + } + }, + "boost_values": { + "patient": 1.0, + "fu_dxmethod": 1.0, + "fu_sec1.fu_normcog": 1.0, + "fu_sec1.fu_demented": 1.0, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_amndem": 1.0, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_pca": 1.0, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_ppasyn": 1.0, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_ppasynt": 1.0, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_ftdsyn": 1.0, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_lbdsyn": 1.0, + "fu_sec1.fu_note_d1_3.fu_note_d1_5.fu_namndem": 1.0, + "fu_sec1.fu_note_d1_6.fu_mciamem": 1.0, + "fu_sec1.fu_note_d1_6.fu_mciaplus": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciaplan": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciapatt": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciapex": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_8.fu_mciapvis": 1.0, + "fu_sec1.fu_note_d1_6.fu_mcinon1": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1lan": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1att": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1ex": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_9.fu_mci1vis": 1.0, + "fu_sec1.fu_note_d1_6.fu_mcinon2": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2lan": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2att": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2ex": 1.0, + "fu_sec1.fu_note_d1_6.fu_note_d1_10.fu_mci2vis": 1.0, + "fu_sec1.fu_note_d1_6.fu_impnomci": 1.0, + "fu_sec2.fu_biomarker_findings.fu_amylpet": 1.0, + "fu_sec2.fu_biomarker_findings.fu_amylcsf": 1.0, + "fu_sec2.fu_biomarker_findings.fu_fdgad": 1.0, + "fu_sec2.fu_biomarker_findings.fu_hippatr": 1.0, + "fu_sec2.fu_biomarker_findings.fu_taupetad": 1.0, + "fu_sec2.fu_biomarker_findings.fu_csftau": 1.0, + "fu_sec2.fu_biomarker_findings.fu_fdgftld": 1.0, + "fu_sec2.fu_biomarker_findings.fu_tpetftld": 1.0, + "fu_sec2.fu_biomarker_findings.fu_mrftld": 1.0, + "fu_sec2.fu_biomarker_findings.fu_datscan": 1.0, + "fu_sec2.fu_biomarker_findings.fu_othbiom": 1.0, + "fu_sec2.fu_biomarker_findings.fu_othbiomx": 1.0, + "fu_sec2.fu_image_findings.fu_imaglinf": 1.0, + "fu_sec2.fu_image_findings.fu_imaglac": 1.0, + "fu_sec2.fu_image_findings.fu_imagmach": 1.0, + "fu_sec2.fu_image_findings.fu_imagmich": 1.0, + "fu_sec2.fu_image_findings.fu_imagmwmh": 1.0, + "fu_sec2.fu_image_findings.fu_imagewmh": 1.0, + "fu_sec2.fu_admut": 1.0, + "fu_sec2.fu_ftldmut": 1.0, + "fu_sec2.fu_othmut": 1.0, + "fu_sec2.fu_othmutx": 1.0, + "fu_sec3.fu_etio_diag.fu_alzdis": 1.0, + "fu_sec3.fu_etio_diag.fu_alzdisif": 1.0, + "fu_sec3.fu_etio_diag.fu_lbdis": 1.0, + "fu_sec3.fu_etio_diag.fu_lbdif": 1.0, + "fu_sec3.fu_etio_diag.fu_park": 1.0, + "fu_sec3.fu_etio_diag.fu_msa": 1.0, + "fu_sec3.fu_etio_diag.fu_msaif": 1.0, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_psp": 1.0, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_pspif": 1.0, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_cort": 1.0, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_cortif": 1.0, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldmo": 1.0, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldmoif": 1.0, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldnos": 1.0, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldnoif": 1.0, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldsubt": 1.0, + "fu_sec3.fu_etio_diag.fu_note_d1_13.fu_ftldsubx": 1.0, + "fu_sec3.fu_etio_diag.fu_cvd": 1.0, + "fu_sec3.fu_etio_diag.fu_cvdif": 1.0, + "fu_sec3.fu_etio_diag.fu_prevstk": 1.0, + "fu_sec3.fu_etio_diag.fu_strokedec": 1.0, + "fu_sec3.fu_etio_diag.fu_stkimag": 1.0, + "fu_sec3.fu_etio_diag.fu_infnetw": 1.0, + "fu_sec3.fu_etio_diag.fu_infwmh": 1.0, + "fu_sec3.fu_etio_diag.fu_esstrem": 1.0, + "fu_sec3.fu_etio_diag.fu_esstreif": 1.0, + "fu_sec3.fu_etio_diag.fu_downs": 1.0, + "fu_sec3.fu_etio_diag.fu_downsif": 1.0, + "fu_sec3.fu_etio_diag.fu_hunt": 1.0, + "fu_sec3.fu_etio_diag.fu_huntif": 1.0, + "fu_sec3.fu_etio_diag.fu_prion": 1.0, + "fu_sec3.fu_etio_diag.fu_prionif": 1.0, + "fu_sec3.fu_etio_diag.fu_brninj": 1.0, + "fu_sec3.fu_etio_diag.fu_brninjif": 1.0, + "fu_sec3.fu_etio_diag.fu_brnincte": 1.0, + "fu_sec3.fu_etio_diag.fu_hyceph": 1.0, + "fu_sec3.fu_etio_diag.fu_hycephif": 1.0, + "fu_sec3.fu_etio_diag.fu_epilep": 1.0, + "fu_sec3.fu_etio_diag.fu_epilepif": 1.0, + "fu_sec3.fu_etio_diag.fu_neop": 1.0, + "fu_sec3.fu_etio_diag.fu_neopif": 1.0, + "fu_sec3.fu_etio_diag.fu_neopstat": 1.0, + "fu_sec3.fu_etio_diag.fu_hiv": 1.0, + "fu_sec3.fu_etio_diag.fu_hivif": 1.0, + "fu_sec3.fu_etio_diag.fu_othcog": 1.0, + "fu_sec3.fu_etio_diag.fu_othcogif": 1.0, + "fu_sec3.fu_etio_diag.fu_othcogx": 1.0, + "fu_sec3.fu_conditions.fu_dep": 1.0, + "fu_sec3.fu_conditions.fu_depif": 1.0, + "fu_sec3.fu_conditions.fu_deptreat": 1.0, + "fu_sec3.fu_conditions.fu_bipoldx": 1.0, + "fu_sec3.fu_conditions.fu_bipoldif": 1.0, + "fu_sec3.fu_conditions.fu_schizop": 1.0, + "fu_sec3.fu_conditions.fu_schizoif": 1.0, + "fu_sec3.fu_conditions.fu_anxiet": 1.0, + "fu_sec3.fu_conditions.fu_anxietif": 1.0, + "fu_sec3.fu_conditions.fu_delir": 1.0, + "fu_sec3.fu_conditions.fu_delirif": 1.0, + "fu_sec3.fu_conditions.fu_ptsddx": 1.0, + "fu_sec3.fu_conditions.fu_ptsddxif": 1.0, + "fu_sec3.fu_conditions.fu_othpsy": 1.0, + "fu_sec3.fu_conditions.fu_othpsyif": 1.0, + "fu_sec3.fu_conditions.fu_othpsyx": 1.0, + "fu_sec3.fu_conditions.fu_alcdem": 1.0, + "fu_sec3.fu_conditions.fu_alcdemif": 1.0, + "fu_sec3.fu_conditions.fu_alcabuse": 1.0, + "fu_sec3.fu_conditions.fu_impsub": 1.0, + "fu_sec3.fu_conditions.fu_impsubif": 1.0, + "fu_sec3.fu_conditions.fu_dysill": 1.0, + "fu_sec3.fu_conditions.fu_dysillif": 1.0, + "fu_sec3.fu_conditions.fu_meds": 1.0, + "fu_sec3.fu_conditions.fu_medsif": 1.0, + "fu_sec3.fu_conditions.fu_cogoth": 1.0, + "fu_sec3.fu_conditions.fu_cogothif": 1.0, + "fu_sec3.fu_conditions.fu_cogothx": 1.0, + "fu_sec3.fu_conditions.fu_cogoth2": 1.0, + "fu_sec3.fu_conditions.fu_cogot2f": 1.0, + "fu_sec3.fu_conditions.fu_cogot2x": 1.0, + "fu_sec3.fu_conditions.fu_cogoth3": 1.0, + "fu_sec3.fu_conditions.fu_cogot3f": 1.0, + "fu_sec3.fu_conditions.fu_cogot3x": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_d1v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_d2v3.json b/src/encoded/schemas/fvp_d2v3.json new file mode 100644 index 0000000000..06dec33faa --- /dev/null +++ b/src/encoded/schemas/fvp_d2v3.json @@ -0,0 +1,570 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW UP FORM D2: Clinician-assessed Medical Conditions", + "description": "INSTRUCTIONS: This form is to be completed by a physician, physician's assistant, nurse practitioner, or other \nqualified practitioner. For additional clarification and examples, see UDS Coding Guidebook for Follow-up Visit \nPacket, Form D2. Link to NACC Coding Guidebook \nMedical Conditions and procedures. \nThe following questions should be answered based on review of all available information, including new diagnoses \nmade during the current visit, previous medical records, procedures, laboratory tests, and the clinical exam.", + "id": "/profiles/uds_fvp_b.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "fu_cancer", + "fu_diabet", + "fu_myoinf", + "fu_conghrt", + "fu_afibrill", + "fu_hypert", + "fu_angina", + "fu_hypchol", + "fu_vb12def", + "fu_thydis", + "fu_arth", + "fu_urineinc", + "fu_bowlinc", + "fu_sleepap", + "fu_remdis", + "fu_hyposom", + "fu_sleepoth", + "fu_angiocp", + "fu_angiopci", + "fu_pacemake", + "fu_hvalve", + "fu_antienc", + "fu_othcond" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 2)", + "1 Yes, primary/non-metastatic", + "2 Yes, metastatic", + "8 Not assessed (SKIP TO QUESTION 2)" + ] + }, + "fu_cancsite": { + "title": "1a. If yes, specify primary site:", + "type": "string" + }, + "fu_diabet": { + "title": "2. Diabetes", + "type": "string", + "enum": [ + "0 No", + "1 Yes, Type I", + "2 Yes, Type II", + "3 Yes, other type(diabetes insipidus, latent autoimmune diabetes/type 1.5, gestational diabetes)", + "9 Not assessed or unknown" + ] + }, + "fu_myoinf": { + "title": "3. Myocardial infarct", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_conghrt": { + "title": "4. Congestive heart failure", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_afibrill": { + "title": "5. Atrial fibrillation", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_hypert": { + "title": "6. Hypertension", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_angina": { + "title": "7. Angina", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_hypchol": { + "title": "8. Hypercholesterolemia", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_vb12def": { + "title": "9. B12 deficiency", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_thydis": { + "title": "10. Thyroid disease", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12 ", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_artype": { + "title": "11a. If yes, what type?", + "type": "string", + "enum": [ + "1 Rheumatoid", + "2 Osteoarthritis", + "3 Other (SPECIFY BELOW):", + "9 Unknown" + ] + }, + "fu_artypex": { + "title": "11a1. If other type of arthritis SPECIFY:", + "type": "string" + }, + "fu_note_d2_3": { + "title": "11b. If yes, regions affected (check at least one):", + "type": "object", + "properties": { + "fu_artupex": { + "title": "11b1. 1 Upper extremity", + "type": "boolean" + + }, + "fu_artloex": { + "title": "11b2. 1 Lower extremity", + "type": "boolean" + + }, + "fu_artspin": { + "title": "11b3. 1 Spine", + "type": "boolean" + + }, + "fu_artunkn": { + "title": "11b4. 1 Unknown", + "type": "boolean" + + } + } + }, + "fu_urineinc": { + "title": "12. Incontinence - urinary", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_bowlinc": { + "title": "13. Incontinence - bowel", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_sleepap": { + "title": "14. Sleep apnea", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_remdis": { + "title": "15. REM sleep behavior disorder (RBD)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_hyposom": { + "title": "16. Hyposomnia/insomnia", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_sleepotx": { + "title": "17a. Specify other sleep disorder:", + "type": "string" + }, + "fu_angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_hvalve": { + "title": "21. Procedure: heart valve replacement or repair", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_antienc": { + "title": "22. Antibody-mediated encephalopathy", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "fu_antiencx": { + "title": "22a. Antibody-mediated encephalopathy SPECIFY:", + "type": "string" + }, + "fu_othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "fu_othcondx": { + "title": "23a. If other medical conditions SPECIFY:", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic" + }, + "fu_cancsite": { + "title": "1a. If yes, specify primary site:" + }, + "fu_diabet": { + "title": "2. Diabetes" + }, + "fu_myoinf": { + "title": "3. Myocardial infarct" + }, + "fu_conghrt": { + "title": "4. Congestive heart failure" + }, + "fu_afibrill": { + "title": "5. Atrial fibrillation" + }, + "fu_hypert": { + "title": "6. Hypertension" + }, + "fu_angina": { + "title": "7. Angina" + }, + "fu_hypchol": { + "title": "8. Hypercholesterolemia" + }, + "fu_vb12def": { + "title": "9. B12 deficiency" + }, + "fu_thydis": { + "title": "10. Thyroid disease" + }, + "fu_arth": { + "title": "11. Arthritis If No or Not assessed,SKIP TO QUESTION 12" + }, + "fu_artype": { + "title": "11a. If yes, what type?" + }, + "fu_artypex": { + "title": "11a1. If other type of arthritis SPECIFY:" + }, + "fu_note_d2_3.fu_artupex": { + "title": "11b1. 1 Upper extremity" + }, + "fu_note_d2_3.fu_artloex": { + "title": "11b2. 1 Lower extremity" + }, + "fu_note_d2_3.fu_artspin": { + "title": "11b3. 1 Spine" + }, + "fu_note_d2_3.fu_artunkn": { + "title": "11b4. 1 Unknown" + }, + "fu_urineinc": { + "title": "12. Incontinence - urinary" + }, + "fu_bowlinc": { + "title": "13. Incontinence - bowel" + }, + "fu_sleepap": { + "title": "14. Sleep apnea" + }, + "fu_remdis": { + "title": "15. REM sleep behavior disorder (RBD)" + }, + "fu_hyposom": { + "title": "16. Hyposomnia/insomnia" + }, + "fu_sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):" + }, + "fu_sleepotx": { + "title": "17a. Specify other sleep disorder:" + }, + "fu_angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent" + }, + "fu_angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent" + }, + "fu_pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator" + }, + "fu_hvalve": { + "title": "21. Procedure: heart valve replacement or repair" + }, + "fu_antienc": { + "title": "22. Antibody-mediated encephalopathy" + }, + "fu_antiencx": { + "title": "22a. Antibody-mediated encephalopathy SPECIFY:" + }, + "fu_othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):" + }, + "fu_othcondx": { + "title": "23a. If other medical conditions SPECIFY:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic" + }, + "fu_cancsite": { + "title": "1a. If yes, specify primary site:" + }, + "fu_diabet": { + "title": "2. Diabetes" + }, + "fu_myoinf": { + "title": "3. Myocardial infarct" + }, + "fu_conghrt": { + "title": "4. Congestive heart failure" + }, + "fu_afibrill": { + "title": "5. Atrial fibrillation" + }, + "fu_hypert": { + "title": "6. Hypertension" + }, + "fu_angina": { + "title": "7. Angina" + }, + "fu_hypchol": { + "title": "8. Hypercholesterolemia" + }, + "fu_vb12def": { + "title": "9. B12 deficiency" + }, + "fu_thydis": { + "title": "10. Thyroid disease" + }, + "fu_arth": { + "title": "11. Arthritis If No or Not assessed,SKIP TO QUESTION 12" + }, + "fu_artype": { + "title": "11a. If yes, what type?" + }, + "fu_artypex": { + "title": "11a1. If other type of arthritis SPECIFY:" + }, + "fu_note_d2_3.fu_artupex": { + "title": "11b1. 1 Upper extremity" + }, + "fu_note_d2_3.fu_artloex": { + "title": "11b2. 1 Lower extremity" + }, + "fu_note_d2_3.fu_artspin": { + "title": "11b3. 1 Spine" + }, + "fu_note_d2_3.fu_artunkn": { + "title": "11b4. 1 Unknown" + }, + "fu_urineinc": { + "title": "12. Incontinence - urinary" + }, + "fu_bowlinc": { + "title": "13. Incontinence - bowel" + }, + "fu_sleepap": { + "title": "14. Sleep apnea" + }, + "fu_remdis": { + "title": "15. REM sleep behavior disorder (RBD)" + }, + "fu_hyposom": { + "title": "16. Hyposomnia/insomnia" + }, + "fu_sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):" + }, + "fu_sleepotx": { + "title": "17a. Specify other sleep disorder:" + }, + "fu_angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent" + }, + "fu_angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent" + }, + "fu_pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator" + }, + "fu_hvalve": { + "title": "21. Procedure: heart valve replacement or repair" + }, + "fu_antienc": { + "title": "22. Antibody-mediated encephalopathy" + }, + "fu_antiencx": { + "title": "22a. Antibody-mediated encephalopathy SPECIFY:" + }, + "fu_othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):" + }, + "fu_othcondx": { + "title": "23a. If other medical conditions SPECIFY:" + } + }, + "boost_values": { + "patient": 1.0, + "fu_cancer": 1.0, + "fu_cancsite": 1.0, + "fu_diabet": 1.0, + "fu_myoinf": 1.0, + "fu_conghrt": 1.0, + "fu_afibrill": 1.0, + "fu_hypert": 1.0, + "fu_angina": 1.0, + "fu_hypchol": 1.0, + "fu_vb12def": 1.0, + "fu_thydis": 1.0, + "fu_arth": 1.0, + "fu_artype": 1.0, + "fu_note_d2_3.fu_artupex": 1.0, + "fu_note_d2_3.fu_artloex": 1.0, + "fu_note_d2_3.fu_artspin": 1.0, + "fu_note_d2_3.fu_artunkn": 1.0, + "fu_urineinc": 1.0, + "fu_bowlinc": 1.0, + "fu_sleepap": 1.0, + "fu_remdis": 1.0, + "fu_hyposom": 1.0, + "fu_sleepoth": 1.0, + "fu_angiocp": 1.0, + "fu_angiopci": 1.0, + "fu_pacemake": 1.0, + "fu_hvalve": 1.0, + "fu_antienc": 1.0, + "fu_othcond": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_b7v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_e1v1.json b/src/encoded/schemas/fvp_e1v1.json new file mode 100644 index 0000000000..4934534f72 --- /dev/null +++ b/src/encoded/schemas/fvp_e1v1.json @@ -0,0 +1,411 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet, Form E1: Imaging/Labs", + "description": "NOTE: This form is to be completed by ADC or clinic staff.For additional \nclarification and examples, see UDS Coding Guidebook for Initial Visit\nPacket, Form E1.Check only one box per response category.\n\n", + "id": "/profiles/fvp_e1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "neur_image": { + "title": "Since the last visit, has any of the following imaging been completed at your ADC?", + "description": "", + "type": "object", + "properties": { + "comp_tomo": { + "title": "1. Computed tomography", + "description": "", + "type": "object", + "properties": { + "CTFLM": { + "title": "1A Computed tomography, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CTDIG": { + "title": "1B Computed tomography, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_clinic": { + "title": "2. Magnetic resonance imaging – Clinical study", + "description": "", + "type": "object", + "properties": { + "MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_research_stru": { + "title": "3. Magnetic resonance imaging – Research study/structural", + "description": "", + "type": "object", + "properties": { + "MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_research_func": { + "title": "4. Magnetic resonance imaging – Research study/functional\n ", + "description": "", + "type": "object", + "properties": { + "MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_spec": { + "title": "5. Magnetic resonance spectroscopy ", + "description": "", + "type": "object", + "properties": { + "MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "spect": { + "title": "6. SPECT", + "description": "", + "type": "object", + "properties": { + "SPECTFLM": { + "title": "6A SPECT, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "SPECTDIG": { + "title": "6B SPECT, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "pet": { + "title": "7. PET ", + "description": "", + "type": "object", + "properties": { + "PETFLM": { + "title": "7A PET, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "PETDIG": { + "title": "7B PET, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + } + }, + "specimen": { + "title": "Since the last visit, have specimens of any of the following been drawn at your ADC?", + "description": "", + "type": "object", + "properties": { + "DNA": { + "title": "8 DNA", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "SERUM": { + "title": "10 Serum/plasma", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "genotyping": { + "title": "Since the last visit, hasgenotyping been completed? ", + "description": "", + "type": "object", + "properties": { + "APOE": { + "title": "11 APOE genotype collected", + "comment": "Comment If the subject’s APOE genotype (data) is not accessible to your Center researchers within a few hours, then this question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "neur_image.comp_tomo.CTFLM": { + "title": "1A Computed tomography, film" + }, + "neur_image.comp_tomo.CTDIG": { + "title": "1B Computed tomography, digital image" + }, + "neur_image.magn_clinic.MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film" + }, + "neur_image.magn_clinic.MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image" + }, + "neur_image.magn_research_stru.MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film" + }, + "neur_image.magn_research_stru.MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image" + }, + "neur_image.magn_research_func.MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film" + }, + "neur_image.magn_research_func.MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image" + }, + "neur_image.magn_spec.MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film" + }, + "neur_image.magn_spec.MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image" + }, + "neur_image.spect.SPECTFLM": { + "title": "6A SPECT, film" + }, + "neur_image.spect.SPECTDIG": { + "title": "6B SPECT, digital image" + }, + "neur_image.pet.PETFLM": { + "title": "7A PET, film" + }, + "neur_image.pet.PETDIG": { + "title": "7B PET, digital image" + }, + "specimen.DNA": { + "title": "8 DNA" + }, + "specimen.CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem" + }, + "specimen.SERUM": { + "title": "10 Serum/plasma" + }, + "genotyping.APOE": { + "title": "11 APOE genotype collected" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "neur_image.comp_tomo.CTFLM": { + "title": "1A Computed tomography, film" + }, + "neur_image.comp_tomo.CTDIG": { + "title": "1B Computed tomography, digital image" + }, + "neur_image.magn_clinic.MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film" + }, + "neur_image.magn_clinic.MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image" + }, + "neur_image.magn_research_stru.MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film" + }, + "neur_image.magn_research_stru.MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image" + }, + "neur_image.magn_research_func.MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film" + }, + "neur_image.magn_research_func.MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image" + }, + "neur_image.magn_spec.MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film" + }, + "neur_image.magn_spec.MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image" + }, + "neur_image.spect.SPECTFLM": { + "title": "6A SPECT, film" + }, + "neur_image.spect.SPECTDIG": { + "title": "6B SPECT, digital image" + }, + "neur_image.pet.PETFLM": { + "title": "7A PET, film" + }, + "neur_image.pet.PETDIG": { + "title": "7B PET, digital image" + }, + "specimen.DNA": { + "title": "8 DNA" + }, + "specimen.CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem" + }, + "specimen.SERUM": { + "title": "10 Serum/plasma" + }, + "genotyping.APOE": { + "title": "11 APOE genotype collected" + } + }, + "boost_values": { + "patient": 1.0, + "neur_image.comp_tomo.CTFLM": 1.0, + "neur_image.comp_tomo.CTDIG": 1.0, + "neur_image.magn_clinic.MRI1FLM": 1.0, + "neur_image.magn_clinic.MRI1DIG": 1.0, + "neur_image.magn_research_stru.MRI2FLM": 1.0, + "neur_image.magn_research_stru.MRI2DIG": 1.0, + "neur_image.magn_research_func.MRI3FLM": 1.0, + "neur_image.magn_research_func.MRI3DIG": 1.0, + "neur_image.magn_spec.MRISPFLM": 1.0, + "neur_image.magn_spec.MRISPDIG": 1.0, + "neur_image.spect.SPECTFLM": 1.0, + "neur_image.spect.SPECTDIG": 1.0, + "neur_image.pet.PETFLM": 1.0, + "neur_image.pet.PETDIG": 1.0, + "specimen.DNA": 1.0, + "specimen.CSFANTEM": 1.0, + "specimen.SERUM": 1.0, + "genotyping.APOE": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_e1v1.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/fvp_e1v2.json b/src/encoded/schemas/fvp_e1v2.json new file mode 100644 index 0000000000..54073d7716 --- /dev/null +++ b/src/encoded/schemas/fvp_e1v2.json @@ -0,0 +1,411 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet, Form E1: Imaging/Labs", + "description": "NOTE: This form is to be completed by ADC or clinic staff.For additional \nclarification and examples, see UDS Coding Guidebook for Initial Visit\nPacket, Form E1.Check only one box per response category.\n\n", + "id": "/profiles/fvp_e1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "neur_image": { + "title": "Since the last visit, has neuroimaging been completed and available at your ADC?", + + "type": "object", + "properties": { + "comp_tomo": { + "title": "1. Computed tomography", + + "type": "object", + "properties": { + "CTFLM": { + "title": "1A Computed tomography, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CTDIG": { + "title": "1B Computed tomography, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_clinic": { + "title": "2. Magnetic resonance imaging – Clinical study", + + "type": "object", + "properties": { + "MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_research_stru": { + "title": "3. Magnetic resonance imaging – Research study/structural", + + "type": "object", + "properties": { + "MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_research_func": { + "title": "4. Magnetic resonance imaging – Research study/functional\n ", + + "type": "object", + "properties": { + "MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_spec": { + "title": "5. Magnetic resonance spectroscopy ", + + "type": "object", + "properties": { + "MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "spect": { + "title": "6. SPECT", + + "type": "object", + "properties": { + "SPECTFLM": { + "title": "6A SPECT, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "SPECTDIG": { + "title": "6B SPECT, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "pet": { + "title": "7. PET ", + + "type": "object", + "properties": { + "PETFLM": { + "title": "7A PET, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "PETDIG": { + "title": "7B PET, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + } + }, + "specimen": { + "title": "Are specimens of the following available at your ADC? ", + + "type": "object", + "properties": { + "DNA": { + "title": "8 DNA", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "SERUM": { + "title": "10 Serum/plasma", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "genotyping": { + "title": "Is genotype data available at your ADC? ", + + "type": "object", + "properties": { + "APOE": { + "title": "11 APOE", + "comment": "If the subject’s APOE genotype (data) is not accessible to your Center researchers within a few hours, then this question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "neur_image.comp_tomo.CTFLM": { + "title": "1A Computed tomography, film" + }, + "neur_image.comp_tomo.CTDIG": { + "title": "1B Computed tomography, digital image" + }, + "neur_image.magn_clinic.MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film" + }, + "neur_image.magn_clinic.MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image" + }, + "neur_image.magn_research_stru.MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film" + }, + "neur_image.magn_research_stru.MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image" + }, + "neur_image.magn_research_func.MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film" + }, + "neur_image.magn_research_func.MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image" + }, + "neur_image.magn_spec.MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film" + }, + "neur_image.magn_spec.MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image" + }, + "neur_image.spect.SPECTFLM": { + "title": "6A SPECT, film" + }, + "neur_image.spect.SPECTDIG": { + "title": "6B SPECT, digital image" + }, + "neur_image.pet.PETFLM": { + "title": "7A PET, film" + }, + "neur_image.pet.PETDIG": { + "title": "7B PET, digital image" + }, + "specimen.DNA": { + "title": "8 DNA" + }, + "specimen.CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem" + }, + "specimen.SERUM": { + "title": "10 Serum/plasma" + }, + "genotyping.APOE": { + "title": "11 APOE" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "neur_image.comp_tomo.CTFLM": { + "title": "1A Computed tomography, film" + }, + "neur_image.comp_tomo.CTDIG": { + "title": "1B Computed tomography, digital image" + }, + "neur_image.magn_clinic.MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film" + }, + "neur_image.magn_clinic.MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image" + }, + "neur_image.magn_research_stru.MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film" + }, + "neur_image.magn_research_stru.MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image" + }, + "neur_image.magn_research_func.MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film" + }, + "neur_image.magn_research_func.MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image" + }, + "neur_image.magn_spec.MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film" + }, + "neur_image.magn_spec.MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image" + }, + "neur_image.spect.SPECTFLM": { + "title": "6A SPECT, film" + }, + "neur_image.spect.SPECTDIG": { + "title": "6B SPECT, digital image" + }, + "neur_image.pet.PETFLM": { + "title": "7A PET, film" + }, + "neur_image.pet.PETDIG": { + "title": "7B PET, digital image" + }, + "specimen.DNA": { + "title": "8 DNA" + }, + "specimen.CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem" + }, + "specimen.SERUM": { + "title": "10 Serum/plasma" + }, + "genotyping.APOE": { + "title": "11 APOE" + } + }, + "boost_values": { + "patient": 1.0, + "neur_image.comp_tomo.CTFLM": 1.0, + "neur_image.comp_tomo.CTDIG": 1.0, + "neur_image.magn_clinic.MRI1FLM": 1.0, + "neur_image.magn_clinic.MRI1DIG": 1.0, + "neur_image.magn_research_stru.MRI2FLM": 1.0, + "neur_image.magn_research_stru.MRI2DIG": 1.0, + "neur_image.magn_research_func.MRI3FLM": 1.0, + "neur_image.magn_research_func.MRI3DIG": 1.0, + "neur_image.magn_spec.MRISPFLM": 1.0, + "neur_image.magn_spec.MRISPDIG": 1.0, + "neur_image.spect.SPECTFLM": 1.0, + "neur_image.spect.SPECTDIG": 1.0, + "neur_image.pet.PETFLM": 1.0, + "neur_image.pet.PETDIG": 1.0, + "specimen.DNA": 1.0, + "specimen.CSFANTEM": 1.0, + "specimen.SERUM": 1.0, + "genotyping.APOE": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_e1v2.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/fvp_z1v1.json b/src/encoded/schemas/fvp_z1v1.json new file mode 100644 index 0000000000..1ed6b6fe59 --- /dev/null +++ b/src/encoded/schemas/fvp_z1v1.json @@ -0,0 +1,504 @@ +{ + "title": "NACC Uniform Data Set (UDS) – FOLLOW-UP Visit Packet.Form Z1: Form Checklist", + "description": "NOTE: This form is to be completed by clinic staff.\nNACC expects and intends that all UDS forms will be attempted on all subjects, but we realize this may be impossible\nwhen the patient is terminally ill, or when there is no informant, or for other reasons. NACC requires that Forms Z1,\nA1, A5, B4, B9, C1, D1, and E1 be submitted for a subject to be included in the UDS database, even though these\nforms may include some missing data.\nFor forms not designated as required, if it is not feasible to collect all or almost all of the data elements for a subject\nand the ADC therefore decides not to attempt collection of those data, an explanation must be provided. Please\nindicate this decision below by including the appropriate explanatory code and any additional comments.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem 97 = Other problem\n96 = Cognitive/behavior problem 98 = Verbal refusal\n", + "id": "/profiles/fvp_z1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted", + "description": "Blank if #1, A2SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted", + "description": "Blank if #2, A3SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted", + "description": "Blank if #3, A4SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted", + "description": "Blank if #4, B1SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted", + "description": "Blank if #5, B2SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B2COMM": { + "title": "5B Form B2, Eval.Form – Hachinski Ischemic Scale", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted", + "description": "Blank if #6, B3SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B5SUB": { + "title": "7 Form B5, Behavioral Assessment – NPI-Q submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B5NOT": { + "title": "7A Reason Form B5, Behavioral Assessment – NPI-Q not submitted", + "description": "Blank if #7, B5SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B5COMM": { + "title": "7B Form B5, Behavioral Assessment – NPI-Q, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B6SUB": { + "title": "8 Form B6, Behavioral Assessment – GDS submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B6NOT": { + "title": "8A Reason Form B6, Behavioral Assessment – GDS not submitted", + "description": "Blank if #8, B6SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B6COMM": { + "title": "8B Form B6, Behavioral Assessment – GDS, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B7SUB": { + "title": "9 Form B7, Functional Assessment – FAQ submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B7NOT": { + "title": "9A Reason Form B7, Functional Assessment – FAQ not submitted", + "description": "Blank if #9, B7SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B7COMM": { + "title": "9B Form B7, Functional Assessment – FAQ, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted", + "description": "Blank if #10, B8SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted" + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted" + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted" + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted" + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted" + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted" + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted" + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted" + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted" + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted" + }, + "B2COMM": { + "title": "5B Form B2, Evaluation Form – HIS and CVD, comments (provide if needed)" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted" + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted" + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)" + }, + "B5SUB": { + "title": "7 Form B5, Behavioral Assessment – NPI-Q submitted" + }, + "B5NOT": { + "title": "7A Reason Form B5, Behavioral Assessment – NPI-Q not submitted" + }, + "B5COMM": { + "title": "7B Form B5, Behavioral Assessment – NPI-Q, comments (provide if needed)" + }, + "B6SUB": { + "title": "8 Form B6, Behavioral Assessment – GDS submitted" + }, + "B6NOT": { + "title": "8A Reason Form B6, Behavioral Assessment – GDS not submitted" + }, + "B6COMM": { + "title": "8B Form B6, Behavioral Assessment – GDS, comments (provide if needed)" + }, + "B7SUB": { + "title": "9 Form B7, Functional Assessment – FAQ submitted" + }, + "B7NOT": { + "title": "9A Reason Form B7, Functional Assessment – FAQ not submitted" + }, + "B7COMM": { + "title": "9B Form B7, Functional Assessment – FAQ, comments (provide if needed)" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings" + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted" + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted" + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted" + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted" + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted" + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted" + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted" + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted" + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted" + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted" + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted" + }, + "B2COMM": { + "title": "5B Form B2, Evaluation Form – HIS and CVD, comments (provide if needed)" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted" + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted" + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)" + }, + "B5SUB": { + "title": "7 Form B5, Behavioral Assessment – NPI-Q submitted" + }, + "B5NOT": { + "title": "7A Reason Form B5, Behavioral Assessment – NPI-Q not submitted" + }, + "B5COMM": { + "title": "7B Form B5, Behavioral Assessment – NPI-Q, comments (provide if needed)" + }, + "B6SUB": { + "title": "8 Form B6, Behavioral Assessment – GDS submitted" + }, + "B6NOT": { + "title": "8A Reason Form B6, Behavioral Assessment – GDS not submitted" + }, + "B6COMM": { + "title": "8B Form B6, Behavioral Assessment – GDS, comments (provide if needed)" + }, + "B7SUB": { + "title": "9 Form B7, Functional Assessment – FAQ submitted" + }, + "B7NOT": { + "title": "9A Reason Form B7, Functional Assessment – FAQ not submitted" + }, + "B7COMM": { + "title": "9B Form B7, Functional Assessment – FAQ, comments (provide if needed)" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings" + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted" + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)" + } + }, + "boost_values": { + "patient": 1.0, + "A2SUB": 1.0, + "A2NOT": 1.0, + "A2COMM": 1.0, + "A3SUB": 1.0, + "A3NOT": 1.0, + "A3COMM": 1.0, + "A4SUB": 1.0, + "A4NOT": 1.0, + "A4COMM": 1.0, + "B1SUB": 1.0, + "B1NOT": 1.0, + "B1COMM": 1.0, + "B2SUB": 1.0, + "B2NOT": 1.0, + "B2COMM": 1.0, + "B3SUB": 1.0, + "B3NOT": 1.0, + "B3COMM": 1.0, + "B5SUB": 1.0, + "B5NOT": 1.0, + "B5COMM": 1.0, + "B6SUB": 1.0, + "B6NOT": 1.0, + "B6COMM": 1.0, + "B7SUB": 1.0, + "B7NOT": 1.0, + "B7COMM": 1.0, + "B8SUB": 1.0, + "B8NOT": 1.0, + "B8COMM": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_z1v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_z1v2.json b/src/encoded/schemas/fvp_z1v2.json new file mode 100644 index 0000000000..d2cb7858e4 --- /dev/null +++ b/src/encoded/schemas/fvp_z1v2.json @@ -0,0 +1,504 @@ +{ + "title": "NACC Uniform Data Set (UDS),Follow-Up Form Z1: Form Checklist", + "description": "NOTE: This form is to be completed by clinic staff.\nNACC expects and intends that all UDS forms will be attempted on all subjects, but we realize this may be impossible\nwhen the patient is terminally ill, or when there is no informant, or for other reasons. NACC requires that Forms Z1,\nA1, A5, B4, B9, C1, D1, and E1 be submitted for a subject to be included in the UDS database, even though these\nforms may include some missing data.\nFor forms not designated as required, if it is not feasible to collect all or almost all of the data elements for a subject\nand the ADC therefore decides not to attempt collection of those data, an explanation must be provided. Please\nindicate this decision below by including the appropriate explanatory code and any additional comments.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem 97 = Other problem\n96 = Cognitive/behavior problem 98 = Verbal refusal", + "id": "/profiles/fvp_z1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted", + "description": "Blank if #1, A2SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted", + "description": "Blank if #2, A3SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted", + "description": "Blank if #3, A4SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted", + "description": "Blank if #4, B1SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted", + "description": "Blank if #5, B2SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B2COMM": { + "title": "5B Form B2, Evaluation Form – HIS and CVD, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted", + "description": "Blank if #6, B3SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B5SUB": { + "title": "7 Form B5 or B5S, Behavioral Assessment – NPI-Q submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B5NOT": { + "title": "7A Reason Form B5 or B5S, Behavioral Assessment – NPI-Q not submitted", + "description": "Blank if #7, B5SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B5COMM": { + "title": "7B Form B5 or B5S, Behavioral Assessment – NPI-Q, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B6SUB": { + "title": "8 Form B6 or B6S, Behavioral Assessment – GDS submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B6NOT": { + "title": "8A Reason Form B6 or B6S, Behavioral Assessment – GDS not submitted", + "description": "Blank if #8, B6SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B6COMM": { + "title": "8B Form B6 or B6S, Behavioral Assessment – GDS, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B7SUB": { + "title": "9 Form B7 or B7S, Functional Assessment – FAQ submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B7NOT": { + "title": "9A Reason Form B7 or B7S, Functional Assessment – FAQ not submitted", + "description": "Blank if #9, B7SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B7COMM": { + "title": "9B Form B7 or B7S, Functional Assessment – FAQ, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted", + "description": "Blank if #10, B8SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted" + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted" + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted" + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted" + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted" + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted" + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted" + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted" + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted" + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted" + }, + "B2COMM": { + "title": "5B Form B2, Evaluation Form – HIS and CVD, comments (provide if needed)" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted" + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted" + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)" + }, + "B5SUB": { + "title": "7 Form B5 or B5S, Behavioral Assessment – NPI-Q submitted" + }, + "B5NOT": { + "title": "7A Reason Form B5 or B5S, Behavioral Assessment – NPI-Q not submitted" + }, + "B5COMM": { + "title": "7B Form B5 or B5S, Behavioral Assessment – NPI-Q, comments (provide if needed)" + }, + "B6SUB": { + "title": "8 Form B6 or B6S, Behavioral Assessment – GDS submitted" + }, + "B6NOT": { + "title": "8A Reason Form B6 or B6S, Behavioral Assessment – GDS not submitted" + }, + "B6COMM": { + "title": "8B Form B6 or B6S, Behavioral Assessment – GDS, comments (provide if needed)" + }, + "B7SUB": { + "title": "9 Form B7 or B7S, Functional Assessment – FAQ submitted" + }, + "B7NOT": { + "title": "9A Reason Form B7 or B7S, Functional Assessment – FAQ not submitted" + }, + "B7COMM": { + "title": "9B Form B7 or B7S, Functional Assessment – FAQ, comments (provide if needed)" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings" + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted" + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted" + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted" + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted" + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted" + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted" + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted" + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted" + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted" + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted" + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted" + }, + "B2COMM": { + "title": "5B Form B2, Evaluation Form – HIS and CVD, comments (provide if needed)" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted" + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted" + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)" + }, + "B5SUB": { + "title": "7 Form B5 or B5S, Behavioral Assessment – NPI-Q submitted" + }, + "B5NOT": { + "title": "7A Reason Form B5 or B5S, Behavioral Assessment – NPI-Q not submitted" + }, + "B5COMM": { + "title": "7B Form B5 or B5S, Behavioral Assessment – NPI-Q, comments (provide if needed)" + }, + "B6SUB": { + "title": "8 Form B6 or B6S, Behavioral Assessment – GDS submitted" + }, + "B6NOT": { + "title": "8A Reason Form B6 or B6S, Behavioral Assessment – GDS not submitted" + }, + "B6COMM": { + "title": "8B Form B6 or B6S, Behavioral Assessment – GDS, comments (provide if needed)" + }, + "B7SUB": { + "title": "9 Form B7 or B7S, Functional Assessment – FAQ submitted" + }, + "B7NOT": { + "title": "9A Reason Form B7 or B7S, Functional Assessment – FAQ not submitted" + }, + "B7COMM": { + "title": "9B Form B7 or B7S, Functional Assessment – FAQ, comments (provide if needed)" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings" + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted" + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)" + } + }, + "boost_values": { + "patient": 1.0, + "A2SUB": 1.0, + "A2NOT": 1.0, + "A2COMM": 1.0, + "A3SUB": 1.0, + "A3NOT": 1.0, + "A3COMM": 1.0, + "A4SUB": 1.0, + "A4NOT": 1.0, + "A4COMM": 1.0, + "B1SUB": 1.0, + "B1NOT": 1.0, + "B1COMM": 1.0, + "B2SUB": 1.0, + "B2NOT": 1.0, + "B2COMM": 1.0, + "B3SUB": 1.0, + "B3NOT": 1.0, + "B3COMM": 1.0, + "B5SUB": 1.0, + "B5NOT": 1.0, + "B5COMM": 1.0, + "B6SUB": 1.0, + "B6NOT": 1.0, + "B6COMM": 1.0, + "B7SUB": 1.0, + "B7NOT": 1.0, + "B7COMM": 1.0, + "B8SUB": 1.0, + "B8NOT": 1.0, + "B8COMM": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_z1v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/fvp_z1xv3.json b/src/encoded/schemas/fvp_z1xv3.json new file mode 100644 index 0000000000..028a2249aa --- /dev/null +++ b/src/encoded/schemas/fvp_z1xv3.json @@ -0,0 +1,616 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW_UP VISIT PACKETFORM Z1X: Form Checklist", + "description": "INSTRUCTIONS: This form is to be completed by clinic staff.\nNACC expects and intends that all UDS forms will be attempted on all subjects, but we realize this may be impossible\nwhen the patient is terminally ill, or when there is no co-participant, or for other reasons. However, for a subject to be\nincluded in the UDS database, Forms Z1, A1, A5, B4, B8, B9, C2, D1, and D2 must be submitted, even though these\nforms may include some items with missing data. An explanation is required below for forms that are not submitted.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem\n96 = Cognitive or behavior problem\n97 = Other problem\n98 = Verbal refusal", + "id": "/profiles/uds_fvp_z1xv3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "fu_note_z1x_1": { + "title": "A1 SUBJECT DEMOGRAPHICS", + "type": "object", + "properties": { + "fu_langa1": { + "title": "1a. Language used for A1 Subject Demographics", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "fu_note_z1x_2": { + "title": "A2 Co-participant Demographics", + "type": "object", + "properties": { + "fu_langa2": { + "title": "2a. Language used for A2 Co-participant Demographics", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "fu_a2sub": { + "title": "2b. Submitted A2 Co-participant Demographics", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "fu_a2not": { + "title": "2c. If A2 not submitted, specify reason", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + } + } + }, + "fu_note_z1x_3": { + "title": "A3 Subject Family History", + "type": "object", + "properties": { + "fu_langa3": { + "title": "3a. Language used for A3 Subject Family History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "fu_a3sub": { + "title": "3b. Submitted A3 Subject Family History", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "fu_a3not": { + "title": "3c. If A3 not submitted, specify reason. (see KEY*)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + } + } + }, + "fu_note_z1x_4": { + "title": "A4 Subject Medications", + "type": "object", + "properties": { + "fu_langa4": { + "title": "4a. Language used for A4 Subject Medications", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "fu_a4sub": { + "title": "4b. Submitted A4 Subject Medications", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "fu_a4not": { + "title": "4c. If A4 not submitted, specify reason. (see KEY*)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + } + } + }, + "fu_note_z1x_5": { + "title": "B1 EVALUATION FORM - Physical", + "type": "object", + "properties": { + "fu_langb1": { + "title": "5a. Language used for B1 Evaluation Form - Physical", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "fu_b1sub": { + "title": "5b. Submitted B1 EVALUATION FORM - Physical", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "fu_b1not": { + "title": "5c. If B1 not submitted, specify reason. (see KEY*)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + } + } + }, + "fu_note_z1x_6": { + "title": "B4 Global Staging - CDR: Standard and Supplemental", + "type": "object", + "properties": { + "fu_langb4": { + "title": "6a. Language used for B4 CDR® Plus NACC FTLD", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "fu_note_z1x_7": { + "title": "B5 BEHAVIORAL ASSESSMENT NPI-Q", + "type": "object", + "properties": { + "fu_langb5": { + "title": "7a. Language used for B5 Behavioral Assessment NPI-Q", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "fu_b5sub": { + "title": "7b.B5 BEHAVIORAL ASSESSMENT NPI-Q", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "fu_b5not": { + "title": "7c. If B5 not submitted, specify reason. (see KEY*)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + } + } + }, + "fu_note_z1x_8": { + "title": "B6 BEHAVIORAL ASSESSMENT - GDS", + "type": "object", + "properties": { + "fu_langb6": { + "title": "8a. Language used for B6 Behavioral Assessment: GDS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "fu_b6sub": { + "title": "8b. B6 BEHAVIORAL ASSESSMENT - GDS", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "fu_b6not": { + "title": "8c. If B6 not submitted, specify reason. (see KEY*)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + } + } + }, + "fu_note_z1x_9": { + "title": "B7 FUNCTIONAL ASSESSMENT - FAS", + "type": "object", + "properties": { + "fu_langb7": { + "title": "9a. Language used for B7 Functional Assessment: FAS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "fu_b7sub": { + "title": "9b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "fu_b7not": { + "title": "9c. If B7 not submitted, specify reason. (see KEY*)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + } + } + }, + "fu_note_z1x_10": { + "title": "B8 EVALUATION FORM Neurological Examination Findings", + "type": "object", + "properties": { + "fu_langb8": { + "title": "10a. Language used for B8 Neurological Examination Findings", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "fu_note_z1x_11": { + "title": "B9 Clinician Judgment of Symptoms", + "type": "object", + "properties": { + "fu_langb9": { + "title": "11a. Language used for B9 Clinician Judgment of Symptoms", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "fu_note_z1x_12": { + "title": "C1 Neuropsychological Battery Scores", + "type": "object", + "properties": { + "fu_langc1": { + "title": "12a. Language C1", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "fu_note_z1x_13": { + "title": "C2 Neuropsychological Battery Scores", + "type": "object", + "properties": { + "fu_langc2": { + "title": "13a. Language used for C2 Neuropsychological Battery Scores", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "fu_note_z1x_14": { + "title": "D1 Clinician Diagnosis", + "type": "object", + "properties": { + "fu_langd": { + "title": "14a. Language D1 Clinician Diagnosis", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "fu_note_z1x_15": { + "title": "D2 Clinician-assessed Medical Conditions", + "type": "object", + "properties": { + "fu_langd2": { + "title": "15a. Language used for D2 Clinician-assessed Medical Conditions", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "fu_cls_form": { + "title": "CLS Form", + "type": "object", + "properties": { + "fu_langcls": { + "title": "27a. Language used for CLS Subject's Language History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "fu_clssub": { + "title": "27b. Submitted CLS Subject's Language History", + "description": "(Submit only once)", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "fu_note_z1x_1.fu_langa1": { + "title": "1a. Language used for A1 Subject Demographics" + }, + "fu_note_z1x_2.fu_langa2": { + "title": "2a. Language used for A2 Co-participant Demographics" + }, + "fu_note_z1x_2.fu_a2sub": { + "title": "2b. Submitted A2 Co-participant Demographics" + }, + "fu_note_z1x_2.fu_a2not": { + "title": "2c. If A2 not submitted, specify reason" + }, + "fu_note_z1x_3.fu_langa3": { + "title": "3a. Language used for A3 Subject Family History" + }, + "fu_note_z1x_3.fu_a3sub": { + "title": "3b. Submitted A3 Subject Family History" + }, + "fu_note_z1x_3.fu_a3not": { + "title": "3c. If A3 not submitted, specify reason. (see KEY*)" + }, + "fu_note_z1x_4.fu_langa4": { + "title": "4a. Language used for A4 Subject Medications" + }, + "fu_note_z1x_4.fu_a4sub": { + "title": "4b. Submitted A4 Subject Medications" + }, + "fu_note_z1x_4.fu_a4not": { + "title": "4c. If A4 not submitted, specify reason. (see KEY*)" + }, + "fu_note_z1x_5.fu_langb1": { + "title": "5a. Language used for B1 Evaluation Form - Physical" + }, + "fu_note_z1x_5.fu_b1sub": { + "title": "5b. Submitted B1 EVALUATION FORM - Physical" + }, + "fu_note_z1x_5.fu_b1not": { + "title": "5c. If B1 not submitted, specify reason. (see KEY*)" + }, + "fu_note_z1x_6.fu_langb4": { + "title": "6a. Language used for B4 CDR® Plus NACC FTLD" + }, + "fu_note_z1x_7.fu_langb5": { + "title": "7a. Language used for B5 Behavioral Assessment NPI-Q" + }, + "fu_note_z1x_7.fu_b5sub": { + "title": "7b.B5 BEHAVIORAL ASSESSMENT NPI-Q" + }, + "fu_note_z1x_8.fu_langb6": { + "title": "8a. Language used for B6 Behavioral Assessment: GDS" + }, + "fu_note_z1x_8.fu_b6sub": { + "title": "8b. B6 BEHAVIORAL ASSESSMENT - GDS" + }, + "fu_note_z1x_9.fu_langb7": { + "title": "9a. Language used for B7 Functional Assessment: FAS" + }, + "fu_note_z1x_9.fu_b7sub": { + "title": "9b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS" + }, + "fu_note_z1x_9.fu_b7not": { + "title": "9c. If B7 not submitted, specify reason. (see KEY*)" + }, + "fu_note_z1x_10.fu_langb8": { + "title": "10a. Language used for B8 Neurological Examination Findings" + }, + "fu_note_z1x_11.fu_langb9": { + "title": "11a. Language used for B9 Clinician Judgment of Symptoms" + }, + "fu_note_z1x_12.fu_langc1": { + "title": "12a. Language C1" + }, + "fu_note_z1x_13.fu_langc2": { + "title": "13a. Language used for C2 Neuropsychological Battery Scores" + }, + "fu_note_z1x_14.fu_langd": { + "title": "14a. Language D1 Clinician Diagnosis" + }, + "fu_note_z1x_15.fu_langd2": { + "title": "15a. Language used for D2 Clinician-assessed Medical Conditions" + }, + "fu_cls_form.fu_langcls": { + "title": "27a. Language used for CLS Subject's Language History" + }, + "fu_cls_form.fu_clssub": { + "title": "27b. Submitted CLS Subject's Language History" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "fu_note_z1x_1.fu_langa1": { + "title": "1a. Language used for A1 Subject Demographics" + }, + "fu_note_z1x_2.fu_langa2": { + "title": "2a. Language used for A2 Co-participant Demographics" + }, + "fu_note_z1x_2.fu_a2sub": { + "title": "2b. Submitted A2 Co-participant Demographics" + }, + "fu_note_z1x_2.fu_a2not": { + "title": "2c. If A2 not submitted, specify reason" + }, + "fu_note_z1x_3.fu_langa3": { + "title": "3a. Language used for A3 Subject Family History" + }, + "fu_note_z1x_3.fu_a3sub": { + "title": "3b. Submitted A3 Subject Family History" + }, + "fu_note_z1x_3.fu_a3not": { + "title": "3c. If A3 not submitted, specify reason. (see KEY*)" + }, + "fu_note_z1x_4.fu_langa4": { + "title": "4a. Language used for A4 Subject Medications" + }, + "fu_note_z1x_4.fu_a4sub": { + "title": "4b. Submitted A4 Subject Medications" + }, + "fu_note_z1x_4.fu_a4not": { + "title": "4c. If A4 not submitted, specify reason. (see KEY*)" + }, + "fu_note_z1x_5.fu_langb1": { + "title": "5a. Language used for B1 Evaluation Form - Physical" + }, + "fu_note_z1x_5.fu_b1sub": { + "title": "5b. Submitted B1 EVALUATION FORM - Physical" + }, + "fu_note_z1x_5.fu_b1not": { + "title": "5c. If B1 not submitted, specify reason. (see KEY*)" + }, + "fu_note_z1x_6.fu_langb4": { + "title": "6a. Language used for B4 CDR® Plus NACC FTLD" + }, + "fu_note_z1x_7.fu_langb5": { + "title": "7a. Language used for B5 Behavioral Assessment NPI-Q" + }, + "fu_note_z1x_7.fu_b5sub": { + "title": "7b.B5 BEHAVIORAL ASSESSMENT NPI-Q" + }, + "fu_note_z1x_8.fu_langb6": { + "title": "8a. Language used for B6 Behavioral Assessment: GDS" + }, + "fu_note_z1x_8.fu_b6sub": { + "title": "8b. B6 BEHAVIORAL ASSESSMENT - GDS" + }, + "fu_note_z1x_9.fu_langb7": { + "title": "9a. Language used for B7 Functional Assessment: FAS" + }, + "fu_note_z1x_9.fu_b7sub": { + "title": "9b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS" + }, + "fu_note_z1x_9.fu_b7not": { + "title": "9c. If B7 not submitted, specify reason. (see KEY*)" + }, + "fu_note_z1x_10.fu_langb8": { + "title": "10a. Language used for B8 Neurological Examination Findings" + }, + "fu_note_z1x_11.fu_langb9": { + "title": "11a. Language used for B9 Clinician Judgment of Symptoms" + }, + "fu_note_z1x_12.fu_langc1": { + "title": "12a. Language C1" + }, + "fu_note_z1x_13.fu_langc2": { + "title": "13a. Language used for C2 Neuropsychological Battery Scores" + }, + "fu_note_z1x_14.fu_langd": { + "title": "14a. Language D1 Clinician Diagnosis" + }, + "fu_note_z1x_15.fu_langd2": { + "title": "15a. Language used for D2 Clinician-assessed Medical Conditions" + }, + "fu_cls_form.fu_langcls": { + "title": "27a. Language used for CLS Subject's Language History" + }, + "fu_cls_form.fu_clssub": { + "title": "27b. Submitted CLS Subject's Language History" + } + }, + "boost_values": { + "patient": 1.0, + "fu_note_z1x_1.fu_langa1": 1.0, + "fu_note_z1x_2.fu_a2sub": 1.0, + "fu_note_z1x_2.fu_a2not": 1.0, + "fu_note_z1x_2.fu_langa2": 1.0, + "fu_note_z1x_3.fu_a3sub": 1.0, + "fu_note_z1x_3.fu_a3not": 1.0, + "fu_note_z1x_3.fu_langa3": 1.0, + "fu_note_z1x_4.fu_a4sub": 1.0, + "fu_note_z1x_4.fu_a4not": 1.0, + "fu_note_z1x_4.fu_langa4": 1.0, + "fu_note_z1x_5.fu_b1sub": 1.0, + "fu_note_z1x_5.fu_b1not": 1.0, + "fu_note_z1x_5.fu_langb1": 1.0, + "fu_note_z1x_6.fu_langb4": 1.0, + "fu_note_z1x_7.fu_b5sub": 1.0, + "fu_note_z1x_7.fu_langb5": 1.0, + "fu_note_z1x_8.fu_b6sub": 1.0, + "fu_note_z1x_8.fu_langb6": 1.0, + "fu_note_z1x_9.fu_b7sub": 1.0, + "fu_note_z1x_9.fu_b7not": 1.0, + "fu_note_z1x_9.fu_langb7": 1.0, + "fu_note_z1x_10.fu_langb8": 1.0, + "fu_note_z1x_11.fu_langb9": 1.0, + "fu_note_z1x_12.fu_langc1": 1.0, + "fu_note_z1x_13.fu_langc2": 1.0, + "fu_note_z1x_14.fu_langd": 1.0, + "fu_note_z1x_15.fu_langd2": 1.0, + "fu_cls_form.fu_clssub": 1.0, + "fu_cls_form.fu_langcls": 1.0 + }, + "changelog": "/profiles/changelogs/fvp_z1xv3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a1v1.json b/src/encoded/schemas/ivp_a1v1.json new file mode 100644 index 0000000000..5c079ae10e --- /dev/null +++ b/src/encoded/schemas/ivp_a1v1.json @@ -0,0 +1,566 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM A1V1: SUBJECT DEMOGRAPHICS ", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on ADC scheduling records,subject interview\r, medical records, and proxy co-participant report (as needed),For additional clarification and examples, see UDS Coding Guidebook page 4 - 10.Form A1. Check only one box per question.", + "comment": "Schema for submitting UDS_ivp_A1V1 form information.", + "id": "/profiles/ivp_a1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties":false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "inmds": { + "title": "1. Subject enrolled in NACC MDS:", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "reason": { + "title": "2. Primary reason for coming to ADC:", + "type": "string", + "enum": [ + "1 Participate in research study", + "2 Clinical evaluation", + "3 Other", + "9 Unknown" + ] + }, + "reasonx": { + "title": "2a. Other primary reason for coming to ADC – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "refer": { + "title": "3. Principal referral source:", + "description": "(if answer is 1 or 2, CONTINUE TO QUESTION 2B; otherwise, SKIP TO QUESTION 3.)", + "type": "string", + "enum": [ + "1 Self/relative/friend", + "2 Clinician", + "3 ADC solicitation", + "4 Non-ADC study", + "5 Clinic sample", + "6 Population sample", + "7 Non-ADC media appeal (e.g. Alzheimer’s Association)", + "8 Other", + "9 Unknown" + ] + }, + "referx": { + "title": "3a. Principal referral source, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "prestat": { + "title": "4. Presumed disease status at enrollment:", + "type": "string", + "enum": [ + "1 Case/patient/proband", + "2 Control/normal", + "3 No presumed disease status" + ] + }, + "prespart": { + "title": "5. Presumed participation:", + "type": "string", + "enum": [ + "1 Initial evaluation only", + "2 Longitudinal follow-up planned" + ] + }, + "source": { + "title": "6. ADC enrollment type:", + "type": "string", + "enum": [ + "1 Clinical Core", + "2 Satellite Core", + "3 Other ADC Core/project", + "4 Center-affiliated/non-ADC" + ] + }, + "birthmo": { + "title": "7a. Subject's month of birth(MM)", + "description": "Date can be submitted as MM.", + "type": "integer", + "minimum": 1, + "maximum": 12 + }, + "birthyr": { + "title": "7b. Subject's year of birth(YYYY)", + "description": "Date can be submitted as YYYY.", + "type": "integer", + "minimum": 1900, + "maximum": 2100 + }, + "sex": { + "title": "8. Subject's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "hispanic": { + "title": "9a. Does the subject report being of Hispanic/Latino ethnicity (i.e. having origins from a mainly Spanish-speaking Latin American country), regardless of race?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 10, RACE)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 10, RACE)" + ] + }, + "hispor": { + "title": "9b. If yes, what are the subject's reported origins?", + "description": "If Other(SPECIFY),CONTINUE TO 9b1", + "type": "string", + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other, (specify)", + "99 Unknown" + ] + }, + "hisporx": { + "title": "9b1. Other (specify subjects reported origins):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "race": { + "title": "10. What does subject report as his or her race?", + "description": "If Other(SPECIFY),CONTINUE TO 10a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "99 Unknown" + ] + }, + "racex": { + "title": "10a. Other (specify subjects race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "racesec": { + "title": "11. What additional race does subject report?", + "description": "If '50 Other (specify)', CONTINUE TO 11a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "racesecx": { + "title": "11a. Other (specify subject's additional race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "raceter": { + "title": "12. What additional race, beyond what was indicated above in questions 9 and 10, does subject report?", + "description": "If '50 Other (specify)',CONTINUE TO 12a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "raceterx": { + "title": "12a. Other (specify subject's additonal race beyond questions 9 and 10):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "primlang": { + "title": "13. Subject's primary language:", + "description": "If Other(SPECIFY),CONTINUE TO 13a", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Mandarin", + "4 Cantonese", + "5 Russian", + "6 Japanese", + "8 Other primary language (specify)", + "9 Unknown" + ] + }, + "primlanx": { + "title": "13a. Other (specify subject's primary language):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "educ": { + "title": "14. Subject's years of education-(Use the codes here to report the level achieved; if an attempted level is not completed, enter the number of years completed.)", + "description": "12 = High school or GED,16 = Bachelor's degree,18 = Master's degree,20 = Doctorate,99 = Unknown", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^3[0-6]$|99" + }, + "livsit": { + "title": "15. What is the subject's living situation?", + "type": "string", + "enum": [ + "1 Lives alone", + "2 Lives with spouse or partner", + "3 Lives with relative or friend", + "4 Lives with group", + "5 Other", + "9 Unknown" + ] + }, + "livsitx": { + "title": "15a. Living situation, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "independ": { + "title": "16. What is the subject's level of independence?", + "type": "string", + "enum": [ + "1 Able to live independently", + "2 Requires some assistance with complex activities", + "3 Requires some assistance with basic activities", + "4 Completely dependent", + "9 Unknown" + ] + }, + "residenc": { + "title": "17. What is the subject's type of residence?", + "type": "string", + "enum": [ + "1 Single family residence", + "2 Retirement community", + "3 Assisted living/boarding home/adult family home", + "4 Skilled nursing facility/nursing home", + "5 Other", + "9 Unknown" + ] + }, + "residenx": { + "title": "17a. Type of residence, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "zip": { + "title": "18. ZIP Code (first three digits) of subject's primary residence:", + "description": "(ZIP Code can be blank if unknown, in the range 006-999)", + "type": "string", + "pattern": "^[0][0][6-9]|[0][1-9][0-9]|[1-9][0-9][0-9]$" + }, + "maristat": { + "title": "19. Subject's current marital status:", + "type": "string", + "enum": [ + "1 Married", + "2 Widowed", + "3 Divorced", + "4 Separated", + "5 Never married (or marriage was annulled)", + "6 Living as married/domestic partner", + "8 Other", + "9 Unknown" + ] + }, + "maristax": { + "title": "19a. Marital status, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "handed": { + "title": "20. Is the subject left- or right- handed (for example, which hand would s/he normally use to write or throw a ball)?", + "type": "string", + "enum": [ + "1 Left-handed", + "2 Right-handed", + "3 Ambidextrous", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "inmds": { + "title": "1. Subject enrolled in NACC MDS:" + }, + "reason": { + "title": "2. Primary reason for coming to ADC:" + }, + "reasonx": { + "title": "2a. Other primary reason for coming to ADC – specify" + }, + "refer": { + "title": "3. Principal referral source:" + }, + "referx": { + "title": "3a. Principal referral source, other – specify" + }, + "prestat": { + "title": "4. Presumed disease status at enrollment:" + }, + "prespart": { + "title": "5. Presumed participation:" + }, + "source": { + "title": "6. ADC enrollment type:" + }, + "birthmo": { + "title": "7a. Subject's month of birth(MM)" + }, + "birthyr": { + "title": "7b. Subject's year of birth(YYYY)" + }, + "sex": { + "title": "8. Subject's sex:" + }, + "hispanic": { + "title": "9a. Does the subject report being of Hispanic/Latino ethnicity (i.e. having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "hispor": { + "title": "9b. If yes, what are the subject's reported origins?" + }, + "hisporx": { + "title": "9b1. Other (specify subjects reported origins):" + }, + "race": { + "title": "10. What does subject report as his or her race?" + }, + "racex": { + "title": "10a. Other (specify subjects race):" + }, + "racesec": { + "title": "11. What additional race does subject report?" + }, + "racesecx": { + "title": "11a. Other (specify subject's additional race):" + }, + "raceter": { + "title": "12. What additional race, beyond what was indicated above in questions 9 and 10, does subject report?" + }, + "raceterx": { + "title": "12a. Other (specify subject's additonal race beyond questions 9 and 10):" + }, + "primlang": { + "title": "13. Subject's primary language:" + }, + "primlanx": { + "title": "13a. Other (specify subject's primary language):" + }, + "educ": { + "title": "14. Subject's years of education-(Use the codes here to report the level achieved; if an attempted level is not completed, enter the number of years completed.)" + }, + "livsit": { + "title": "15. What is the subject's living situation?" + }, + "livsitx": { + "title": "15a. Living situation, other – specify" + }, + "independ": { + "title": "16. What is the subject's level of independence?" + }, + "residenc": { + "title": "17. What is the subject's primary type of residence?" + }, + "residenx": { + "title": "17a. Type of residence, other – specify" + }, + "zip": { + "title": "18. ZIP Code (first three digits) of subject's primary residence:" + }, + "maristat": { + "title": "19. Subject's current marital status:" + }, + "maristax": { + "title": "19a. Marital status, other – specify" + }, + "handed": { + "title": "20. Is the subject left- or right- handed (for example, which hand would s/he normally use to write or throw a ball)?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "inmds": { + "title": "1. Subject enrolled in NACC MDS:" + }, + "reason": { + "title": "2. Primary reason for coming to ADC:" + }, + "reasonx": { + "title": "2a. Other primary reason for coming to ADC – specify" + }, + "refer": { + "title": "3. Principal referral source:" + }, + "referx": { + "title": "3a. Principal referral source, other – specify" + }, + "prestat": { + "title": "4. Presumed disease status at enrollment:" + }, + "prespart": { + "title": "5. Presumed participation:" + }, + "source": { + "title": "6. ADC enrollment type:" + }, + "birthmo": { + "title": "7a. Subject's month of birth(MM)" + }, + "birthyr": { + "title": "7b. Subject's year of birth(YYYY)" + }, + "sex": { + "title": "8. Subject's sex:" + }, + "hispanic": { + "title": "9a. Does the subject report being of Hispanic/Latino ethnicity (i.e. having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "hispor": { + "title": "9b. If yes, what are the subject's reported origins?" + }, + "hisporx": { + "title": "9b1. Other (specify subjects reported origins):" + }, + "race": { + "title": "10. What does subject report as his or her race?" + }, + "racex": { + "title": "10a. Other (specify subjects race):" + }, + "racesec": { + "title": "11. What additional race does subject report?" + }, + "racesecx": { + "title": "11a. Other (specify subject's additional race):" + }, + "raceter": { + "title": "12. What additional race, beyond what was indicated above in questions 9 and 10, does subject report?" + }, + "raceterx": { + "title": "12a. Other (specify subject's additonal race beyond questions 9 and 10):" + }, + "primlang": { + "title": "13. Subject's primary language:" + }, + "primlanx": { + "title": "13a. Other (specify subject's primary language):" + }, + "educ": { + "title": "14. Subject's years of education-(Use the codes here to report the level achieved; if an attempted level is not completed, enter the number of years completed.)" + }, + "livsit": { + "title": "15. What is the subject's living situation?" + }, + "livsitx": { + "title": "15a. Living situation, other – specify" + }, + "independ": { + "title": "16. What is the subject's level of independence?" + }, + "residenc": { + "title": "17. What is the subject's primary type of residence?" + }, + "residenx": { + "title": "17a. Type of residence, other – specify" + }, + "zip": { + "title": "18. ZIP Code (first three digits) of subject's primary residence:" + }, + "maristat": { + "title": "19. Subject's current marital status:" + }, + "maristax": { + "title": "19a. Marital status, other – specify" + }, + "handed": { + "title": "20. Is the subject left- or right- handed (for example, which hand would s/he normally use to write or throw a ball)?" + } + }, + "boost_values": { + "patient": 1.0, + "inmds": 1.0, + "reason": 1.0, + "reasonx": 1.0, + "refer": 1.0, + "referx": 1.0, + "prestat": 1.0, + "prespart": 1.0, + "source": 1.0, + "birthmo": 1.0, + "birthyr": 1.0, + "sex": 1.0, + "hispanic": 1.0, + "hispor": 1.0, + "hisporx": 1.0, + "race": 1.0, + "racex": 1.0, + "racesec": 1.0, + "racesecx": 1.0, + "raceter": 1.0, + "raceterx": 1.0, + "primlang": 1.0, + "primlanx": 1.0, + "educ": 1.0, + "livsit": 1.0, + "livsitx": 1.0, + "independ": 1.0, + "residenc": 1.0, + "residenx": 1.0, + "zip": 1.0, + "maristat": 1.0, + "maristax": 1.0, + "handed": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a1v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a1v2.json b/src/encoded/schemas/ivp_a1v2.json new file mode 100644 index 0000000000..d6ff44be77 --- /dev/null +++ b/src/encoded/schemas/ivp_a1v2.json @@ -0,0 +1,567 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM A1V2: SUBJECT DEMOGRAPHICS ", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on ADC scheduling records,subject interview\r, medical records, and proxy co-participant report (as needed),For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet.Form A1. Check only one box per question.", + "comment": "Schema for submitting UDS_ivp_A1V2 form information.", + "id": "/profiles/ivp_a1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties":false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "inmds": { + "title": "1. Subject enrolled in NACC MDS:", + "description": "Only in version 2", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "reason": { + "title": "2. Primary reason for coming to ADC:", + "type": "string", + "enum": [ + "1 Participate in research study", + "2 Clinical evaluation", + "3 Other", + "9 Unknown" + ] + }, + "reasonx": { + "title": "2a. Other primary reason for coming to ADC – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "refer": { + "title": "3. Principal referral source:", + "description": "(if answer is 1 or 2, CONTINUE TO QUESTION 2B; otherwise, SKIP TO QUESTION 3.)", + "type": "string", + "enum": [ + "1 Self/relative/friend", + "2 Clinician", + "3 ADC solicitation", + "4 Non-ADC study", + "5 Clinic sample", + "6 Population sample", + "7 Non-ADC media appeal (e.g. Alzheimer's Association)", + "8 Other", + "9 Unknown" + ] + }, + "referx": { + "title": "3a. Principal referral source, other – specify", + "description": "Any text or numbers but cannot use single quotes ('‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "prestat": { + "title": "4. Presumed disease status at enrollment:", + "type": "string", + "enum": [ + "1 Case/patient/proband", + "2 Control/normal", + "3 No presumed disease status" + ] + }, + "prespart": { + "title": "5. Presumed participation:", + "type": "string", + "enum": [ + "1 Initial evaluation only", + "2 Longitudinal follow-up planned" + ] + }, + "source": { + "title": "6. ADC enrollment type:", + "type": "string", + "enum": [ + "1 Clinical Core", + "2 Satellite Core", + "3 Other ADC Core/project", + "4 Center-affiliated/non-ADC" + ] + }, + "birthmo": { + "title": "7a. Subject's month of birth(MM)", + "description": "Date can be submitted as MM.", + "type": "integer", + "minimum": 1, + "maximum": 12 + }, + "birthyr": { + "title": "7b. Subject's year of birth(YYYY)", + "description": "Date can be submitted as YYYY.", + "type": "integer", + "minimum": 1900, + "maximum": 2100 + }, + "sex": { + "title": "8. Subject's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "hispanic": { + "title": "9. Does the subject report being of Hispanic/Latino ethnicity (i.e. having origins from a mainly Spanish-speaking Latin American country), regardless of race?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 10, RACE)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 10, RACE)" + ] + }, + "hispor": { + "title": "9a. If yes, what are the subject's reported origins?", + "description": "If Other(SPECIFY),CONTINUE TO 8a1", + "type": "string", + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other, (specify)", + "99 Unknown" + ] + }, + "hisporx": { + "title": "9a1. Other (specify subjects reported origins):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "race": { + "title": "10. What does subject report as his or her race?", + "description": "If Other(SPECIFY),CONTINUE TO 9a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "99 Unknown" + ] + }, + "racex": { + "title": "10a. Other (specify subjects race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "racesec": { + "title": "11. What additional race does subject report?", + "description": "If '50 Other (specify)', CONTINUE TO 10a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "racesecx": { + "title": "11a. Other (specify subject's additional race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "raceter": { + "title": "12. What additional race, beyond what was indicated above in questions 9 and 10, does subject report?", + "description": "If '50 Other (specify)',CONTINUE TO 11a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "raceterx": { + "title": "12a. Other (specify subject's additonal race beyond questions 9 and 10):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "primlang": { + "title": "13. Subject's primary language:", + "description": "If Other(SPECIFY),CONTINUE TO 12a", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Mandarin", + "4 Cantonese", + "5 Russian", + "6 Japanese", + "8 Other primary language (specify)", + "9 Unknown" + ] + }, + "primlanx": { + "title": "13a. Other (specify subject's primary language):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "educ": { + "title": "14. Subject's years of education-(Use the codes here to report the level achieved; if an attempted level is not completed, enter the number of years completed.)", + "description": "12 = High school or GED,16 = Bachelor's degree,18 = Master's degree,20 = Doctorate,99 = Unknown", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^3[0-6]$|99" + }, + "livsit": { + "title": "15. What is the subject's living situation?", + "type": "string", + "enum": [ + "1 Lives alone", + "2 Lives with spouse or partner", + "3 Lives with relative or friend", + "4 Lives with group", + "5 Other", + "9 Unknown" + ] + }, + "livsitx": { + "title": "15a. Living situation, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "independ": { + "title": "16. What is the subject's level of independence?", + "type": "string", + "enum": [ + "1 Able to live independently", + "2 Requires some assistance with complex activities", + "3 Requires some assistance with basic activities", + "4 Completely dependent", + "9 Unknown" + ] + }, + "residenc": { + "title": "17. What is the subject's primary type of residence?", + "type": "string", + "enum": [ + "1 Single family residence", + "2 Retirement community", + "3 Assisted living/boarding home/adult family home", + "4 Skilled nursing facility/nursing home", + "5 Other", + "9 Unknown" + ] + }, + "residenx": { + "title": "17a. Type of residence, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "zip": { + "title": "18. ZIP Code (first three digits) of subject's primary residence:", + "description": "(ZIP Code can be blank if unknown, in the range 006-999)", + "type": "string", + "pattern": "^[0][0][6-9]|[0][1-9][0-9]|[1-9][0-9][0-9]$" + }, + "maristat": { + "title": "19. Subject's current marital status:", + "type": "string", + "enum": [ + "1 Married", + "2 Widowed", + "3 Divorced", + "4 Separated", + "5 Never married (or marriage was annulled)", + "6 Living as married/domestic partner", + "8 Other", + "9 Unknown" + ] + }, + "maristax": { + "title": "19a. Marital status, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "handed": { + "title": "20. Is the subject left- or right- handed (for example, which hand would s/he normally use to write or throw a ball)?", + "type": "string", + "enum": [ + "1 Left-handed", + "2 Right-handed", + "3 Ambidextrous", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "inmds": { + "title": "1. Subject enrolled in NACC MDS:" + }, + "reason": { + "title": "2. Primary reason for coming to ADC:" + }, + "reasonx": { + "title": "2a. Other primary reason for coming to ADC – specify" + }, + "refer": { + "title": "3. Principal referral source:" + }, + "referx": { + "title": "3a. Principal referral source, other – specify" + }, + "prestat": { + "title": "4. Presumed disease status at enrollment:" + }, + "prespart": { + "title": "5. Presumed participation:" + }, + "source": { + "title": "6. ADC enrollment type:" + }, + "birthmo": { + "title": "7a. Subject's month of birth(MM)" + }, + "birthyr": { + "title": "7b. Subject's year of birth(YYYY)" + }, + "sex": { + "title": "8. Subject's sex:" + }, + "hispanic": { + "title": "9. Does the subject report being of Hispanic/Latino ethnicity (i.e. having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "hispor": { + "title": "9a. If yes, what are the subject's reported origins?" + }, + "hisporx": { + "title": "9a1. Other (specify subjects reported origins):" + }, + "race": { + "title": "10. What does subject report as his or her race?" + }, + "racex": { + "title": "10a. Other (specify subjects race):" + }, + "racesec": { + "title": "11. What additional race does subject report?" + }, + "racesecx": { + "title": "11a. Other (specify subject's additional race):" + }, + "raceter": { + "title": "12. What additional race, beyond what was indicated above in questions 9 and 10, does subject report?" + }, + "raceterx": { + "title": "12a. Other (specify subject's additonal race beyond questions 9 and 10):" + }, + "primlang": { + "title": "13. Subject's primary language:" + }, + "primlanx": { + "title": "13a. Other (specify subject's primary language):" + }, + "educ": { + "title": "14. Subject's years of education-(Use the codes here to report the level achieved; if an attempted level is not completed, enter the number of years completed.)" + }, + "livsit": { + "title": "15. What is the subject's living situation?" + }, + "livsitx": { + "title": "15a. Living situation, other – specify" + }, + "independ": { + "title": "16. What is the subject's level of independence?" + }, + "residenc": { + "title": "17. What is the subject's primary type of residence?" + }, + "residenx": { + "title": "17a. Type of residence, other – specify" + }, + "zip": { + "title": "18. ZIP Code (first three digits) of subject's primary residence:" + }, + "maristat": { + "title": "19. Subject's current marital status:" + }, + "maristax": { + "title": "19a. Marital status, other – specify" + }, + "handed": { + "title": "20. Is the subject left- or right- handed (for example, which hand would s/he normally use to write or throw a ball)?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "inmds": { + "title": "1. Subject enrolled in NACC MDS:" + }, + "reason": { + "title": "2. Primary reason for coming to ADC:" + }, + "reasonx": { + "title": "2a. Other primary reason for coming to ADC – specify" + }, + "refer": { + "title": "3. Principal referral source:" + }, + "referx": { + "title": "3a. Principal referral source, other – specify" + }, + "prestat": { + "title": "4. Presumed disease status at enrollment:" + }, + "prespart": { + "title": "5. Presumed participation:" + }, + "source": { + "title": "6. ADC enrollment type:" + }, + "birthmo": { + "title": "7a. Subject's month of birth(MM)" + }, + "birthyr": { + "title": "7b. Subject's year of birth(YYYY)" + }, + "sex": { + "title": "8. Subject's sex:" + }, + "hispanic": { + "title": "9. Does the subject report being of Hispanic/Latino ethnicity (i.e. having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "hispor": { + "title": "9a. If yes, what are the subject's reported origins?" + }, + "hisporx": { + "title": "9a1. Other (specify subjects reported origins):" + }, + "race": { + "title": "10. What does subject report as his or her race?" + }, + "racex": { + "title": "10a. Other (specify subjects race):" + }, + "racesec": { + "title": "11. What additional race does subject report?" + }, + "racesecx": { + "title": "11a. Other (specify subject's additional race):" + }, + "raceter": { + "title": "12. What additional race, beyond what was indicated above in questions 9 and 10, does subject report?" + }, + "raceterx": { + "title": "12a. Other (specify subject's additonal race beyond questions 9 and 10):" + }, + "primlang": { + "title": "13. Subject's primary language:" + }, + "primlanx": { + "title": "13a. Other (specify subject's primary language):" + }, + "educ": { + "title": "14. Subject's years of education-(Use the codes here to report the level achieved; if an attempted level is not completed, enter the number of years completed.)" + }, + "livsit": { + "title": "15. What is the subject's living situation?" + }, + "livsitx": { + "title": "15a. Living situation, other – specify" + }, + "independ": { + "title": "16. What is the subject's level of independence?" + }, + "residenc": { + "title": "17. What is the subject's primary type of residence?" + }, + "residenx": { + "title": "17a. Type of residence, other – specify" + }, + "zip": { + "title": "18. ZIP Code (first three digits) of subject's primary residence:" + }, + "maristat": { + "title": "19. Subject's current marital status:" + }, + "maristax": { + "title": "19a. Marital status, other – specify" + }, + "handed": { + "title": "20. Is the subject left- or right- handed (for example, which hand would s/he normally use to write or throw a ball)?" + } + }, + "boost_values": { + "patient": 1.0, + "inmds": 1.0, + "reason": 1.0, + "reasonx": 1.0, + "refer": 1.0, + "referx": 1.0, + "prestat": 1.0, + "prespart": 1.0, + "source": 1.0, + "birthmo": 1.0, + "birthyr": 1.0, + "sex": 1.0, + "hispanic": 1.0, + "hispor": 1.0, + "hisporx": 1.0, + "race": 1.0, + "racex": 1.0, + "racesec": 1.0, + "racesecx": 1.0, + "raceter": 1.0, + "raceterx": 1.0, + "primlang": 1.0, + "primlanx": 1.0, + "educ": 1.0, + "livsit": 1.0, + "livsitx": 1.0, + "independ": 1.0, + "residenc": 1.0, + "residenx": 1.0, + "zip": 1.0, + "maristat": 1.0, + "maristax": 1.0, + "handed": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a1v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a1v3.json b/src/encoded/schemas/ivp_a1v3.json new file mode 100644 index 0000000000..3bcb22e3d1 --- /dev/null +++ b/src/encoded/schemas/ivp_a1v3.json @@ -0,0 +1,464 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM A1V3: SUBJECT DEMOGRAPHICS ", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on ADC scheduling records,subject interview\r, medical records, and proxy co-participant report (as needed),For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet.Form A1. Check only one box per question.", + "comment": "Schema for submitting UDS_ivp_A1V3 form information.", + "id": "/profiles/ivp_a1v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "reason": { + "title": "1. Primary reason for coming to ADC:", + "type": "string", + "enum": [ + "1 To participate in a research study", + "2 To have a clinical evaluation", + "4 Both (to participate in a research study and to have a clinical evaluation)", + "9 Unknown" + ] + }, + "refersc": { + "title": "2a. Principal referral source:", + "description": "(if answer is 1 or 2, CONTINUE TO QUESTION 2B; otherwise, SKIP TO QUESTION 3.)", + "type": "string", + "enum": [ + "1 Self-referral", + "2 Non-professional contact (spouse/partner, relative, friend, coworker, etc.)", + "3 ADC participant referral", + "4 ADC clinician, staff, or investigator referral", + "5 Nurse, doctor, or other health care provider", + "6 Other research study clinician/staff/investigator (non-ADC; e.g., ADNI, Women's Health Initiative)", + "8 Other", + "9 Unknown" + ] + }, + "learned": { + "title": "2b. If the referral source was self-referral or a non-professional contact, how did the referral source learn of the ADC?", + "type": "string", + "enum": [ + "1 ADC advertisement (e.g., website, mailing, newspaper ad, community presentation)", + "2 News article or TV program mentioning the ADC study", + "3 Conference or community event (e.g., community memory walk)", + "4 Another organization's media appeal or website (e.g., Alzheimer's Association, clinicaltrials.gov)", + "8 Other", + "9 Unknown" + ] + }, + "prestat": { + "title": "3. Presumed disease status at enrollment:", + "type": "string", + "enum": [ + "1 Case, patient, or proband", + "2 Control or normal", + "3 No presumed disease status" + ] + }, + "prespart": { + "title": "4. Presumed participation:", + "type": "string", + "enum": [ + "1 Initial evaluation only", + "2 Longitudinal follow-up planned" + ] + }, + "source": { + "title": "5. ADC enrollment type:", + "type": "string", + "enum": [ + "1 Primarily ADC-funded (Clinical Core, Satellite Core, or other ADC Core or project)", + "2 Subject is supported primarily by a non-ADC study (e.g., RO1, including non-ADC grants supporting the FTLD Module participation)" + ] + }, + "birthmo": { + "title": "6a. Subject's month of birth(MM)", + "description": "Date can be submitted as MM.", + "type": "integer", + "minimum": 1, + "maximum": 12 + }, + "birthyr": { + "title": "6b. Subject's year of birth(YYYY)", + "description": "Date can be submitted as YYYY.", + "type": "integer", + "minimum": 1900, + "maximum": 2100 + }, + "sex": { + "title": "7. Subject's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "hispanic": { + "title": "8. Does the subject report being of Hispanic/Latino ethnicity (i.e. having origins from a mainly Spanish-speaking Latin American country), regardless of race?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 9)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 9)" + ] + }, + "hispor": { + "title": "8a. If yes, what are the subject's reported origins?", + "description": "If Other(SPECIFY),CONTINUE TO 8a1", + "type": "string", + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other, (specify)", + "99 Unknown" + ] + }, + "hisporx": { + "title": "8a1. Other (specify subjects reported origins):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "race": { + "title": "9. What does subject report as his or her race?", + "description": "If Other(SPECIFY),CONTINUE TO 9a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "99 Unknown" + ] + }, + "racex": { + "title": "9a. Other (specify subjects race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "racesec": { + "title": "10. What additional race does subject report?", + "description": "If '50 Other (specify)', CONTINUE TO 10a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "racesecx": { + "title": "10a. Other (specify subject's additional race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "raceter": { + "title": "11. What additional race, beyond what was indicated above in questions 9 and 10, does subject report?", + "description": "If '50 Other (specify)',CONTINUE TO 11a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "raceterx": { + "title": "11a. Other (specify subject's additonal race beyond questions 9 and 10):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "primlang": { + "title": "12. Subject's primary language:", + "description": "If Other(SPECIFY),CONTINUE TO 12a", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Mandarin", + "4 Cantonese", + "5 Russian", + "6 Japanese", + "8 Other primary language (specify)", + "9 Unknown" + ] + }, + "primlanx": { + "title": "12a. Other (specify subject's primary language):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "educ": { + "title": "13. Subject's years of education-(Use the codes here to report the level achieved; if an attempted level is not completed, enter the number of years completed.)", + "description": "12 = High school or GED,16 = Bachelor's degree,18 = Master's degree,20 = Doctorate,99 = Unknown", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^3[0-6]$|99" + }, + "educ_type": { + "title": "Type of degrees", + "description": "Examples:\nDDS\nDMD\nDO\nDPM - podiatrist\nDVM - veterinarian\nEd.D.\nJD - lawyer\nMBA \nMD\nMPH\nMS\nOD\nPharmD\nPhD\nPsyD\nSciD", + "comment":"Redcap field", + "type": "string" + }, + "maristat": { + "title": "14. Subject's current marital status:", + "type": "string", + "enum": [ + "1 Married", + "2 Widowed", + "3 Divorced", + "4 Separated", + "5 Never married (or marriage was annulled)", + "6 Living as married/domestic partner", + "9 Unknown" + ] + }, + "livsitua": { + "title": "15. What is the subject's living situation?", + "type": "string", + "enum": [ + "1 Lives alone", + "2 Lives with one other person: a spouse or partner", + "3 Lives with one other person: a relative, friend, or roommate", + "4 Lives with caregiver who is not spouse/partner, relative, or friend", + "5 Lives with a group (related or not related) in a private residence", + "6 Lives in group home (e.g., assisted living, nursing home, convent)", + "9 Unknown" + ] + }, + "independ": { + "title": "16. What is the subject's level of independence?", + "type": "string", + "enum": [ + "1 Able to live independently", + "2 Requires some assistance with complex activities", + "3 Requires some assistance with basic activities", + "4 Completely dependent", + "9 Unknown" + ] + }, + "residenc": { + "title": "17. What is the subject's primary type of residence?", + "type": "string", + "enum": [ + "1 Single - or multi-family private residence (apartment, condo, house)", + "2 Retirement community or independent group living", + "3 Assisted living, adult family home, or boarding home", + "4 Skilled nursing facility, nursing home, hospital, or hospice", + "9 Unknown" + ] + }, + "zip": { + "title": "18. ZIP Code (first three digits) of subject's primary residence:", + "description": "(ZIP Code can be blank if unknown, in the range 006-999)", + "type": "string", + "pattern": "^[0][0][6-9]|[0][1-9][0-9]|[1-9][0-9][0-9]$" + }, + "handed": { + "title": "19. Is the subject left- or right- handed (for example, which hand would s/he normally use to write or throw a ball)?", + "type": "string", + "enum": [ + "1 Left-handed", + "2 Right-handed", + "3 Ambidextrous", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "reason": { + "title": "1. Primary reason for coming to ADC:" + }, + "refersc": { + "title": "2a. Principal referral source:" + }, + "prestat": { + "title": "3. Presumed disease status at enrollment:" + }, + "prespart": { + "title": "4. Presumed participation:" + }, + "source": { + "title": "5. ADC enrollment type:" + }, + "birthmo": { + "title": "6a. Subject's month of birth(MM)" + }, + "birthyr": { + "title": "6b. Subject's year of birth(YYYY)" + }, + "sex": { + "title": "7. Subject's sex:" + }, + "hispanic": { + "title": "8. Does the subject report being of Hispanic/Latino ethnicity (i.e. having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "race": { + "title": "9. What does subject report as his or her race?" + }, + "racesec": { + "title": "10. What additional race does subject report?" + }, + "raceter": { + "title": "11. What additional race, beyond what was indicated above in questions 9 and 10, does subject report?" + }, + "primlang": { + "title": "12. Subject's primary language:" + }, + "educ": { + "title": "13. Subject's years of education." + }, + "educ_type": { + "title": "Type of degrees" + }, + "maristat": { + "title": "14. Subject's current marital status:" + }, + "independ": { + "title": "16. What is the subject's level of independence?" + }, + "residenc": { + "title": "17. What is the subject's primary type of residence?" + }, + "zip": { + "title": "18. ZIP Code (first three digits) of subject's primary residence:" + }, + "handed": { + "title": "19. Is the subject left- or right- handed (for example, which hand would s/he normally use to write or throw a ball)?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "reason": { + "title": "1. Primary reason for coming to ADC:" + }, + "refersc": { + "title": "2a. Principal referral source:" + }, + "prestat": { + "title": "3. Presumed disease status at enrollment:" + }, + "prespart": { + "title": "4. Presumed participation:" + }, + "source": { + "title": "5. ADC enrollment type:" + }, + "birthmo": { + "title": "6a. Subject's month of birth(MM)" + }, + "birthyr": { + "title": "6b. Subject's year of birth(YYYY)" + }, + "sex": { + "title": "7. Subject's sex:" + }, + "hispanic": { + "title": "8. Does the subject report being of Hispanic/Latino ethnicity (i.e. having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "race": { + "title": "9. What does subject report as his or her race?" + }, + "racesec": { + "title": "10. What additional race does subject report?" + }, + "raceter": { + "title": "11. What additional race, beyond what was indicated above in questions 9 and 10, does subject report?" + }, + "primlang": { + "title": "12. Subject's primary language:" + }, + "educ": { + "title": "13. Subject's years of education." + }, + "educ_type": { + "title": "Type of degrees" + }, + "maristat": { + "title": "14. Subject's current marital status:" + }, + "independ": { + "title": "16. What is the subject's level of independence?" + }, + "residenc": { + "title": "17. What is the subject's primary type of residence?" + }, + "zip": { + "title": "18. ZIP Code (first three digits) of subject's primary residence:" + }, + "handed": { + "title": "19. Is the subject left- or right- handed (for example, which hand would s/he normally use to write or throw a ball)?" + } + }, + "boost_values": { + "patient": 1.0, + "status": 1.0, + "reason": 1.0, + "refersc": 1.0, + "prestat": 1.0, + "prespart": 1.0, + "source": 1.0, + "birthmo": 1.0, + "birthyr": 1.0, + "sex": 1.0, + "hispanic": 1.0, + "race": 1.0, + "racesec": 1.0, + "raceter": 1.0, + "primlang": 1.0, + "educ": 1.0, + "educ_type": 1.0, + "maristat": 1.0, + "independ": 1.0, + "residenc": 1.0, + "zip": 1.0, + "handed": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a1v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a2.json b/src/encoded/schemas/ivp_a2.json new file mode 100644 index 0000000000..29083b1bff --- /dev/null +++ b/src/encoded/schemas/ivp_a2.json @@ -0,0 +1,308 @@ +{ + "title": "NACC UNIFORM DATA SET (UDS) -INITIAL VISIT PACKET Form A2: Co-participant Demographics Link to NACC Coding Guidebook", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on co-participant's report. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A2. Check only one box per question, Link to NACC Coding Guidebook 'http://www.alz.washington.edu/NONMEMBER/UDS/DOCS/VER3/UDS3_ivp_guidebook.pdf'", + "comment": "Schema for submitting UDS_ivp_A2 form information.", + "id": "/profiles/ivp_a2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "patient", + "adcid", + "visdate", + "visitnum", + "initials", + "inbirmo", + "inbiryr", + "insex", + "inhisp", + "inrace", + "inrasec", + "inrater", + "ineduc", + "inrelto", + "inknown", + "inlivwth", + "inrely" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "inbirmo": { + "title": "1a. Co-participant's month of birth:", + "description": "Date can be submitted as MM.((MM) 1-12, 99 = Unknown)", + "type": "string", + "pattern": "^[0]?[1-9]|[1][0-2]|[99]$" + }, + "inbiryr": { + "title": "1b. Co-participant's year of birth:", + "description": "Date can be submitted as YYYY.((YYYY) 1875 to (current year minus 15), 9999 = Unknown)", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "insex": { + "title": "2. Co-participant's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "inhisp": { + "title": "3. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race? ", + "type": "string", + "description": "If '1 Yes', CONTINUE TO 3a", + "enum": [ + "0 No (If No, SKIP TO QUESTION 4)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 4)" + ] + }, + "inhispor": { + "title": "3a. If yes, what are the co-participant's reported origins?", + "description": "If Other (specify), CONTINUE TO 3a1", + "type": "string", + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other (specify)", + "99 Unknown" + ] + }, + "inhispox": { + "title": "3a1. Other (specify co-participant's Hispanic/Latino origins):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrace": { + "title": "4. What does the co-participant report as his or her race?", + "description": "If Other (specify), CONTINUE TO 4a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 other (specify)", + "99 Unknown" + ] + }, + "inracex": { + "title": "4a. Other (specify the co-participant's race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrasec": { + "title": "5. What additional race does the co-participant report?", + "description": "If Other (specify), CONTINUE TO 4a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "inrasecx": { + "title": "5a. Other (specify the co-participant's additional race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrater": { + "title": "6. What additional race, beyond those reported in questions 4 and 5, does the co-participant report?", + "description": "If Other (specify), CONTINUE TO 6a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "inraterx": { + "title": "6a. Other (specify the co-participant's race beyond those in questions 4 and 5):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "ineduc": { + "title": "7. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:", + "description": "12 = High school or GED,16 = Bachelor's degree,18 = Master's degree;20 = Doctorate, >20 = Other,99 = Unknown(0-36, 99=unknown).If '21 >20', CONTINUE TO 'Years of education' and 'Type of degrees (eg. MPH, MBA, etc.)'.", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4", + "5 5", + "6 6", + "7 7", + "8 8", + "9 9", + "10 10", + "11 11", + "12 12", + "13 13", + "14 14", + "15 15", + "16 16", + "17 17", + "18 18", + "19 19", + "20 20", + "21 >20", + "99 99" + ] + }, + "ineduc_more_than_20": { + "title": "Years of education", + "description": "Years of education if more than 20 years", + "type": "string", + "enum": [ + "1 21", + "2 22", + "3 23", + "4 24", + "5 25", + "6 26", + "7 27", + "8 28", + "9 29", + "10 30", + "11 31", + "12 32", + "13 33", + "14 34", + "15 35", + "16 36" + ] + }, + + "inrelto": { + "title": "8. What is co-participant's relationship to the subject?", + "type": "string", + "enum": [ + "1 Spouse, partner, or companion (include ex-spouse, ex-partner, fiance(e), boyfriend, girlfriend)", + "2 Child (by blood or through marriage or adoption)", + "3 Sibling (by blood or through marriage or adoption)", + "4 Other relative (by blood or through marriage or adoption)", + "5 Friend, neighbor, or someone known through family, friends, work, or community (e.g., church)", + "6 Paid caregiver, health care provider, or clinician", + "7 Other" + ] + }, + "inknown": { + "title": "8a. How long has the co-participant known the subject?", + "description": "((years) 0 - 120, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9][0-9]?|[1][0-1][0-9]|[1][2][0]|999$" + }, + "inlivwth": { + "title": "9. Does the co-participant live with the subject?", + "description": "If '0 No', CONTINUE TO 9a and 9b", + "type": "string", + "enum": [ + "0 No", + "1 Yes (If Yes, SKIP TO QUESTION 10)" + ] + }, + "invisits": { + "title": "9a. If no, approximate frequency of in-person visits?", + "type": "string", + "enum": [ + "1 Daily", + "2 At least three times per week", + "3 Weekly", + "4 At least three times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "incalls": { + "title": "9b. If no, approximate frequency of telephone contact?", + "type": "string", + "enum": [ + "1 Daily", + "2 At least three times per week", + "3 Weekly", + "4 At least three times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "inrely": { + "title": "10. Is there a question about the co-participant's reliability?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + }, + + + "boost_values": { + "patient":1.0, + "inbirmo": 1.0, + "inbiryr": 1.0, + "insex": 1.0, + "inhisp": 1.0, + "inhispor": 1.0, + "inhispox": 1.0, + "inrace": 1.0, + "inracex": 1.0, + "inrasec": 1.0, + "inrasecx": 1.0, + "inrater": 1.0, + "inraterx": 1.0, + "ineduc": 1.0, + "ineduc_more_than_20": 1.0, + "inrelto": 1.0, + "inknown": 1.0, + "inlivwth": 1.0, + "invisits": 1.0, + "incalls": 1.0, + "inrely": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a2.md" +} diff --git a/src/encoded/schemas/ivp_a2v1.json b/src/encoded/schemas/ivp_a2v1.json new file mode 100644 index 0000000000..87fef6d2b0 --- /dev/null +++ b/src/encoded/schemas/ivp_a2v1.json @@ -0,0 +1,570 @@ +{ + "title": "NACC UNIFORM DATA SET (UDS) -INITIAL VISIT PACKET Form A2: Co-participant Demographics Link to NACC Coding Guidebook", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on co-participant's report. For additional clarification and examples, see UDS Coding Guidebook pages 11 - 14, Form A2. Check only one box per question, Link to NACC Coding Guidebook 'http://www.alz.washington.edu/NONMEMBER/UDS/DOCS/VER3/UDS3_ivp_guidebook.pdf'", + "comment": "Schema for submitting UDS_ivp_A1 form information.", + "id": "/profiles/ivp_a2v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + + "required": [ + "patient", + "adcid", + "visdate", + "visitnum", + "initials", + "inbirmo", + "inbiryr", + "insex", + "inhisp", + "inrace", + "inrasec", + "inrater", + "ineduc", + "inrelto", + "inlivwth", + "inrely" + ], + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "inbirmo": { + "title": "1a. Co-participant's month of birth:", + "description": "Date can be submitted as MM.((MM) 1-12, 99 = Unknown", + "type": "string", + "pattern": "^[0]?[1-9]|[1][0-2]|[99]$" + }, + "inbiryr": { + "title": "1b. Co-participant's year of birth:", + "description": "Date can be submitted as YYYY.((YYYY) 1875 to (current year minus 15), 9999 = Unknown)", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "insex": { + "title": "2. Co-participant's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "inhisp": { + "title": "3a. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race? ", + "type": "string", + "description": "If '1 Yes', CONTINUE TO 3a", + "enum": [ + "0 No (If No, SKIP TO QUESTION 4)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 4)" + ] + }, + "inhispor": { + "title": "3b. If yes, what are the co-participant's reported origins?", + "description": "If Other (specify), CONTINUE TO 3a1", + "type": "string", + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other (specify)", + "99 Unknown" + ] + }, + "inhispox": { + "title": "3b1. Other (specify co-participant's Hispanic/Latino origins):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrace": { + "title": "4. What does the co-participant report as his or her race?", + "description": "If Other (specify), CONTINUE TO 4a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 other (specify)", + "99 Unknown" + ] + }, + "inracex": { + "title": "4a. Other (specify the co-participant's race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrasec": { + "title": "5. What additional race does the co-participant report?", + "description": "If Other (specify), CONTINUE TO 4a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "inrasecx": { + "title": "5a. Other (specify the co-participant's additional race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrater": { + "title": "6. What additional race, beyond those reported in questions 4 and 5, does the co-participant report?", + "description": "If Other (specify), CONTINUE TO 6a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "inraterx": { + "title": "6a. Other (specify the co-participant's race beyond those in questions 4 and 5):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "ineduc": { + "title": "7. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:", + "description": "High school/GED = 12; Bachelors degree = 16; Master’s degree = 18; Doctorate = 20,99 = Unknown.(0-36, 99=unknown)", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^3[0-6]$|99" + }, + + "inrelto": { + "title": "8. What is co-participant's relationship to the subject?", + "type": "string", + "enum": [ + "1 Spouse, partner, or companion (include ex-spouse, ex-partner, fiance(e), boyfriend, girlfriend)", + "2 Child (by blood or through marriage or adoption)", + "3 Sibling (by blood or through marriage or adoption)", + "4 Other relative (by blood or through marriage or adoption)", + "5 Friend, neighbor, or someone known through family, friends, work, or community (e.g., church)", + "6 Paid caregiver, health care provider, or clinician", + "7 Other" + ] + }, + "INRELTOX": { + "title": "8A Informant relationship, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + + }, + + "inlivwth": { + "title": "9. Does the co-participant live with the subject?", + "description": "If '0 No', CONTINUE TO 9a and 9b", + "type": "string", + "enum": [ + "0 No", + "1 Yes (If Yes, SKIP TO QUESTION 10)" + ] + }, + "invisits": { + "title": "9a. If no, approximate frequency of in-person visits?", + "type": "string", + "enum": [ + "1 Daily", + "2 At least three times per week", + "3 Weekly", + "4 At least three times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "incalls": { + "title": "9b. Approximate frequency of telephone contact?", + "type": "string", + "enum": [ + "1 Daily", + "2 At least three times per week", + "3 Weekly", + "4 At least three times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "inrely": { + "title": "10. Is there a question about the co-participant's reliability?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + }, + "allOf": [ + { + "oneOf": [ + { + "properties": { + "inhisp": { + "enum": [ + "1 Yes" + ] + }, + "inhispor": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "inhispox" + ] + }, + { + "properties": { + "inhisp": { + "enum": [ + "1 Yes" + ] + }, + "inhispor": { + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inhispox" + ] + } + }, + { + "properties": { + "inhisp": { + "enum": [ + "0 No (If No, SKIP TO QUESTION 4)", + "9 Unknown (If Unknown, SKIP TO QUESTION 4)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "inhispor" + ] + } + }, + { + "not": { + "required": [ + "inhispox" + ] + } + } + ] + } + ] + }, + { + "oneOf": [ + { + "properties": { + "inrace": { + "enum": [ + "50 other (specify)" + ] + } + }, + "required": [ + "inracex" + ] + }, + { + "properties": { + "inrace": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inracex" + ] + } + } + ] + }, + { + "oneOf": [ + { + "properties": { + "inrasec": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "inrasecx" + ] + }, + { + "properties": { + "inrasec": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "88 None Reported", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inrasecx" + ] + } + } + ] + }, + { + "oneOf": [ + { + "properties": { + "inrater": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "inraterx" + ] + }, + { + "properties": { + "inrater": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "88 None Reported", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inraterx" + ] + } + } + ] + }, + + { + "oneOf": [ + { + "properties": { + "inlivwth": { + "enum": [ + "0 No" + ] + } + }, + "required": [ + "invisits", + "incalls" + ] + }, + { + "properties": { + "inlivwth": { + "enum": [ + "1 Yes (If Yes, SKIP TO QUESTION 10)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "invisits" + ] + } + }, + { + "not": { + "required": [ + "incalls" + ] + } + } + ] + } + ] + } + ], + "facets": { + "status": { + "title": "Status" + }, + "inbirmo": { + "title": "1a. Co-participant's month of birth:" + }, + "inbiryr": { + "title": "1b. Co-participant's year of birth:" + }, + "insex": { + "title": "2. Co-participant's sex:" + }, + "inhisp": { + "title": "3a. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race? " + }, + "inrace": { + "title": "4. What does the co-participant report as his or her race?" + }, + "inrasec": { + "title": "5. What additional race does the co-participant report?" + }, + "inrater": { + "title": "6. What additional race, beyond those reported in questions 4 and 5, does the co-participant report?" + }, + "ineduc": { + "title": "7. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + + + "inrelto": { + "title": "8. What is co-participant's relationship to the subject?" + }, + "INRELTOX": { + "title": "8A Informant relationship, other – specify" + }, + "inlivwth": { + "title": "9. Does the co-participant live with the subject?" + }, + "inrely": { + "title": "10. Is there a question about the co-participant's reliability?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "inbirmo": { + "title": "1a. Co-participant's month of birth:" + }, + "inbiryr": { + "title": "1b. Co-participant's year of birth:" + }, + "insex": { + "title": "2. Co-participant's sex:" + }, + "inhisp": { + "title": "3a. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race? " + }, + "inrace": { + "title": "4. What does the co-participant report as his or her race?" + }, + "inrasec": { + "title": "5. What additional race does the co-participant report?" + }, + "inrater": { + "title": "6. What additional race, beyond those reported in questions 4 and 5, does the co-participant report?" + }, + "ineduc": { + "title": "7. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + + + "inrelto": { + "title": "8. What is co-participant's relationship to the subject?" + }, + "INRELTOX": { + "title": "8A Informant relationship, other – specify" + }, + "inlivwth": { + "title": "9. Does the co-participant live with the subject?" + }, + "inrely": { + "title": "10. Is there a question about the co-participant's reliability?" + } + }, + "boost_values": { + "patient": 1.0, + "inbirmo": 1.0, + "inbiryr": 1.0, + "insex": 1.0, + "inhisp": 1.0, + "inhispor": 1.0, + "inhispox": 1.0, + "inrace": 1.0, + "inracex": 1.0, + "inrasec": 1.0, + "inrasecx": 1.0, + "inrater": 1.0, + "inraterx": 1.0, + "ineduc": 1.0, + "inrelto": 1.0, + "INRELTOX": 1.0, + "inlivwth": 1.0, + "invisits": 1.0, + "incalls": 1.0, + "inrely": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a2v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a2v2.json b/src/encoded/schemas/ivp_a2v2.json new file mode 100644 index 0000000000..d49d27d3d0 --- /dev/null +++ b/src/encoded/schemas/ivp_a2v2.json @@ -0,0 +1,570 @@ +{ + "title": "NACC UNIFORM DATA SET (UDS) -INITIAL VISIT PACKET Form A2: Co-participant Demographics Link to NACC Coding Guidebook", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on co-participant's report. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A2. Check only one box per question, Link to NACC Coding Guidebook 'http://www.alz.washington.edu/NONMEMBER/UDS/DOCS/VER3/UDS3_ivp_guidebook.pdf'", + "comment": "Schema for submitting UDS_ivp_A2 form information.", + "id": "/profiles/ivp_a2v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + + "required": [ + "patient", + "adcid", + "visdate", + "visitnum", + "initials", + "inbirmo", + "inbiryr", + "insex", + "inhisp", + "inrace", + "inrasec", + "inrater", + "ineduc", + "inrelto", + "inlivwth", + "inrely" + ], + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "inbirmo": { + "title": "1a. Co-participant's month of birth:", + "description": "Date can be submitted as MM.((MM) 1-12, 99 = Unknown", + "type": "string", + "pattern": "^[0]?[1-9]|[1][0-2]|[99]$" + }, + "inbiryr": { + "title": "1b. Co-participant's year of birth:", + "description": "Date can be submitted as YYYY.((YYYY) 1875 to (current year minus 15), 9999 = Unknown)", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "insex": { + "title": "2. Co-participant's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "inhisp": { + "title": "3. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race? ", + "type": "string", + "description": "If '1 Yes', CONTINUE TO 3a", + "enum": [ + "0 No (If No, SKIP TO QUESTION 4)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 4)" + ] + }, + "inhispor": { + "title": "3a. If yes, what are the co-participant's reported origins?", + "description": "If Other (specify), CONTINUE TO 3a1", + "type": "string", + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other (specify)", + "99 Unknown" + ] + }, + "inhispox": { + "title": "3a1. Other (specify co-participant's Hispanic/Latino origins):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrace": { + "title": "4. What does the co-participant report as his or her race?", + "description": "If Other (specify), CONTINUE TO 4a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 other (specify)", + "99 Unknown" + ] + }, + "inracex": { + "title": "4a. Other (specify the co-participant's race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrasec": { + "title": "5. What additional race does the co-participant report?", + "description": "If Other (specify), CONTINUE TO 4a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "inrasecx": { + "title": "5a. Other (specify the co-participant's additional race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrater": { + "title": "6. What additional race, beyond those reported in questions 4 and 5, does the co-participant report?", + "description": "If Other (specify), CONTINUE TO 6a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "inraterx": { + "title": "6a. Other (specify the co-participant's race beyond those in questions 4 and 5):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "ineduc": { + "title": "7. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:", + "description": "High school/GED = 12; Bachelors degree = 16; Master’s degree = 18; Doctorate = 20,99 = Unknown.(0-36, 99=unknown)", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^3[0-6]$|99" + }, + + "inrelto": { + "title": "8. What is co-participant's relationship to the subject?", + "type": "string", + "enum": [ + "1 Spouse, partner, or companion (include ex-spouse, ex-partner, fiance(e), boyfriend, girlfriend)", + "2 Child (by blood or through marriage or adoption)", + "3 Sibling (by blood or through marriage or adoption)", + "4 Other relative (by blood or through marriage or adoption)", + "5 Friend, neighbor, or someone known through family, friends, work, or community (e.g., church)", + "6 Paid caregiver, health care provider, or clinician", + "7 Other" + ] + }, + "INRELTOX": { + "title": "8A Informant relationship, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + + }, + + "inlivwth": { + "title": "9. Does the co-participant live with the subject?", + "description": "If '0 No', CONTINUE TO 9a and 9b", + "type": "string", + "enum": [ + "0 No", + "1 Yes (If Yes, SKIP TO QUESTION 10)" + ] + }, + "invisits": { + "title": "9a. If no, approximate frequency of in-person visits?", + "type": "string", + "enum": [ + "1 Daily", + "2 At least three times per week", + "3 Weekly", + "4 At least three times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "incalls": { + "title": "9b. If no, approximate frequency of telephone contact?", + "type": "string", + "enum": [ + "1 Daily", + "2 At least three times per week", + "3 Weekly", + "4 At least three times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "inrely": { + "title": "10. Is there a question about the co-participant's reliability?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + }, + "allOf": [ + { + "oneOf": [ + { + "properties": { + "inhisp": { + "enum": [ + "1 Yes" + ] + }, + "inhispor": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "inhispox" + ] + }, + { + "properties": { + "inhisp": { + "enum": [ + "1 Yes" + ] + }, + "inhispor": { + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inhispox" + ] + } + }, + { + "properties": { + "inhisp": { + "enum": [ + "0 No (If No, SKIP TO QUESTION 4)", + "9 Unknown (If Unknown, SKIP TO QUESTION 4)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "inhispor" + ] + } + }, + { + "not": { + "required": [ + "inhispox" + ] + } + } + ] + } + ] + }, + { + "oneOf": [ + { + "properties": { + "inrace": { + "enum": [ + "50 other (specify)" + ] + } + }, + "required": [ + "inracex" + ] + }, + { + "properties": { + "inrace": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inracex" + ] + } + } + ] + }, + { + "oneOf": [ + { + "properties": { + "inrasec": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "inrasecx" + ] + }, + { + "properties": { + "inrasec": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "88 None Reported", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inrasecx" + ] + } + } + ] + }, + { + "oneOf": [ + { + "properties": { + "inrater": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "inraterx" + ] + }, + { + "properties": { + "inrater": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "88 None Reported", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inraterx" + ] + } + } + ] + }, + + { + "oneOf": [ + { + "properties": { + "inlivwth": { + "enum": [ + "0 No" + ] + } + }, + "required": [ + "invisits", + "incalls" + ] + }, + { + "properties": { + "inlivwth": { + "enum": [ + "1 Yes (If Yes, SKIP TO QUESTION 10)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "invisits" + ] + } + }, + { + "not": { + "required": [ + "incalls" + ] + } + } + ] + } + ] + } + ], + "facets": { + "status": { + "title": "Status" + }, + "inbirmo": { + "title": "1a. Co-participant's month of birth:" + }, + "inbiryr": { + "title": "1b. Co-participant's year of birth:" + }, + "insex": { + "title": "2. Co-participant's sex:" + }, + "inhisp": { + "title": "3. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race? " + }, + "inrace": { + "title": "4. What does the co-participant report as his or her race?" + }, + "inrasec": { + "title": "5. What additional race does the co-participant report?" + }, + "inrater": { + "title": "6. What additional race, beyond those reported in questions 4 and 5, does the co-participant report?" + }, + "ineduc": { + "title": "7. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + + + "inrelto": { + "title": "8. What is co-participant's relationship to the subject?" + }, + "INRELTOX": { + "title": "8A Informant relationship, other – specify" + }, + "inlivwth": { + "title": "9. Does the co-participant live with the subject?" + }, + "inrely": { + "title": "10. Is there a question about the co-participant's reliability?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "inbirmo": { + "title": "1a. Co-participant's month of birth:" + }, + "inbiryr": { + "title": "1b. Co-participant's year of birth:" + }, + "insex": { + "title": "2. Co-participant's sex:" + }, + "inhisp": { + "title": "3. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race? " + }, + "inrace": { + "title": "4. What does the co-participant report as his or her race?" + }, + "inrasec": { + "title": "5. What additional race does the co-participant report?" + }, + "inrater": { + "title": "6. What additional race, beyond those reported in questions 4 and 5, does the co-participant report?" + }, + "ineduc": { + "title": "7. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + + + "inrelto": { + "title": "8. What is co-participant's relationship to the subject?" + }, + "INRELTOX": { + "title": "8A Informant relationship, other – specify" + }, + "inlivwth": { + "title": "9. Does the co-participant live with the subject?" + }, + "inrely": { + "title": "10. Is there a question about the co-participant's reliability?" + } + }, + "boost_values": { + "patient": 1.0, + "inbirmo": 1.0, + "inbiryr": 1.0, + "insex": 1.0, + "inhisp": 1.0, + "inhispor": 1.0, + "inhispox": 1.0, + "inrace": 1.0, + "inracex": 1.0, + "inrasec": 1.0, + "inrasecx": 1.0, + "inrater": 1.0, + "inraterx": 1.0, + "ineduc": 1.0, + "inrelto": 1.0, + "INRELTOX": 1.0, + "inlivwth": 1.0, + "invisits": 1.0, + "incalls": 1.0, + "inrely": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a2v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a2v3.json b/src/encoded/schemas/ivp_a2v3.json new file mode 100644 index 0000000000..9afadcebae --- /dev/null +++ b/src/encoded/schemas/ivp_a2v3.json @@ -0,0 +1,601 @@ +{ + "title": "NACC UNIFORM DATA SET (UDS) -INITIAL VISIT PACKET Form A2: Co-participant Demographics Link to NACC Coding Guidebook", + "description": "INSTRUCTIONS: This form is to be completed by intake interviewer based on co-participant's report. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A2. Check only one box per question, Link to NACC Coding Guidebook 'http://www.alz.washington.edu/NONMEMBER/UDS/DOCS/VER3/UDS3_ivp_guidebook.pdf'", + "comment": "Schema for submitting UDS_ivp_A2 form information.", + "id": "/profiles/ivp_a2v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "inbirmo": { + "title": "1a. Co-participant's month of birth:", + "description": "Date can be submitted as MM.((MM) 1-12, 99 = Unknown)", + "type": "string", + "pattern": "^[0]?[1-9]|[1][0-2]|[99]$" + }, + "inbiryr": { + "title": "1b. Co-participant's year of birth:", + "description": "Date can be submitted as YYYY.((YYYY) 1875 to (current year minus 15), 9999 = Unknown)", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "insex": { + "title": "2. Co-participant's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "inhisp": { + "title": "3. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race? ", + "type": "string", + "description": "If '1 Yes', CONTINUE TO 3a", + "enum": [ + "0 No (If No, SKIP TO QUESTION 4)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 4)" + ] + }, + "inhispor": { + "title": "3a. If yes, what are the co-participant's reported origins?", + "description": "If Other (specify), CONTINUE TO 3a1", + "type": "string", + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other (specify)", + "99 Unknown" + ] + }, + "inhispox": { + "title": "3a1. Other (specify co-participant's Hispanic/Latino origins):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrace": { + "title": "4. What does the co-participant report as his or her race?", + "description": "If Other (specify), CONTINUE TO 4a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 other (specify)", + "99 Unknown" + ] + }, + "inracex": { + "title": "4a. Other (specify the co-participant's race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrasec": { + "title": "5. What additional race does the co-participant report?", + "description": "If Other (specify), CONTINUE TO 4a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "inrasecx": { + "title": "5a. Other (specify the co-participant's additional race):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "inrater": { + "title": "6. What additional race, beyond those reported in questions 4 and 5, does the co-participant report?", + "description": "If Other (specify), CONTINUE TO 6a", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "inraterx": { + "title": "6a. Other (specify the co-participant's race beyond those in questions 4 and 5):", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%))", + "type": "string" + }, + "ineduc": { + "title": "7. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:", + "description": "12 = High school or GED,16 = Bachelor's degree,18 = Master's degree;20 = Doctorate, >20 = Other,99 = Unknown(0-36, 99=unknown).If '21 >20', CONTINUE TO 'Years of education' and 'Type of degrees (eg. MPH, MBA, etc.)'.", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4", + "5 5", + "6 6", + "7 7", + "8 8", + "9 9", + "10 10", + "11 11", + "12 12", + "13 13", + "14 14", + "15 15", + "16 16", + "17 17", + "18 18", + "19 19", + "20 20", + "21 >20", + "99 99" + ] + }, + "ineduc_more_than_20": { + "title": "Years of education", + "description": "Years of education if more than 20 years", + "comment":"Redcap field", + "type": "string", + "enum": [ + "1 21", + "2 22", + "3 23", + "4 24", + "5 25", + "6 26", + "7 27", + "8 28", + "9 29", + "10 30", + "11 31", + "12 32", + "13 33", + "14 34", + "15 35", + "16 36" + ] + }, + "ineduc_type": { + "title": "Type of degrees (eg. MPH, MBA, etc.)", + "comment":"Redcap field", + "type": "string" + }, + + "inrelto": { + "title": "8. What is co-participant's relationship to the subject?", + "type": "string", + "enum": [ + "1 Spouse, partner, or companion (include ex-spouse, ex-partner, fiance(e), boyfriend, girlfriend)", + "2 Child (by blood or through marriage or adoption)", + "3 Sibling (by blood or through marriage or adoption)", + "4 Other relative (by blood or through marriage or adoption)", + "5 Friend, neighbor, or someone known through family, friends, work, or community (e.g., church)", + "6 Paid caregiver, health care provider, or clinician" + ] + }, + "inknown": { + "title": "8a. How long has the co-participant known the subject?", + "description": "((years) 0 - 120, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9][0-9]?|[1][0-1][0-9]|[1][2][0]|999$" + }, + "inlivwth": { + "title": "9. Does the co-participant live with the subject?", + "description": "If '0 No', CONTINUE TO 9a and 9b", + "type": "string", + "enum": [ + "0 No", + "1 Yes (If Yes, SKIP TO QUESTION 10)" + ] + }, + "invisits": { + "title": "9a. If no, approximate frequency of in-person visits?", + "type": "string", + "enum": [ + "1 Daily", + "2 At least three times per week", + "3 Weekly", + "4 At least three times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "incalls": { + "title": "9b. If no, approximate frequency of telephone contact?", + "type": "string", + "enum": [ + "1 Daily", + "2 At least three times per week", + "3 Weekly", + "4 At least three times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "inrely": { + "title": "10. Is there a question about the co-participant's reliability?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + }, + "allOf": [ + { + "oneOf": [ + { + "properties": { + "inhisp": { + "enum": [ + "1 Yes" + ] + }, + "inhispor": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "inhispox" + ] + }, + { + "properties": { + "inhisp": { + "enum": [ + "1 Yes" + ] + }, + "inhispor": { + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inhispox" + ] + } + }, + { + "properties": { + "inhisp": { + "enum": [ + "0 No (If No, SKIP TO QUESTION 4)", + "9 Unknown (If Unknown, SKIP TO QUESTION 4)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "inhispor" + ] + } + }, + { + "not": { + "required": [ + "inhispox" + ] + } + } + ] + } + ] + }, + { + "oneOf": [ + { + "properties": { + "inrace": { + "enum": [ + "50 other (specify)" + ] + } + }, + "required": [ + "inracex" + ] + }, + { + "properties": { + "inrace": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inracex" + ] + } + } + ] + }, + { + "oneOf": [ + { + "properties": { + "inrasec": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "inrasecx" + ] + }, + { + "properties": { + "inrasec": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "88 None Reported", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inrasecx" + ] + } + } + ] + }, + { + "oneOf": [ + { + "properties": { + "inrater": { + "enum": [ + "50 Other (specify)" + ] + } + }, + "required": [ + "inraterx" + ] + }, + { + "properties": { + "inrater": { + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "88 None Reported", + "99 Unknown" + ] + } + }, + "not": { + "required": [ + "inraterx" + ] + } + } + ] + }, + + { + "oneOf": [ + { + "properties": { + "inlivwth": { + "enum": [ + "0 No" + ] + } + }, + "required": [ + "invisits", + "incalls" + ] + }, + { + "properties": { + "inlivwth": { + "enum": [ + "1 Yes (If Yes, SKIP TO QUESTION 10)" + ] + } + }, + "allOf": [ + { + "not": { + "required": [ + "invisits" + ] + } + }, + { + "not": { + "required": [ + "incalls" + ] + } + } + ] + } + ] + } + ], + "facets": { + "status": { + "title": "Status" + }, + "inbirmo": { + "title": "1a. Co-participant's month of birth:" + }, + "inbiryr": { + "title": "1b. Co-participant's year of birth:" + }, + "insex": { + "title": "2. Co-participant's sex:" + }, + "inhisp": { + "title": "3. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race? " + }, + "inrace": { + "title": "4. What does the co-participant report as his or her race?" + }, + "inrasec": { + "title": "5. What additional race does the co-participant report?" + }, + "inrater": { + "title": "6. What additional race, beyond those reported in questions 4 and 5, does the co-participant report?" + }, + "ineduc": { + "title": "7. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + "inrelto": { + "title": "8. What is co-participant's relationship to the subject?" + }, + "inknown": { + "title": "8a. How long has the co-participant known the subject?" + }, + "inlivwth": { + "title": "9. Does the co-participant live with the subject?" + }, + "inrely": { + "title": "10. Is there a question about the co-participant's reliability?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "inbirmo": { + "title": "1a. Co-participant's month of birth:" + }, + "inbiryr": { + "title": "1b. Co-participant's year of birth:" + }, + "insex": { + "title": "2. Co-participant's sex:" + }, + "inhisp": { + "title": "3. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race? " + }, + "inrace": { + "title": "4. What does the co-participant report as his or her race?" + }, + "inrasec": { + "title": "5. What additional race does the co-participant report?" + }, + "inrater": { + "title": "6. What additional race, beyond those reported in questions 4 and 5, does the co-participant report?" + }, + "ineduc": { + "title": "7. Co-participant's years of education -- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed:" + }, + "inrelto": { + "title": "8. What is co-participant's relationship to the subject?" + }, + "inknown": { + "title": "8a. How long has the co-participant known the subject?" + }, + "inlivwth": { + "title": "9. Does the co-participant live with the subject?" + }, + "inrely": { + "title": "10. Is there a question about the co-participant's reliability?" + } + }, + "boost_values": { + "patient":1.0, + "inbirmo": 1.0, + "inbiryr": 1.0, + "insex": 1.0, + "inhisp": 1.0, + "inhispor": 1.0, + "inhispox": 1.0, + "inrace": 1.0, + "inracex": 1.0, + "inrasec": 1.0, + "inrasecx": 1.0, + "inrater": 1.0, + "inraterx": 1.0, + "ineduc": 1.0, + "ineduc_more_than_20": 1.0, + "inrelto": 1.0, + "inknown": 1.0, + "inlivwth": 1.0, + "invisits": 1.0, + "incalls": 1.0, + "inrely": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a2v3.md" +} diff --git a/src/encoded/schemas/ivp_a3.json b/src/encoded/schemas/ivp_a3.json new file mode 100644 index 0000000000..0d630bd308 --- /dev/null +++ b/src/encoded/schemas/ivp_a3.json @@ -0,0 +1,4395 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM A3: SUBJECT FAMILY HISTORY", + "description": "INSTRUCTIONS: This form is to be completed by a clinician with experience in evaluating patients with neurological problems and psychiatric conditions. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A3. Link to NACC Coding Guidebook", + "id": "/profiles/uds_ivp_a3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "afffamm", + "fadmut", + "fadmuso", + "fftdmut", + "fftdmuso", + "fothmut", + "fothmuso", + "note_a3_1", + "note_a3_2" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "afffamm": { + "title": "1. Are there affected first-degree relatives (biological parents, full siblings, or biological children)?", + "description": "\"Affected\" = having dementia or one of the non-normal diagnoses listed in Appendix 1 on page 5", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 unknown" + ] + }, + "fadmut": { + "title": "2a. In this family, is there evidence for an AD mutation? If Yes, select predominant mutation.", + "description": "NOTE: APOE Should not be reported here.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 3a)", + "1 Yes, APP", + "2 Yes, PS-1 (PSEN-1)", + "3 Yes, PS-2 (PSEN-2)", + "8 Yes, Other (specify)", + "9 Unknown whether mutation exists (SKIP TO QUESTION 3a)" + ] + }, + "fadmutx": { + "title": "2a1. Other (specify predominant AD mutation in this family):", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs(%).)", + "type": "string" + }, + "fadmuso": { + "title": "2b. Source of evidence for AD mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (SPECIFY):", + "9 Unknown" + ] + }, + "fadmusox": { + "title": "2b1. Other (specify the other source of evidence -AD mutation in this family)", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs (%).)", + "type": "string" + }, + "fftdmut": { + "title": "3a. In this family, is there evidence for an FTLD mutation? If Yes, select predominant mutation.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 4a)", + "1 Yes, MAPT", + "2 Yes, PGRN", + "3 Yes, C9orf72", + "4 Yes, FUS", + "8 Yes, Other (SPECIFY)", + "9 Unknown whether mutation exists (SKIP TO QUESTION 4a)" + ] + }, + "fftdmutx": { + "title": "3a1. Other (specify the predominant FTLD mutation in this family)", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs (%).)", + "type": "string" + }, + "fftdmuso": { + "title": "3b. Source of evidence for FTLD mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (SPECIFY)", + "9 Unknown" + ] + }, + "fftdmusx": { + "title": "3b1. Other (Specify the other source of evidence -FTLD mutation in this family)", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs (%).)", + "type": "string" + }, + "fothmut": { + "title": "4a. In this family, is there evidence for a mutation other than an AD or FTLD mutation? (If No or Unknown, SKIP TO QUESTION 5a)", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 5a)", + "1 Yes (SPECIFY)", + "9 Unknown (SKIP TO QUESTION 5a)" + ] + }, + "fothmutx": { + "title": "4a1. Other (specify the other mutation in this family)", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs (%).)", + "type": "string" + }, + "fothmuso": { + "title": "4b. Source of evidence for other mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (SPECIFY)", + "9 Unknown" + ] + }, + "fothmusx": { + "title": "4b1. Other (Specify the other source of evidence - other mutation in this family)", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs (%).)", + "type": "string" + }, + "note_a3_1": { + "title": "BIOLOGICAL PARENTS:", + "description": "Provide information on biological parents below. If birth year is unknown, please provide an approximate year on the Initial Visit Form A3 and ensure that it is consistently reported on any Follow-up Visit Form A as applicable. If it is impossible for the subject and co-participant to estimate the birth year, enter 9999=Unknown. For any biological parent with a neurological or psychiatric condition, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all available evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. For a biological parent with no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. pdf below contains codes for Method of Evaluation", + "type": "object", + "properties": { + "mother": { + "title": "5a. MOTHER:", + "type": "object", + "properties": { + "mommob": { + "title": "5a1. Mother - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "momyob": { + "title": "5a2. Mother - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "momdage": { + "title": "5a3. Mother - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "momneur": { + "title": "5a4. Mother - Primary neurological problem/psychiatric condition*", + "description": "(*CODES for neurological problems and psychiatric conditions)", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "momprdx": { + "title": "5a5. Mother - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "mommoe": { + "title": "5a6. Mother - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "momageo": { + "title": "5a7. Mother - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "father": { + "title": "5b. FATHER:", + "type": "object", + "properties": { + "dadmob": { + "title": "5b1. Father - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "dadyob": { + "title": "5b2. Father - Birth year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "daddage": { + "title": "5b3. Father - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "dadneur": { + "title": "5b4. Father - Primary neurological problem/psychiatric condition*", + "description": "(*CODES for neurological problems and psychiatric conditions)", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "dadprdx": { + "title": "5b5. Father - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "dadmoe": { + "title": "5b6. Father - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "dadageo": { + "title": "5b7. Father - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + } + } + }, + "note_a3_2": { + "title": "Year of birth for full siblings and biological children:", + "description": "If birth year is unknown, please provide an approximate year on UDS Initial Visit Form A3 and UDS Follow-up Visit Form A3 so that the sibling/child with unknown birth year ends up in correct birth order relative to the other siblings/children.Example: A subject is the oldest of three children. The subject was born in 1940 and the middle sibling in 1943; the youngest sibling's birth year is unknown. An approximate birth year of 1944 or later should be assigned to the youngest sibling.Use that same birth year on FTLD Module Form A3a, if applicable, and across all UDS visits so that any new information on a particular sibling or child can be linked to previously submitted information. If it is impossible for the subject and co-participant to estimate year of birth, enter 9999=Unknown.", + "type": "object", + "properties": { + "full_siblings": { + "title": "FULL SIBLINGS:", + "type": "object", + "properties": { + "sibs": { + "title": "6. How many full siblings does the subject have?", + "description": "If subject has no full siblings, SKIP TO QUESTION 7; otherwise provide information on all full siblings below.For any full sibling with a neurological or psychiatric condition, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all avilable evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. For a siblng with no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.( 77 = Adopted, unknown)", + "type": "string" + }, + "sib1": { + "title": "Sibling 1", + "type": "object", + "properties": { + "sib1mob": { + "title": "6a1. Sibling 1 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib1yob": { + "title": "6a2. Sibling 1 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib1agd": { + "title": "6a3. Sibling 1 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib1neu": { + "title": "6a4. Sibling 1 - Primary neurological problem/psychiatric condition*", + "description": "(*CODES for neurological problems and psychiatric conditions)", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib1pdx": { + "title": "6a5. Sibling 1 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib1moe": { + "title": "6a6. Sibling 1 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib1ago": { + "title": "6a7. Sibling 1 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib2": { + "title": "Sibling 2", + "type": "object", + "properties": { + "sib2mob": { + "title": "6b1. Sibling 2 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib2yob": { + "title": "6b2. Sibling 2 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib2agd": { + "title": "6b3. Sibling 2 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib2neu": { + "title": "6b4. Sibling 2 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib2pdx": { + "title": "6b5. Sibling 2 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib2moe": { + "title": "6b6. Sibling 2 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib2ago": { + "title": "6b7. Sibling 2 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib3": { + "title": "Sibling 3", + "type": "object", + "properties": { + "sib3mob": { + "title": "6c1. Sibling 3 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib3yob": { + "title": "6c2. Sibling 3 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib3agd": { + "title": "6c3. Sibling 3 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib3neu": { + "title": "6c4. Sibling 3 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib3pdx": { + "title": "6c5. Sibling 3 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib3moe": { + "title": "6c6. Sibling 3 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib3ago": { + "title": "6c7. Sibling 3 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib4": { + "title": "Sibling 4", + "type": "object", + "properties": { + "sib4mob": { + "title": "6d1. Sibling 4 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib4yob": { + "title": "6d3. Sibling 4 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib4agd": { + "title": "6d3. Sibling 4 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib4neu": { + "title": "6d4. Sibling 4 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib4pdx": { + "title": "6d5. Sibling 4 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib4moe": { + "title": "6d6. Sibling 4 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib4ago": { + "title": "6d7. Sibling 4 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib5": { + "title": "Sibling 5", + "type": "object", + "properties": { + "sib5mob": { + "title": "6e1. Sibling 5 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib5yob": { + "title": "6e2. Sibling 5 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib5agd": { + "title": "6e3. Sibling 5 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib5neu": { + "title": "6e4. Sibling 5 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib5pdx": { + "title": "6e5. Sibling 5 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib5moe": { + "title": "6e6. Sibling 5 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib5ago": { + "title": "6e7. Sibling 5 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib6": { + "title": "Sibling 6", + "type": "object", + "properties": { + "sib6mob": { + "title": "6f1. Sibling 6 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib6yob": { + "title": "6f2. sibling 6 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib6agd": { + "title": "6f3. Sibling 6 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib6neu": { + "title": "6f4. Sibling 6 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib6pdx": { + "title": "6f5. Sibling 6 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib6moe": { + "title": "6f6. Sibling 6 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib6ago": { + "title": "6f7. Sibling 6 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib7": { + "title": "Sibling 7", + "type": "object", + "properties": { + "sib7mob": { + "title": "6g1. Sibling 7 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib7yob": { + "title": "6g2. Sibling 7 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib7agd": { + "title": "6g3. Sibling 7 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib7neu": { + "title": "6g4. Sibling 7 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib7pdx": { + "title": "6g5. Sibling 7 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib7moe": { + "title": "6g6. Sibling 7 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib7ago": { + "title": "6g7. Sibling 7 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib8": { + "title": "Sibling 8", + "type": "object", + "properties": { + "sib8mob": { + "title": "6h1. Sibling 8 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib8yob": { + "title": "6h2. Sibling 8 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib8agd": { + "title": "6h3. Sibling 8 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib8neu": { + "title": "6h4. Sibling 8 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib8pdx": { + "title": "6h5. Sibling 8 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib8moe": { + "title": "6h6. Sibling 8 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib8ago": { + "title": "6h7. Sibling 8 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib9": { + "title": "Sibling 9", + "type": "object", + "properties": { + "sib9mob": { + "title": "6i1. Sibling 9 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib9yob": { + "title": "6i2. Sibling 9 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib9agd": { + "title": "6i3. Sibling 9 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib9neu": { + "title": "6i4. Sibling 9 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib9pdx": { + "title": "6i5. Sibling 9 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib9moe": { + "title": "6i6. Sibling 9 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib9ago": { + "title": "6i7. Sibling 9 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib10": { + "title": "Sibling 10", + "type": "object", + "properties": { + "sib10mob": { + "title": "6j1. Sibling 10 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib10yob": { + "title": "6j2. Sibling 10 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib10agd": { + "title": "6j3. Sibling 10 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib10neu": { + "title": "6j4. Sibling 10 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib10pdx": { + "title": "6j5. Sibling 10 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib10moe": { + "title": "6j6. Sibling 10 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib10ago": { + "title": "6j7. Sibling 10 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib11": { + "title": "Sibling 11", + "type": "object", + "properties": { + "sib11mob": { + "title": "6k1. Sibling 11 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib11yob": { + "title": "6k2. Sibling 11 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib11agd": { + "title": "6k3. Sibling 11 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib11neu": { + "title": "6k4. Sibling 11 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib11pdx": { + "title": "6k5. Sibling 11 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib11moe": { + "title": "6k6. Sibling 11 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib11ago": { + "title": "6k7. Sibling 11 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib12": { + "title": "Sibling 12", + "type": "object", + "properties": { + "sib12mob": { + "title": "6l1. Sibling 12 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib12yob": { + "title": "6l2. Sibling 12 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib12agd": { + "title": "6l3. Sibling 12 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib12neu": { + "title": "6l4. Sibling 12 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib12pdx": { + "title": "6l5. Sibling 12 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib12moe": { + "title": "6l6. Sibling 12 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib12ago": { + "title": "6l7. Sibling 12 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib13": { + "title": "Sibling 13", + "type": "object", + "properties": { + "sib13mob": { + "title": "6m1. Sibling 13 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib13yob": { + "title": "6m2. Sibling 13 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib13agd": { + "title": "6m3. Sibling 13 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib13neu": { + "title": "6m4. Sibling 13 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib13pdx": { + "title": "6m5. Sibling 13 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib13moe": { + "title": "6m6. Sibling 13 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib13ago": { + "title": "6m7. Sibling 13 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib14": { + "title": "Sibling 14", + "type": "object", + "properties": { + "sib14mob": { + "title": "6n1. Sibling 14 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib14yob": { + "title": "6n2. Sibling 14 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib14agd": { + "title": "6n3. Sibling 14 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib14neu": { + "title": "6n4. Sibling 14 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib14pdx": { + "title": "6n5. Sibling 14 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib14moe": { + "title": "6n6. Sibling 14 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib14ago": { + "title": "6n7. Sibling 14 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib15": { + "title": "Sibling 15", + "type": "object", + "properties": { + "sib15mob": { + "title": "6o1. Sibling 15 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib15yob": { + "title": "6o2. Sibling 15 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib15agd": { + "title": "6o3. Sibling 15 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib15neu": { + "title": "6o4. Sibling 15 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib15pdx": { + "title": "6o5. Sibling 15 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib15moe": { + "title": "6o6. Sibling 15 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib15ago": { + "title": "6o7. Sibling 15 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib16": { + "title": "Sibling 16", + "type": "object", + "properties": { + "sib16mob": { + "title": "6p1. Sibling 16 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib16yob": { + "title": "6p2. Sibling 16 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib16agd": { + "title": "6p3. Sibling 16 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib16neu": { + "title": "6p4. Sibling 16 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib16pdx": { + "title": "6p5. Sibling 16 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib16moe": { + "title": "6p6. Sibling 16 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib16ago": { + "title": "6p7. Sibling 16 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib17": { + "title": "Sibling 17", + "type": "object", + "properties": { + "sib17mob": { + "title": "6q1. Sibling 17 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib17yob": { + "title": "6q2. Sibling 17 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib17agd": { + "title": "6q3. Sibling 17 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib17neu": { + "title": "6q4. Sibling 17 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib17pdx": { + "title": "6q5. Sibling 17 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib17moe": { + "title": "6q6. Sibling 17 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib17ago": { + "title": "6q7. Sibling 17 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib18": { + "title": "Sibling 18", + "type": "object", + "properties": { + "sib18mob": { + "title": "6r1. Sibling 18 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib18yob": { + "title": "6r2. Sibling 18 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib18agd": { + "title": "6r3. Sibling 18 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib18neu": { + "title": "6r4. Sibling 18 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib18pdx": { + "title": "6r5. Sibling 18 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib18moe": { + "title": "6r6. Sibling 18 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib18ago": { + "title": "6r7. Sibling 18 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib19": { + "title": "Sibling 19", + "type": "object", + "properties": { + "sib19mob": { + "title": "6s1. Sibling 19 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib19yob": { + "title": "6s2. Sibling 19 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib19agd": { + "title": "6s3. Sibling 19 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib19neu": { + "title": "6s4. Sibling 19 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib19pdx": { + "title": "6s5. Sibling 19 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib19moe": { + "title": "6s6. Sibling 19 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib19ago": { + "title": "6s7. Sibling 19 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib20": { + "title": "Sibling 20", + "type": "object", + "properties": { + "sib20mob": { + "title": "6t1. Sibling 20 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib20yob": { + "title": "6t2. Sibling 20 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib20agd": { + "title": "6t3. Sibling 20 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib20neu": { + "title": "6t4. Sibling 20 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib20pdx": { + "title": "6t5. Sibling 20 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib20moe": { + "title": "6t6. Sibling 20 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib20ago": { + "title": "6t7. Sibling 20 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + } + } + }, + "biological_children": { + "title": "BIOLOGICAL CHILDREN:", + "type": "object", + "properties": { + "kids": { + "title": "7. How many biological children does the subject have?", + "description": "If subject has no biological children, END FORM HERE; otherwise provide information on all biological children below.For any biological child with a neurological or psychiatric condition, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all available evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. For a biological child with no neurological or psychiatric problem, enter 8=N/A - no nuerological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.\n(99 = Unknown)", + "type": "string" + }, + "child1": { + "title": "Child 1", + "type": "object", + "properties": { + "kid1mob": { + "title": "7a1. Child 1 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid1yob": { + "title": "7a2. Child 1 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid1agd": { + "title": "7a3. Child 1 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid1neu": { + "title": "7a4. Child 1 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid1pdx": { + "title": "7a5. Child 1 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid1moe": { + "title": "7a6. Child 1 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid1ago": { + "title": "7a7. Child 1 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child2": { + "title": "Child 2", + "type": "object", + "properties": { + "kid2mob": { + "title": "7b1. Child 2 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid2yob": { + "title": "7b1. Child 2 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid2agd": { + "title": "7b3. Child 2 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid2neu": { + "title": "7b4. Child 2 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid2pdx": { + "title": "7b5. Child 2 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid2moe": { + "title": "7b6. Child 2 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid2ago": { + "title": "7b7. Child 2 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child3": { + "title": "Child 3", + "type": "object", + "properties": { + "kid3mob": { + "title": "7c1. Child 3 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid3yob": { + "title": "7c1. Child 3 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid3agd": { + "title": "7c3. Child 3 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid3neu": { + "title": "7c4. Child 3 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid3pdx": { + "title": "7c5. Child 3 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid3moe": { + "title": "7c6. Child 3 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid3ago": { + "title": "7c7. Child 3 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child4": { + "title": "Child 4", + "type": "object", + "properties": { + "kid4mob": { + "title": "7d1. Child 4 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid4yob": { + "title": "7d1. Child 4 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid4agd": { + "title": "7d3. Child 4 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid4neu": { + "title": "7d4. Child 4 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid4pdx": { + "title": "7d5. Child 4 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid4moe": { + "title": "7d6. Child 4 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid4ago": { + "title": "7d7. Child 4 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child5": { + "title": "Child 5", + "type": "object", + "properties": { + "kid5mob": { + "title": "7e1. Child 5 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid5yob": { + "title": "7e1. Child 5 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid5agd": { + "title": "7e3. Child 5 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid5neu": { + "title": "7e4. Child 5 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid5pdx": { + "title": "7e5. Child 5 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid5moe": { + "title": "7e6. Child 5 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid5ago": { + "title": "7e7. Child 5 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child6": { + "title": "Child 6", + "type": "object", + "properties": { + "kid6mob": { + "title": "7f1. Child 6 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid6yob": { + "title": "7f1. Child 6 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid6agd": { + "title": "7f3. Child 6 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid6neu": { + "title": "7f4. Child 6 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid6pdx": { + "title": "7f5. Child 6 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid6moe": { + "title": "7f6. Child 6 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid6ago": { + "title": "7f7. Child 6 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child7": { + "title": "Child 7", + "type": "object", + "properties": { + "kid7mob": { + "title": "7g1. Child 7 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid7yob": { + "title": "7g1. Child 7 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid7agd": { + "title": "7g3. Child 7 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid7neu": { + "title": "7g4. Child 7 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid7pdx": { + "title": "7g5. Child 7 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid7moe": { + "title": "7g6. Child 7 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid7ago": { + "title": "7g7. Child 7 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child8": { + "title": "Child 8", + "type": "object", + "properties": { + "kid8mob": { + "title": "7h1. Child 8 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid8yob": { + "title": "7h1. Child 8 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid8agd": { + "title": "7h3. Child 8 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid8neu": { + "title": "7h4. Child 8 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid8pdx": { + "title": "7h5. Child 8 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid8moe": { + "title": "7h6. Child 8 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid8ago": { + "title": "7h7. Child 8 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child9": { + "title": "Child 9", + "type": "object", + "properties": { + "kid9mob": { + "title": "7i1. Child 9 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid9yob": { + "title": "7i1. Child 9 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid9agd": { + "title": "7i3. Child 9 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid9neu": { + "title": "7i4. Child 9 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid9pdx": { + "title": "7i5. Child 9 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid9moe": { + "title": "7i6. Child 9 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid9ago": { + "title": "7i7. Child 9 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child10": { + "title": "Child 10", + "type": "object", + "properties": { + "kid10mob": { + "title": "7j1. Child 10 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid10yob": { + "title": "7j2. Child 10 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid10agd": { + "title": "7j3. Child 10 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid10neu": { + "title": "7j4. Child 10 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid10pdx": { + "title": "7j5. Child 10 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid10moe": { + "title": "7j6. Child 10 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid10ago": { + "title": "7j7. Child 10 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child11": { + "title": "Child 11", + "type": "object", + "properties": { + "kid11mob": { + "title": "7k1. Child 11 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid11yob": { + "title": "7k1. Child 11 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid11agd": { + "title": "7k3. Child 11 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid11neu": { + "title": "7k4. Child 11 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid11pdx": { + "title": "7k5. Child 11 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid11moe": { + "title": "7k6. Child 11 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid11ago": { + "title": "7k7. Child 11 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child12": { + "title": "Child 12", + "type": "object", + "properties": { + "kid12mob": { + "title": "7l1. Child 12 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid12yob": { + "title": "7l1. Child 12 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid12agd": { + "title": "7l3. Child 12 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid12neu": { + "title": "7l4. Child 12 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid12pdx": { + "title": "7l5. Child 12 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid12moe": { + "title": "7l6. Child 12 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid12ago": { + "title": "7l7. Child 12 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child13": { + "title": "Child 13", + "type": "object", + "properties": { + "kid13mob": { + "title": "7m1. Child 13 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid13yob": { + "title": "7m1. Child 13 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid13agd": { + "title": "7m3. Child 13 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid13neu": { + "title": "7m4. Child 13 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid13pdx": { + "title": "7m5. Child 13 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid13moe": { + "title": "7m6. Child 13 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid13ago": { + "title": "7m7. Child 13 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child14": { + "title": "Child 14", + "type": "object", + "properties": { + "kid14mob": { + "title": "7n1. Child 14 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid14yob": { + "title": "7n1. Child 14 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid14agd": { + "title": "7n3. Child 14 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid14neu": { + "title": "7n4. Child 14 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid14pdx": { + "title": "7n5. Child 14 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid14moe": { + "title": "7n6. Child 14 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid14ago": { + "title": "7n7. Child 14 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child15": { + "title": "Child 15", + "type": "object", + "properties": { + "kid15mob": { + "title": "7o1. Child 15 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid15yob": { + "title": "7o1. Child 15 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid15agd": { + "title": "7o3. Child 15 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid15neu": { + "title": "7o4. Child 15 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid15pdx": { + "title": "7o5. Child 15 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid15moe": { + "title": "7o6. Child 15 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid15ago": { + "title": "7o7. Child 15 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + } + } + } + } + } + }, + + "boost_values": { + "patient": 1.0, + "afffamm": 1.0, + "fadmut": 1.0, + "fadmutx": 1.0, + "fadmuso": 1.0, + "fadmusox": 1.0, + "fftdmut": 1.0, + "fftdmutx": 1.0, + "fftdmuso": 1.0, + "fftdmusx": 1.0, + "fothmut": 1.0, + "fothmutx": 1.0, + "fothmuso": 1.0, + "fothmusx": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a3v1.json b/src/encoded/schemas/ivp_a3v1.json new file mode 100644 index 0000000000..8c4b8e7aba --- /dev/null +++ b/src/encoded/schemas/ivp_a3v1.json @@ -0,0 +1,771 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet, Form A3: Subject Family History", + "description": "NOTE: This form is to be completed by intake interviewer per \nsubject/informant report.For additional clarification and examples,\nsee UDS Coding Guidebook pages 15–18. Check only one box per question.\n\nFor the following questions:\nDementia refers to progressive loss of memory and cognition, and is often described as senility, dementia,\nAlzheimer’s Disease, hardening of the arteries, or other causes that compromised the subject’s social or\noccupational functioning and from which they did not recover.\nAge at onset refers to the age at which dementia symptoms began, not the age at which the diagnosis was made.\nPlease consider blood relatives only.", + "id": "/profiles/ivp_a3v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "parents": { + "title": "Parents", + "type": "object", + "properties": { + "MOMDEM": { + "title": "1 Did the subject’s mother have dementia (as defined on form), as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOMONSET": { + "title": "1A If the subject’s mother had dementia, indicate the age at which she developed dementia symptoms (age at onset, as defined on form).", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "MOMAGE": { + "title": "1B If the subject’s mother has dementia and is living, indicate her current age.", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "MOMDAGE": { + "title": "1C If the subject’s mother had dementia and is deceased, indicate her age at death.", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "DADDEM": { + "title": "2 Did the subject’s father have dementia (as defined on form), as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "DADONSET": { + "title": "2A If the subject’s father had dementia, indicate the age at which he developed dementia symptoms (age at onset, as defined on form).", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "DADAGE": { + "title": "2B If the subject’s father has dementia and is living, indicate his current age.", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "DADDAGE": { + "title": "2C If the subject’s father had dementia and is deceased, indicate his age at death.", + "description": "25 – 110,888 = NA,999 = Unknown", + "type": "string", + "pattern": "^2[5-9]$|^[3-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + } + } + }, + "siblings": { + "title": "SIBLINGS", + "type": "object", + "properties": { + "TWIN": { + "title": "3 Is the subject a twin?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "TWINTYPE": { + "title": "3A If the subject is a twin, indicate type.", + "type": "string", + "enum": [ + "1 Monozygotic (i.e., identical)", + "2 Dizygotic (i.e., fraternal)", + "8 N/A", + "9 Unknown" + ] + }, + "SIBS": { + "title": "4 How many full siblings did the subject have?", + "description": "0 – 25, 99 = Unknown", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^99$" + }, + "SIBSDEM": { + "title": "5 How many of these siblings had dementia (as defined on form), as indicated by symptoms, history or diagnosis?", + "description": "0 – 25, 88 = N/A, 99 = Unknown", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$|^99$" + }, + "sibs_info": { + "title": "For each sibling with dementia, indicate age at onset (as defined above) if living or deceased, and current age if living:", + "type": "object", + "properties": { + "SIB1ONS": { + "title": "5A1 Sibling 1 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB1AGE": { + "title": "5A2 Sibling 1 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB2ONS": { + "title": "5B1 Sibling 2 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB2AGE": { + "title": "5B2 Sibling 2 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB3ONS": { + "title": "5C1 Sibling 3 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB3AGE": { + "title": "5C2 Sibling 3 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB4ONS": { + "title": "5D1 Sibling 4 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB4AGE": { + "title": "5D2 Sibling 4 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB5ONS": { + "title": "5E1 Sibling 5 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB5AGE": { + "title": "5E2 Sibling 5 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB6ONS": { + "title": "5F1 Sibling 6 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "SIB6AGE": { + "title": "5F2 Sibling 6 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #5, SIBSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + } + } + } + } + }, + "children": { + "title": "CHILDREN", + "type": "object", + "properties": { + "KIDS": { + "title": "6 How many biological children did the subject have?", + "description": "0 – 25, 99 = Unknown", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^99$" + }, + "KIDSDEM": { + "title": "7 How many of these children had dementia (as defined on form), as indicated by symptoms, history or diagnosis?", + "description": "0 – 25, 88 = N/A, 99 = Unknown", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$|^99$" + }, + "children_info": { + "title": "For each child with dementia, indicateage at onset (as defined above) if living or deceased, and current age if living:", + "type": "object", + "properties": { + "KID1ONS": { + "title": "7A1 Child 1 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID1AGE": { + "title": "7A2 Child 1 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID2ONS": { + "title": "7B1 Child 2 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID2AGE": { + "title": "7B2 Child 2 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID3ONS": { + "title": "7C1 Child 3 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID3AGE": { + "title": "7C2 Child 3 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID4ONS": { + "title": "7D1 Child 4 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID4AGE": { + "title": "7D2 Child 4 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID5ONS": { + "title": "7E1 Child 5 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID5AGE": { + "title": "7E2 Child 5 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID6ONS": { + "title": "7F1 Child 6 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "KID6AGE": { + "title": "7F2 Child 6 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #7, KIDSDEM = 0, 88 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + } + } + } + } + }, + "other_relatives": { + "title": "OTHER RELATIVES", + "type": "object", + "properties": { + "RELSDEM": { + "title": "8 Number of other blood relatives with dementia (as defined on form) (cousins, aunts, uncles, grandparents, half siblings), as indicated by symptoms, history or diagnosis.", + "description": "0 – 50,99 = Unknown", + "type": "string", + "pattern": "^[0-4]?[0-9]$|^50$|^99$" + }, + "other_relatives_info": { + "title": "For each other blood relative with dementia, indicate age at onset (as defined above) if living or deceased, and current age if living:", + "type": "object", + "properties": { + "REL1ONS": { + "title": "8A1 Relative 1 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL1AGE": { + "title": "8A2 Relative 1 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL2ONS": { + "title": "8B1 Relative 2 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL2AGE": { + "title": "8B2 Relative 2 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL3ONS": { + "title": "8C1 Relative 3 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL3AGE": { + "title": "8C2 Relative 3 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL4ONS": { + "title": "8D1 Relative 4 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL4AGE": { + "title": "8D2 Relative 4 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL5ONS": { + "title": "8E1 Relative 5 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL5AGE": { + "title": "8E2 Relative 5 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL6ONS": { + "title": "8F1 Relative 6 age at onset", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + }, + "REL6AGE": { + "title": "8F2 Relative 6 current age if living", + "description": "15 – 110,888 = NA,999 = Age unknown,Blank if #8, RELSDEM = 0 or 99.", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^888$|^999$" + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "parents.MOMDEM": { + "title": "1 Did the subject’s mother have dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "parents.MOMONSET": { + "title": "1A If the subject’s mother had dementia, indicate the age at which she developed dementia symptoms (age at onset, as defined on form)." + }, + "parents.MOMAGE": { + "title": "1B If the subject’s mother has dementia and is living, indicate her current age." + }, + "parents.MOMDAGE": { + "title": "1C If the subject’s mother had dementia and is deceased, indicate her age at death." + }, + "parents.DADDEM": { + "title": "2 Did the subject’s father have dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "parents.DADONSET": { + "title": "2A If the subject’s father had dementia, indicate the age at which he developed dementia symptoms (age at onset, as defined on form)." + }, + "parents.DADAGE": { + "title": "2B If the subject’s father has dementia and is living, indicate his current age." + }, + "parents.DADDAGE": { + "title": "2C If the subject’s father had dementia and is deceased, indicate his age at death." + }, + "siblings.TWIN": { + "title": "3 Is the subject a twin?" + }, + "siblings.TWINTYPE": { + "title": "3A If the subject is a twin, indicate type." + }, + "siblings.SIBS": { + "title": "4 How many full siblings did the subject have?" + }, + "siblings.SIBSDEM": { + "title": "5 How many of these siblings had dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_info.SIB1ONS": { + "title": "5A1 Sibling 1 age at onset" + }, + "siblings.sibs_info.SIB1AGE": { + "title": "5A2 Sibling 1 current age if living" + }, + "siblings.sibs_info.SIB2ONS": { + "title": "5B1 Sibling 2 age at onset" + }, + "siblings.sibs_info.SIB2AGE": { + "title": "5B2 Sibling 2 current age if living" + }, + "siblings.sibs_info.SIB3ONS": { + "title": "5C1 Sibling 3 age at onset" + }, + "siblings.sibs_info.SIB3AGE": { + "title": "5C2 Sibling 3 current age if living" + }, + "siblings.sibs_info.SIB4ONS": { + "title": "5D1 Sibling 4 age at onset" + }, + "siblings.sibs_info.SIB4AGE": { + "title": "5D2 Sibling 4 current age if living" + }, + "siblings.sibs_info.SIB5ONS": { + "title": "5E1 Sibling 5 age at onset" + }, + "siblings.sibs_info.SIB5AGE": { + "title": "5E2 Sibling 5 current age if living" + }, + "siblings.sibs_info.SIB6ONS": { + "title": "5F1 Sibling 6 age at onset" + }, + "siblings.sibs_info.SIB6AGE": { + "title": "5F2 Sibling 6 current age if living" + }, + "children.KIDS": { + "title": "6 How many biological children did the subject have?" + }, + "children.KIDSDEM": { + "title": "7 How many of these children had dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "children.children_info.KID1ONS": { + "title": "7A1 Child 1 age at onset" + }, + "children.children_info.KID1AGE": { + "title": "7A2 Child 1 current age if living" + }, + "children.children_info.KID2ONS": { + "title": "7B1 Child 2 age at onset" + }, + "children.children_info.KID2AGE": { + "title": "7B2 Child 2 current age if living" + }, + "children.children_info.KID3ONS": { + "title": "7C1 Child 3 age at onset" + }, + "children.children_info.KID3AGE": { + "title": "7C2 Child 3 current age if living" + }, + "children.children_info.KID4ONS": { + "title": "7D1 Child 4 age at onset" + }, + "children.children_info.KID4AGE": { + "title": "7D2 Child 4 current age if living" + }, + "children.children_info.KID5ONS": { + "title": "7E1 Child 5 age at onset" + }, + "children.children_info.KID5AGE": { + "title": "7E2 Child 5 current age if living" + }, + "children.children_info.KID6ONS": { + "title": "7F1 Child 6 age at onset" + }, + "children.children_info.KID6AGE": { + "title": "7F2 Child 6 current age if living" + }, + "other_relatives.RELSDEM": { + "title": "8 Number of other blood relatives with dementia (as defined on form) (cousins, aunts, uncles, grandparents, half siblings), as indicated by symptoms, history or diagnosis." + }, + "other_relatives.other_relatives_info.REL1ONS": { + "title": "8A1 Relative 1 age at onset" + }, + "other_relatives.other_relatives_info.REL1AGE": { + "title": "8A2 Relative 1 current age if living" + }, + "other_relatives.other_relatives_info.REL2ONS": { + "title": "8B1 Relative 2 age at onset" + }, + "other_relatives.other_relatives_info.REL2AGE": { + "title": "8B2 Relative 2 current age if living" + }, + "other_relatives.other_relatives_info.REL3ONS": { + "title": "8C1 Relative 3 age at onset" + }, + "other_relatives.other_relatives_info.REL3AGE": { + "title": "8C2 Relative 3 current age if living" + }, + "other_relatives.other_relatives_info.REL4ONS": { + "title": "8D1 Relative 4 age at onset" + }, + "other_relatives.other_relatives_info.REL4AGE": { + "title": "8D2 Relative 4 current age if living" + }, + "other_relatives.other_relatives_info.REL5ONS": { + "title": "8E1 Relative 5 age at onset" + }, + "other_relatives.other_relatives_info.REL5AGE": { + "title": "8E2 Relative 5 current age if living" + }, + "other_relatives.other_relatives_info.REL6ONS": { + "title": "8F1 Relative 6 age at onset" + }, + "other_relatives.other_relatives_info.REL6AGE": { + "title": "8F2 Relative 6 current age if living" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "parents.MOMDEM": { + "title": "1 Did the subject’s mother have dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "parents.MOMONSET": { + "title": "1A If the subject’s mother had dementia, indicate the age at which she developed dementia symptoms (age at onset, as defined on form)." + }, + "parents.MOMAGE": { + "title": "1B If the subject’s mother has dementia and is living, indicate her current age." + }, + "parents.MOMDAGE": { + "title": "1C If the subject’s mother had dementia and is deceased, indicate her age at death." + }, + "parents.DADDEM": { + "title": "2 Did the subject’s father have dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "parents.DADONSET": { + "title": "2A If the subject’s father had dementia, indicate the age at which he developed dementia symptoms (age at onset, as defined on form)." + }, + "parents.DADAGE": { + "title": "2B If the subject’s father has dementia and is living, indicate his current age." + }, + "parents.DADDAGE": { + "title": "2C If the subject’s father had dementia and is deceased, indicate his age at death." + }, + "siblings.TWIN": { + "title": "3 Is the subject a twin?" + }, + "siblings.TWINTYPE": { + "title": "3A If the subject is a twin, indicate type." + }, + "siblings.SIBS": { + "title": "4 How many full siblings did the subject have?" + }, + "siblings.SIBSDEM": { + "title": "5 How many of these siblings had dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_info.SIB1ONS": { + "title": "5A1 Sibling 1 age at onset" + }, + "siblings.sibs_info.SIB1AGE": { + "title": "5A2 Sibling 1 current age if living" + }, + "siblings.sibs_info.SIB2ONS": { + "title": "5B1 Sibling 2 age at onset" + }, + "siblings.sibs_info.SIB2AGE": { + "title": "5B2 Sibling 2 current age if living" + }, + "siblings.sibs_info.SIB3ONS": { + "title": "5C1 Sibling 3 age at onset" + }, + "siblings.sibs_info.SIB3AGE": { + "title": "5C2 Sibling 3 current age if living" + }, + "siblings.sibs_info.SIB4ONS": { + "title": "5D1 Sibling 4 age at onset" + }, + "siblings.sibs_info.SIB4AGE": { + "title": "5D2 Sibling 4 current age if living" + }, + "siblings.sibs_info.SIB5ONS": { + "title": "5E1 Sibling 5 age at onset" + }, + "siblings.sibs_info.SIB5AGE": { + "title": "5E2 Sibling 5 current age if living" + }, + "siblings.sibs_info.SIB6ONS": { + "title": "5F1 Sibling 6 age at onset" + }, + "siblings.sibs_info.SIB6AGE": { + "title": "5F2 Sibling 6 current age if living" + }, + "children.KIDS": { + "title": "6 How many biological children did the subject have?" + }, + "children.KIDSDEM": { + "title": "7 How many of these children had dementia (as defined on form), as indicated by symptoms, history or diagnosis?" + }, + "children.children_info.KID1ONS": { + "title": "7A1 Child 1 age at onset" + }, + "children.children_info.KID1AGE": { + "title": "7A2 Child 1 current age if living" + }, + "children.children_info.KID2ONS": { + "title": "7B1 Child 2 age at onset" + }, + "children.children_info.KID2AGE": { + "title": "7B2 Child 2 current age if living" + }, + "children.children_info.KID3ONS": { + "title": "7C1 Child 3 age at onset" + }, + "children.children_info.KID3AGE": { + "title": "7C2 Child 3 current age if living" + }, + "children.children_info.KID4ONS": { + "title": "7D1 Child 4 age at onset" + }, + "children.children_info.KID4AGE": { + "title": "7D2 Child 4 current age if living" + }, + "children.children_info.KID5ONS": { + "title": "7E1 Child 5 age at onset" + }, + "children.children_info.KID5AGE": { + "title": "7E2 Child 5 current age if living" + }, + "children.children_info.KID6ONS": { + "title": "7F1 Child 6 age at onset" + }, + "children.children_info.KID6AGE": { + "title": "7F2 Child 6 current age if living" + }, + "other_relatives.RELSDEM": { + "title": "8 Number of other blood relatives with dementia (as defined on form) (cousins, aunts, uncles, grandparents, half siblings), as indicated by symptoms, history or diagnosis." + }, + "other_relatives.other_relatives_info.REL1ONS": { + "title": "8A1 Relative 1 age at onset" + }, + "other_relatives.other_relatives_info.REL1AGE": { + "title": "8A2 Relative 1 current age if living" + }, + "other_relatives.other_relatives_info.REL2ONS": { + "title": "8B1 Relative 2 age at onset" + }, + "other_relatives.other_relatives_info.REL2AGE": { + "title": "8B2 Relative 2 current age if living" + }, + "other_relatives.other_relatives_info.REL3ONS": { + "title": "8C1 Relative 3 age at onset" + }, + "other_relatives.other_relatives_info.REL3AGE": { + "title": "8C2 Relative 3 current age if living" + }, + "other_relatives.other_relatives_info.REL4ONS": { + "title": "8D1 Relative 4 age at onset" + }, + "other_relatives.other_relatives_info.REL4AGE": { + "title": "8D2 Relative 4 current age if living" + }, + "other_relatives.other_relatives_info.REL5ONS": { + "title": "8E1 Relative 5 age at onset" + }, + "other_relatives.other_relatives_info.REL5AGE": { + "title": "8E2 Relative 5 current age if living" + }, + "other_relatives.other_relatives_info.REL6ONS": { + "title": "8F1 Relative 6 age at onset" + }, + "other_relatives.other_relatives_info.REL6AGE": { + "title": "8F2 Relative 6 current age if living" + } + }, + "boost_values": { + "patient": 1.0, + "parents.MOMDEM": 1.0, + "parents.MOMONSET": 1.0, + "parents.MOMAGE": 1.0, + "parents.MOMDAGE": 1.0, + "parents.DADDEM": 1.0, + "parents.DADONSET": 1.0, + "parents.DADAGE": 1.0, + "parents.DADDAGE": 1.0, + "siblings.TWIN": 1.0, + "siblings.TWINTYPE": 1.0, + "siblings.SIBS": 1.0, + "siblings.SIBSDEM": 1.0, + "siblings.sibs_info.SIB1ONS": 1.0, + "siblings.sibs_info.SIB1AGE": 1.0, + "siblings.sibs_info.SIB2ONS": 1.0, + "siblings.sibs_info.SIB2AGE": 1.0, + "siblings.sibs_info.SIB3ONS": 1.0, + "siblings.sibs_info.SIB3AGE": 1.0, + "siblings.sibs_info.SIB4ONS": 1.0, + "siblings.sibs_info.SIB4AGE": 1.0, + "siblings.sibs_info.SIB5ONS": 1.0, + "siblings.sibs_info.SIB5AGE": 1.0, + "siblings.sibs_info.SIB6ONS": 1.0, + "siblings.sibs_info.SIB6AGE": 1.0, + "children.KIDS": 1.0, + "children.KIDSDEM": 1.0, + "children.children_info.KID1ONS": 1.0, + "children.children_info.KID1AGE": 1.0, + "children.children_info.KID2ONS": 1.0, + "children.children_info.KID2AGE": 1.0, + "children.children_info.KID3ONS": 1.0, + "children.children_info.KID3AGE": 1.0, + "children.children_info.KID4ONS": 1.0, + "children.children_info.KID4AGE": 1.0, + "children.children_info.KID5ONS": 1.0, + "children.children_info.KID5AGE": 1.0, + "children.children_info.KID6ONS": 1.0, + "children.children_info.KID6AGE": 1.0, + "other_relatives.RELSDEM": 1.0, + "other_relatives.other_relatives_info.REL1ONS": 1.0, + "other_relatives.other_relatives_info.REL1AGE": 1.0, + "other_relatives.other_relatives_info.REL2ONS": 1.0, + "other_relatives.other_relatives_info.REL2AGE": 1.0, + "other_relatives.other_relatives_info.REL3ONS": 1.0, + "other_relatives.other_relatives_info.REL3AGE": 1.0, + "other_relatives.other_relatives_info.REL4ONS": 1.0, + "other_relatives.other_relatives_info.REL4AGE": 1.0, + "other_relatives.other_relatives_info.REL5ONS": 1.0, + "other_relatives.other_relatives_info.REL5AGE": 1.0, + "other_relatives.other_relatives_info.REL6ONS": 1.0, + "other_relatives.other_relatives_info.REL6AGE": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a3v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a3v2.json b/src/encoded/schemas/ivp_a3v2.json new file mode 100644 index 0000000000..17214fdeae --- /dev/null +++ b/src/encoded/schemas/ivp_a3v2.json @@ -0,0 +1,2894 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM A3V2: SUBJECT FAMILY HISTORY", + "description": "NOTE: This form is to be completed by intake interviewer per subject/informant \nreport. For additional clarification and examples, see UDS Coding Guidebook for\nInitial Visit Packet, Form A3.\n", + "id": "/profiles/ivp_a3v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "parent": { + "title": "PARENTS:", + "description": "Provide information on biological parents below. If birth year is unknown, please provide an approximate year on the Initial Visit Form A3 and ensure that it is consistently reported on any Follow-up Visit Form A as applicable. If it is impossible for the subject and co-participant to estimate the birth year, enter 9999=Unknown. For any biological parent with a neurological or psychiatric condition, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all available evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. For a biological parent with no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. pdf below contains codes for Method of Evaluation", + "type": "object", + "properties": { + "mother": { + "title": "1. MOTHER:", + "type": "object", + "properties": { + "momyob": { + "title": "1a. Mother’s year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1850 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^185[0-9]|18[6-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "MOMLIV": { + "title": "1b. Is subject’s mother still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "momyod": { + "title": "1c. If subject’s mother is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "momdem": { + "title": "1d. Does/did subject’s mother have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "momonset": { + "title": "1e. If subject’s mother was demented, indicate age at onset", + "description": "15-110 (999 = Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "father": { + "title": "2. FATHER:", + "type": "object", + "properties": { + "dadyob": { + "title": "2a. Father’s year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1850 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^185[0-9]|18[6-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "dadLIV": { + "title": "2b. Is subject’s father still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "dadyod": { + "title": "2c. If subject’s father is deceased, indicate year of death", + "description": "1875 - current ( 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "daddem": { + "title": "2d. Does/did subject’s father have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "dadonset": { + "title": "2e. If subject’s father was demented, indicate age at onset", + "description": "15-110 (999 = Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + } + } + }, + "siblings": { + "title": "SIBLINGS:", + "type": "object", + "properties": { + "TWIN": { + "title": "3. Is the subject a twin?", + "description": "If subject has no full siblings, SKIP TO QUESTION 7; otherwise provide information on all full siblings below.For any full sibling with a neurological or psychiatric condition, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all avilable evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. For a siblng with no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.( 0-20, 99=Unknown)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "TWINTYPE": { + "title": "3a. If the subject is a twin, indicate type.", + "type": "string", + "description": "If subject has no full siblings, SKIP TO QUESTION 7; otherwise provide information on all full siblings below.For any full sibling with a neurological or psychiatric condition, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all avilable evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. For a siblng with no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.( 0-20, 99=Unknown)", + "enum": [ + "1 Monozygotic (i.e., identical)", + "2 Dizygotic (i.e., fraternal)", + "9 Unknown" + ] + }, + "sibs": { + "title": "4. How many full siblings does the subject have?", + "description": "0-20 (99 = Unknown).If subject has no full siblings, SKIP TO QUESTION 7; otherwise provide information on all full siblings below.For any full sibling with a neurological or psychiatric condition, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all avilable evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. For a siblng with no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.( 0-20, 99=Unknown)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^20$|^99$" + + }, + "sibs_indicate": { + "title": "5. For all full siblings,indicate the following:", + "type": "object", + "properties": { + "sib1": { + "title": "Sibling 1", + "type": "object", + "properties": { + "sib1yob": { + "title": "5a1. Sibling 1 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib1LIV": { + "title": "5b1. Is Sibling 1 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib1yod": { + "title": "5c1. If Sibling 1 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib1dem": { + "title": "5d1. Does/did Sibling 1 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib1ons": { + "title": "5e1. If Sibling 1 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib2": { + "title": "Sibling 2", + "type": "object", + "properties": { + "sib2yob": { + "title": "5a2. Sibling 2 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib2LIV": { + "title": "5b2. Is Sibling 2 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib2yod": { + "title": "5c2. If Sibling 2 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib2dem": { + "title": "5d2. Does/did Sibling 2 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib2ons": { + "title": "5e2. If Sibling 2 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib3": { + "title": "Sibling 3", + "type": "object", + "properties": { + "sib3yob": { + "title": "5a3. Sibling 3 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib3LIV": { + "title": "5b3. Is Sibling 3 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib3yod": { + "title": "5c3. If Sibling 3 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib3dem": { + "title": "5d3. Does/did Sibling 3 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib3ons": { + "title": "5e3. If Sibling 3 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib4": { + "title": "Sibling 4", + "type": "object", + "properties": { + "sib4yob": { + "title": "5a4. Sibling 4 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib4LIV": { + "title": "5b4. Is Sibling 4 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib4yod": { + "title": "5c4. If Sibling 4 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib4dem": { + "title": "5d4. Does/did Sibling 4 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib4ons": { + "title": "5e4. If Sibling 4 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib5": { + "title": "Sibling 5", + "type": "object", + "properties": { + "sib5yob": { + "title": "5a5. Sibling 5 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib5LIV": { + "title": "5b5. Is Sibling 5 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib5yod": { + "title": "5c5. If Sibling 5 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib5dem": { + "title": "5d5. Does/did Sibling 5 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib5ons": { + "title": "5e5. If Sibling 5 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib6": { + "title": "Sibling 6", + "type": "object", + "properties": { + "sib6yob": { + "title": "5a6. Sibling 6 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib6LIV": { + "title": "5b6. Is Sibling 6 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib6yod": { + "title": "5c6. If Sibling 6 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib6dem": { + "title": "5d6. Does/did Sibling 6 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib6ons": { + "title": "5e6. If Sibling 6 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib7": { + "title": "Sibling 7", + "type": "object", + "properties": { + "sib7yob": { + "title": "5a7. Sibling 7 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib7LIV": { + "title": "5b7. Is Sibling 7 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib7yod": { + "title": "5c7. If Sibling 7 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib7dem": { + "title": "5d7. Does/did Sibling 7 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib7ons": { + "title": "5e7. If Sibling 7 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib8": { + "title": "Sibling 1", + "type": "object", + "properties": { + "sib8yob": { + "title": "5a8. Sibling 1 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib8LIV": { + "title": "5b8. Is Sibling 1 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib8yod": { + "title": "5c8. If Sibling 1 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib8dem": { + "title": "5d8. Does/did Sibling 1 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib8ons": { + "title": "5e8. If Sibling 1 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib9": { + "title": "Sibling 9", + "type": "object", + "properties": { + "sib9yob": { + "title": "5a9. Sibling 9 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib9LIV": { + "title": "5b9. Is Sibling 9 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib9yod": { + "title": "5c9. If Sibling 9 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib9dem": { + "title": "5d9. Does/did Sibling 9 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib9ons": { + "title": "5e9. If Sibling 9 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib10": { + "title": "Sibling 10", + "type": "object", + "properties": { + "sib10yob": { + "title": "5a10. Sibling 10 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib10LIV": { + "title": "5b10. Is Sibling 10 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib10yod": { + "title": "5c10. If Sibling 10 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib10dem": { + "title": "5d10. Does/did Sibling 10 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib10ons": { + "title": "5e10. If Sibling 10 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib11": { + "title": "Sibling 11", + "type": "object", + "properties": { + "sib11yob": { + "title": "5a11. Sibling 11 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib11LIV": { + "title": "5b11. Is Sibling 11 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib11yod": { + "title": "5c11. If Sibling 11 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib11dem": { + "title": "5d11. Does/did Sibling 11 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib11ons": { + "title": "5e11. If Sibling 11 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib12": { + "title": "Sibling 12", + "type": "object", + "properties": { + "sib12yob": { + "title": "5a12. Sibling 12 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib12LIV": { + "title": "5b12. Is Sibling 12 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib12yod": { + "title": "5c12. If Sibling 12 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib12dem": { + "title": "5d12. Does/did Sibling 12 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib12ons": { + "title": "5e12. If Sibling 12 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib13": { + "title": "Sibling 13", + "type": "object", + "properties": { + "sib13yob": { + "title": "5a13. Sibling 13 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib13LIV": { + "title": "5b13. Is Sibling 13 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib13yod": { + "title": "5c13. If Sibling 13 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib13dem": { + "title": "5d13. Does/did Sibling 13 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib13ons": { + "title": "5e13. If Sibling 13 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib14": { + "title": "Sibling 14", + "type": "object", + "properties": { + "sib14yob": { + "title": "5a14. Sibling 14 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib14LIV": { + "title": "5b14. Is Sibling 14 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib14yod": { + "title": "5c14. If Sibling 14 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib14dem": { + "title": "5d14. Does/did Sibling 14 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib14ons": { + "title": "5e14. If Sibling 14 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib15": { + "title": "Sibling 15", + "type": "object", + "properties": { + "sib15yob": { + "title": "5a15. Sibling 15 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib15LIV": { + "title": "5b15. Is Sibling 15 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib15yod": { + "title": "5c15. If Sibling 15 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib15dem": { + "title": "5d15. Does/did Sibling 15 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib15ons": { + "title": "5e15. If Sibling 15 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib16": { + "title": "Sibling 16", + "type": "object", + "properties": { + "sib16yob": { + "title": "5a16. Sibling 16 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib16LIV": { + "title": "5b16. Is Sibling 16 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib16yod": { + "title": "5c16. If Sibling 16 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib16dem": { + "title": "5d16. Does/did Sibling 16 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib16ons": { + "title": "5e16. If Sibling 16 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib17": { + "title": "Sibling 17", + "type": "object", + "properties": { + "sib17yob": { + "title": "5a17. Sibling 17 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib17LIV": { + "title": "5b17. Is Sibling 17 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib17yod": { + "title": "5c17. If Sibling 17 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib17dem": { + "title": "5d17. Does/did Sibling 17 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib17ons": { + "title": "5e17. If Sibling 17 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib18": { + "title": "Sibling 18", + "type": "object", + "properties": { + "sib18yob": { + "title": "5a18. Sibling 18 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib18LIV": { + "title": "5b18. Is Sibling 18 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib18yod": { + "title": "5c18. If Sibling 18 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib18dem": { + "title": "5d18. Does/did Sibling 18 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib18ons": { + "title": "5e18. If Sibling 18 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib19": { + "title": "Sibling 19", + "type": "object", + "properties": { + "sib19yob": { + "title": "5a19. Sibling 19 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib19LIV": { + "title": "5b19. Is Sibling 19 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib19yod": { + "title": "5c19. If Sibling 19 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib19dem": { + "title": "5d19. Does/did Sibling 19 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib19ons": { + "title": "5e19. If Sibling 19 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "sib20": { + "title": "Sibling 20", + "type": "object", + "properties": { + "sib20yob": { + "title": "5a20. Sibling 20 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib20LIV": { + "title": "5b20. Is Sibling 20 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib20yod": { + "title": "5c20. If Sibling 20 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib20dem": { + "title": "5d20. Does/did Sibling 20 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "sib20ons": { + "title": "5e20. If Sibling 20 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + } + } + } + } + }, + "children": { + "title": "Children", + "type": "object", + "properties": { + "kids": { + "title": "6. How many biological children did the subject have?", + "description": "( 0-15, 99 = Unknown)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$|^99$" + }, + "kids_indicate": { + "title": "7. For all biological children, indicate the following:", + "type": "object", + "properties": { + "kid1": { + "title": "Child 1", + "type": "object", + "properties": { + "kid1yob": { + "title": "7a1. Child 1 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid1LIV": { + "title": "7b1. Is Child 1 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid1yod": { + "title": "7c1. If Child 1 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid1dem": { + "title": "7d1. Does/did Child 1 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid1ons": { + "title": "7e1. If Child 1 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid2": { + "title": "Child 2", + "type": "object", + "properties": { + "kid2yob": { + "title": "7a2. Child 2 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid2LIV": { + "title": "7b2. Is Child 2 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid2yod": { + "title": "7c2. If Child 2 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid2dem": { + "title": "7d2. Does/did Child 2 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid2ons": { + "title": "7e2. If Child 2 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid3": { + "title": "Child 3", + "type": "object", + "properties": { + "kid3yob": { + "title": "7a3. Child 3 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid3LIV": { + "title": "7b3. Is Child 3 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid3yod": { + "title": "7c3. If Child 3 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid3dem": { + "title": "7d3. Does/did Child 3 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid3ons": { + "title": "7e3. If Child 3 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid4": { + "title": "Child 4", + "type": "object", + "properties": { + "kid4yob": { + "title": "7a4. Child 4 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid4LIV": { + "title": "7b4. Is Child 4 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid4yod": { + "title": "7c4. If Child 4 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid4dem": { + "title": "7d4. Does/did Child 4 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid4ons": { + "title": "7e4. If Child 4 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid5": { + "title": "Child 5", + "type": "object", + "properties": { + "kid5yob": { + "title": "7a5. Child 5 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid5LIV": { + "title": "7b5. Is Child 5 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid5yod": { + "title": "7c5. If Child 5 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid5dem": { + "title": "7d5. Does/did Child 5 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid5ons": { + "title": "7e5. If Child 5 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid6": { + "title": "Child 6", + "type": "object", + "properties": { + "kid6yob": { + "title": "7a6. Child 6 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid6LIV": { + "title": "7b6. Is Child 6 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid6yod": { + "title": "7c6. If Child 6 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid6dem": { + "title": "7d6. Does/did Child 6 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid6ons": { + "title": "7e6. If Child 6 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid7": { + "title": "Child 7", + "type": "object", + "properties": { + "kid7yob": { + "title": "7a7. Child 7 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid7LIV": { + "title": "7b7. Is Child 7 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid7yod": { + "title": "7c7. If Child 7 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid7dem": { + "title": "7d7. Does/did Child 7 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid7ons": { + "title": "7e7. If Child 7 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid8": { + "title": "Child 8", + "type": "object", + "properties": { + "kid8yob": { + "title": "7a8. Child 8 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid8LIV": { + "title": "7b8. Is Child 8 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid8yod": { + "title": "7c8. If Child 8 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid8dem": { + "title": "7d8. Does/did Child 8 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid8ons": { + "title": "7e8. If Child 8 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid9": { + "title": "Child 9", + "type": "object", + "properties": { + "kid9yob": { + "title": "7a9. Child 9 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid9LIV": { + "title": "7b9. Is Child 9 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid9yod": { + "title": "7c9. If Child 9 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid9dem": { + "title": "7d9. Does/did Child 9 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid9ons": { + "title": "7e9. If Child 9 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid10": { + "title": "Child 10", + "type": "object", + "properties": { + "kid10yob": { + "title": "7a10. Child 10 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid10LIV": { + "title": "7b10. Is Child 10 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid10yod": { + "title": "7c10. If Child 10 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid10dem": { + "title": "7d10. Does/did Child 10 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid10ons": { + "title": "7e10. If Child 10 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid11": { + "title": "Child 11", + "type": "object", + "properties": { + "kid11yob": { + "title": "7a11. Child 11 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid11LIV": { + "title": "7b11. Is Child 11 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid11yod": { + "title": "7c11. If Child 11 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid11dem": { + "title": "7d11. Does/did Child 11 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid11ons": { + "title": "7e11. If Child 11 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid12": { + "title": "Child 12", + "type": "object", + "properties": { + "kid12yob": { + "title": "7a12. Child 12 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid12LIV": { + "title": "7b12. Is Child 12 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid12yod": { + "title": "7c12. If Child 12 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid12dem": { + "title": "7d12. Does/did Child 12 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid12ons": { + "title": "7e12. If Child 12 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid13": { + "title": "Child 13", + "type": "object", + "properties": { + "kid13yob": { + "title": "7a13. Child 13 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid13LIV": { + "title": "7b13. Is Child 13 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid13yod": { + "title": "7c13. If Child 13 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid13dem": { + "title": "7d13. Does/did Child 13 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid13ons": { + "title": "7e13. If Child 13 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid14": { + "title": "Child 14", + "type": "object", + "properties": { + "kid14yob": { + "title": "7a14. Child 14 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid14LIV": { + "title": "7b14. Is Child 14 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid14yod": { + "title": "7c14. If Child 14 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid14dem": { + "title": "7d14. Does/did Child 14 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid14ons": { + "title": "7e14. If Child 14 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "kid15": { + "title": "Child 15", + "type": "object", + "properties": { + "kid15yob": { + "title": "7a15. Child 15 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1910 to current, 9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid15LIV": { + "title": "7b15. Is Child 15 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid15yod": { + "title": "7c15. If Child 15 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern":"^19[1-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid15dem": { + "title": "7d15. Does/did Child 15 have dementia, as indicated by symptoms, history or diagnosis?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "kid15ons": { + "title": "7e15. If Child 15 was demented, indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + } + } + } + } + }, + "other_relatives": { + "title": "OTHER DEMENTED RELATIVES:", + "type": "object", + "properties": { + "RELSDEM": { + "title": "8.Number of other demented (as defined on form) blood relatives(cousins, aunts, uncles, grandparents, half siblings), as indicated by symptoms, history or diagnosis.", + "description": "(0-15, 99 = Unknown)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$|^99$" + }, + "rel_indicate": { + "title": "9. For all \"other demented relatives\" (cousins, aunts, uncles, grandparents, half\nsiblings), indicate the following:\n", + + "type": "object", + "properties": { + "rel1": { + "title": "Relative 1", + "type": "object", + "properties": { + "rel1yob": { + "title": "9a1. Relative 1 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel1LIV": { + "title": "9b1. Is Relative 1 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel1yod": { + "title": "9c1. If Relative 1 is deceased, indicate year of death", + "description": "1800 to current year(9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel1ons": { + "title": "9d1. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel2": { + "title": "Relative 2", + "type": "object", + "properties": { + "rel2yob": { + "title": "9a2. Relative 2 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel2LIV": { + "title": "9b2. Is Relative 2 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel2yod": { + "title": "9c2. If Relative 2 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel2ons": { + "title": "9d2. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel3": { + "title": "Relative 3", + "type": "object", + "properties": { + "rel3yob": { + "title": "9a3. Relative 3 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel3LIV": { + "title": "9b3. Is Relative 3 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel3yod": { + "title": "9c3. If Relative 3 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel3ons": { + "title": "9d3. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel4": { + "title": "Relative 4", + "type": "object", + "properties": { + "rel4yob": { + "title": "9a4. Relative 4 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel4LIV": { + "title": "9b4. Is Relative 4 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel4yod": { + "title": "9c4. If Relative 4 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel4ons": { + "title": "9d4. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel5": { + "title": "Relative 5", + "type": "object", + "properties": { + "rel5yob": { + "title": "9a5. Relative 5 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel5LIV": { + "title": "9b5. Is Relative 5 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel5yod": { + "title": "9c5. If Relative 5 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel5ons": { + "title": "9d5. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel6": { + "title": "Relative 6", + "type": "object", + "properties": { + "rel6yob": { + "title": "9a6. Relative 6 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel6LIV": { + "title": "9b6. Is Relative 6 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel6yod": { + "title": "9c6. If Relative 6 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel6ons": { + "title": "9d6. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel7": { + "title": "Relative 7", + "type": "object", + "properties": { + "rel7yob": { + "title": "9a7. Relative 7 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel7LIV": { + "title": "9b7. Is Relative 7 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel7yod": { + "title": "9c7. If Relative 7 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel7ons": { + "title": "9d7. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel8": { + "title": "Relative 8", + "type": "object", + "properties": { + "rel8yob": { + "title": "9a8. Relative 8 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel8LIV": { + "title": "9b8. Is Relative 8 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel8yod": { + "title": "9c8. If Relative 8 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel8ons": { + "title": "9d8. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel9": { + "title": "Relative 9", + "type": "object", + "properties": { + "rel9yob": { + "title": "9a9. Relative 9 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel9LIV": { + "title": "9b9. Is Relative 9 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel9yod": { + "title": "9c9. If Relative 9 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel9ons": { + "title": "9d9. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel10": { + "title": "Relative 10", + "type": "object", + "properties": { + "rel10yob": { + "title": "9a10. Relative 10 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel10LIV": { + "title": "9b10. Is Relative 10 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel10yod": { + "title": "9c10. If Relative 10 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel10ons": { + "title": "9d10. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel11": { + "title": "Relative 11", + "type": "object", + "properties": { + "rel11yob": { + "title": "9a11. Relative 11 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel11LIV": { + "title": "9b11. Is Relative 11 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel11yod": { + "title": "9c11. If Relative 11 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel11ons": { + "title": "9d11. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel12": { + "title": "Relative 12", + "type": "object", + "properties": { + "rel12yob": { + "title": "9a12. Relative 12 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel12LIV": { + "title": "9b12. Is Relative 12 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel12yod": { + "title": "9c12. If Relative 12 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel12ons": { + "title": "9d12. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel13": { + "title": "Relative 13", + "type": "object", + "properties": { + "rel13yob": { + "title": "9a13. Relative 13 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel13LIV": { + "title": "9b13. Is Relative 13 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel13yod": { + "title": "9c13. If Relative 13 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel13ons": { + "title": "9d13. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel14": { + "title": "Relative 14", + "type": "object", + "properties": { + "rel14yob": { + "title": "9a14. Relative 14 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel14LIV": { + "title": "9b14. Is Relative 14 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel14yod": { + "title": "9c14. If Relative 14 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^18[0-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel14ons": { + "title": "9d14. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + }, + "rel15": { + "title": "Relative 15", + "type": "object", + "properties": { + "rel15yob": { + "title": "9a15. Relative 15 year of birth", + "description": "(Date can be submitted as YYYY.((YYYY) 1800 to current, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel15LIV": { + "title": "9b15. Is Relative 15 still living?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "rel15yod": { + "title": "9c15. If Relative 15 is deceased, indicate year of death", + "description": "1875 - current (9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "rel15ons": { + "title": "9d15. Indicate age at onset", + "description": "15 - 110 (999 = Age Unknown)", + "type": "string", + "pattern": "^1[5-9]$|^[2-9][0-9]$|^10[0-9]$|^110$|^999$" + } + } + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "parent.mother.momyob": { + "title": "1a. Mother’s year of birth" + }, + "parent.mother.MOMLIV": { + "title": "1b. Is subject’s mother still living?" + }, + "parent.mother.momyod": { + "title": "1c. If subject’s mother is deceased, indicate year of death" + }, + "parent.mother.momdem": { + "title": "1d. Does/did subject’s mother have dementia, as indicated by symptoms, history or diagnosis?" + }, + "parent.mother.momonset": { + "title": "1e. If subject’s mother was demented, indicate age at onset" + }, + "parent.father.dadyob": { + "title": "2a. Father’s year of birth" + }, + "parent.father.dadLIV": { + "title": "2b. Is subject’s father still living?" + }, + "parent.father.dadyod": { + "title": "2c. If subject’s father is deceased, indicate year of death" + }, + "parent.father.daddem": { + "title": "2d. Does/did subject’s father have dementia, as indicated by symptoms, history or diagnosis?" + }, + "parent.father.dadonset": { + "title": "2e. If subject’s father was demented, indicate age at onset" + }, + "siblings.TWIN": { + "title": "3. Is the subject a twin?" + }, + "siblings.TWINTYPE": { + "title": "3a. If the subject is a twin, indicate type." + }, + "siblings.sibs": { + "title": "4. How many full siblings does the subject have?" + }, + "siblings.sibs_indicate.sib1.sib1yob": { + "title": "5a1. Sibling 1 year of birth" + }, + "siblings.sibs_indicate.sib1.sib1LIV": { + "title": "5b1. Is Sibling 1 still living?" + }, + "siblings.sibs_indicate.sib1.sib1yod": { + "title": "5c1. If Sibling 1 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib1.sib1dem": { + "title": "5d1. Does/did Sibling 1 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib1.sib1ons": { + "title": "5e1. If Sibling 1 was demented, indicate age at onset" + }, + "siblings.sibs_indicate.sib2.sib2yob": { + "title": "5a2. Sibling 2 year of birth" + }, + "siblings.sibs_indicate.sib2.sib2LIV": { + "title": "5b2. Is Sibling 2 still living?" + }, + "siblings.sibs_indicate.sib2.sib2yod": { + "title": "5c2. If Sibling 2 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib2.sib2dem": { + "title": "5d2. Does/did Sibling 2 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib2.sib2ons": { + "title": "5e2. If Sibling 2 was demented, indicate age at onset" + }, + "siblings.sibs_indicate.sib3.sib3yob": { + "title": "5a3. Sibling 3 year of birth" + }, + "siblings.sibs_indicate.sib3.sib3LIV": { + "title": "5b3. Is Sibling 3 still living?" + }, + "siblings.sibs_indicate.sib3.sib3yod": { + "title": "5c3. If Sibling 3 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib3.sib3dem": { + "title": "5d3. Does/did Sibling 3 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib3.sib3ons": { + "title": "5e3. If Sibling 3 was demented, indicate age at onset" + }, + "siblings.sibs_indicate.sib4.sib4yob": { + "title": "5a4. Sibling 4 year of birth" + }, + "siblings.sibs_indicate.sib4.sib4LIV": { + "title": "5b4. Is Sibling 4 still living?" + }, + "siblings.sibs_indicate.sib4.sib4yod": { + "title": "5c4. If Sibling 4 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib4.sib4dem": { + "title": "5d4. Does/did Sibling 4 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib4.sib4ons": { + "title": "5e4. If Sibling 4 was demented, indicate age at onset" + }, + "siblings.sibs_indicate.sib5.sib5yob": { + "title": "5a5. Sibling 5 year of birth" + }, + "siblings.sibs_indicate.sib5.sib5LIV": { + "title": "5b5. Is Sibling 5 still living?" + }, + "siblings.sibs_indicate.sib5.sib5yod": { + "title": "5c5. If Sibling 5 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib5.sib5dem": { + "title": "5d5. Does/did Sibling 5 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib5.sib5ons": { + "title": "5e5. If Sibling 5 was demented, indicate age at onset" + }, + "siblings.sibs_indicate.sib6.sib6yob": { + "title": "5a6. Sibling 6 year of birth" + }, + "siblings.sibs_indicate.sib6.sib6LIV": { + "title": "5b6. Is Sibling 6 still living?" + }, + "siblings.sibs_indicate.sib6.sib6yod": { + "title": "5c6. If Sibling 6 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib6.sib6dem": { + "title": "5d6. Does/did Sibling 6 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib6.sib6ons": { + "title": "5e6. If Sibling 6 was demented, indicate age at onset" + }, + "children.kids": { + "title": "6. How many biological children did the subject have?" + }, + "children.kids_indicate.kid1.kid1yob": { + "title": "7a1. Child 1 year of birth" + }, + "children.kids_indicate.kid1.kid1LIV": { + "title": "7b1. Is Child 1 still living?" + }, + "children.kids_indicate.kid1.kid1yod": { + "title": "7c1. If Child 1 is deceased, indicate year of death" + }, + "children.kids_indicate.kid1.kid1dem": { + "title": "7d1. Does/did Child 1 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid1.kid1ons": { + "title": "7e1. If Child 1 was demented, indicate age at onset" + }, + "children.kids_indicate.kid2.kid2yob": { + "title": "7a2. Child 2 year of birth" + }, + "children.kids_indicate.kid2.kid2LIV": { + "title": "7b2. Is Child 2 still living?" + }, + "children.kids_indicate.kid2.kid2yod": { + "title": "7c2. If Child 2 is deceased, indicate year of death" + }, + "children.kids_indicate.kid2.kid2dem": { + "title": "7d2. Does/did Child 2 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid2.kid2ons": { + "title": "7e2. If Child 2 was demented, indicate age at onset" + }, + "children.kids_indicate.kid3.kid3yob": { + "title": "7a3. Child 3 year of birth" + }, + "children.kids_indicate.kid3.kid3LIV": { + "title": "7b3. Is Child 3 still living?" + }, + "children.kids_indicate.kid3.kid3yod": { + "title": "7c3. If Child 3 is deceased, indicate year of death" + }, + "children.kids_indicate.kid3.kid3dem": { + "title": "7d3. Does/did Child 3 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid3.kid3ons": { + "title": "7e3. If Child 3 was demented, indicate age at onset" + }, + "children.kids_indicate.kid4.kid4yob": { + "title": "7a4. Child 4 year of birth" + }, + "children.kids_indicate.kid4.kid4LIV": { + "title": "7b4. Is Child 4 still living?" + }, + "children.kids_indicate.kid4.kid4yod": { + "title": "7c4. If Child 4 is deceased, indicate year of death" + }, + "children.kids_indicate.kid4.kid4dem": { + "title": "7d4. Does/did Child 4 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid4.kid4ons": { + "title": "7e4. If Child 4 was demented, indicate age at onset" + }, + "children.kids_indicate.kid5.kid5yob": { + "title": "7a5. Child 5 year of birth" + }, + "children.kids_indicate.kid5.kid5LIV": { + "title": "7b5. Is Child 5 still living?" + }, + "children.kids_indicate.kid5.kid5yod": { + "title": "7c5. If Child 5 is deceased, indicate year of death" + }, + "children.kids_indicate.kid5.kid5dem": { + "title": "7d5. Does/did Child 5 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid5.kid5ons": { + "title": "7e5. If Child 5 was demented, indicate age at onset" + }, + "children.kids_indicate.kid6.kid6yob": { + "title": "7a6. Child 6 year of birth" + }, + "children.kids_indicate.kid6.kid6LIV": { + "title": "7b6. Is Child 6 still living?" + }, + "children.kids_indicate.kid6.kid6yod": { + "title": "7c6. If Child 6 is deceased, indicate year of death" + }, + "children.kids_indicate.kid6.kid6dem": { + "title": "7d6. Does/did Child 6 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid6.kid6ons": { + "title": "7e6. If Child 6 was demented, indicate age at onset" + }, + + + "other_relatives.RELSDEM": { + "title": "8.Number of other demented (as defined on form) blood relatives(cousins, aunts, uncles, grandparents, half siblings), as indicated bysymptoms, history or diagnosis." + }, + "other_relatives.rel_indicate.rel1.rel1yob": { + "title": "9a1. Relative 1 year of birth" + }, + "other_relatives.rel_indicate.rel1.rel1LIV": { + "title": "9b1. Is Relative 1 still living?" + }, + "other_relatives.rel_indicate.rel1.rel1yod": { + "title": "9c1. If Relative 1 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel1.rel1ons": { + "title": "9d1. Indicate age at onset" + }, + "other_relatives.rel_indicate.rel2.rel2yob": { + "title": "9a2. Relative 2 year of birth" + }, + "other_relatives.rel_indicate.rel2.rel2LIV": { + "title": "9b2. Is Relative 2 still living?" + }, + "other_relatives.rel_indicate.rel2.rel2yod": { + "title": "9c2. If Relative 2 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel2.rel2ons": { + "title": "9d2. Indicate age at onset" + }, + "other_relatives.rel_indicate.rel3.rel3yob": { + "title": "9a3. Relative 3 year of birth" + }, + "other_relatives.rel_indicate.rel3.rel3LIV": { + "title": "9b3. Is Relative 3 still living?" + }, + "other_relatives.rel_indicate.rel3.rel3yod": { + "title": "9c3. If Relative 3 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel3.rel3ons": { + "title": "9d3. Indicate age at onset" + }, + "other_relatives.rel_indicate.rel4.rel4yob": { + "title": "9a4. Relative 4 year of birth" + }, + "other_relatives.rel_indicate.rel4.rel4LIV": { + "title": "9b4. Is Relative 4 still living?" + }, + "other_relatives.rel_indicate.rel4.rel4yod": { + "title": "9c4. If Relative 4 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel4.rel4ons": { + "title": "9d4. Indicate age at onset" + }, + "other_relatives.rel_indicate.rel5.rel5yob": { + "title": "9a5. Relative 5 year of birth" + }, + "other_relatives.rel_indicate.rel5.rel5LIV": { + "title": "9b5. Is Relative 5 still living?" + }, + "other_relatives.rel_indicate.rel5.rel5yod": { + "title": "9c5. If Relative 5 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel5.rel5ons": { + "title": "9d5. Indicate age at onset" + }, + "other_relatives.rel_indicate.rel6.rel6yob": { + "title": "9a6. Relative 6 year of birth" + }, + "other_relatives.rel_indicate.rel6.rel6LIV": { + "title": "9b6. Is Relative 6 still living?" + }, + "other_relatives.rel_indicate.rel6.rel6yod": { + "title": "9c6. If Relative 6 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel6.rel6ons": { + "title": "9d6. Indicate age at onset" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "parent.mother.momyob": { + "title": "1a. Mother’s year of birth" + }, + "parent.mother.MOMLIV": { + "title": "1b. Is subject’s mother still living?" + }, + "parent.mother.momyod": { + "title": "1c. If subject’s mother is deceased, indicate year of death" + }, + "parent.mother.momdem": { + "title": "1d. Does/did subject’s mother have dementia, as indicated by symptoms, history or diagnosis?" + }, + "parent.mother.momonset": { + "title": "1e. If subject’s mother was demented, indicate age at onset" + }, + "parent.father.dadyob": { + "title": "2a. Father’s year of birth" + }, + "parent.father.dadLIV": { + "title": "2b. Is subject’s father still living?" + }, + "parent.father.dadyod": { + "title": "2c. If subject’s father is deceased, indicate year of death" + }, + "parent.father.daddem": { + "title": "2d. Does/did subject’s father have dementia, as indicated by symptoms, history or diagnosis?" + }, + "parent.father.dadonset": { + "title": "2e. If subject’s father was demented, indicate age at onset" + }, + "siblings.TWIN": { + "title": "3. Is the subject a twin?" + }, + "siblings.TWINTYPE": { + "title": "3a. If the subject is a twin, indicate type." + }, + "siblings.sibs": { + "title": "4. How many full siblings does the subject have?" + }, + "siblings.sibs_indicate.sib1.sib1yob": { + "title": "5a1. Sibling 1 year of birth" + }, + "siblings.sibs_indicate.sib1.sib1LIV": { + "title": "5b1. Is Sibling 1 still living?" + }, + "siblings.sibs_indicate.sib1.sib1yod": { + "title": "5c1. If Sibling 1 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib1.sib1dem": { + "title": "5d1. Does/did Sibling 1 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib1.sib1ons": { + "title": "5e1. If Sibling 1 was demented, indicate age at onset" + }, + "siblings.sibs_indicate.sib2.sib2yob": { + "title": "5a2. Sibling 2 year of birth" + }, + "siblings.sibs_indicate.sib2.sib2LIV": { + "title": "5b2. Is Sibling 2 still living?" + }, + "siblings.sibs_indicate.sib2.sib2yod": { + "title": "5c2. If Sibling 2 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib2.sib2dem": { + "title": "5d2. Does/did Sibling 2 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib2.sib2ons": { + "title": "5e2. If Sibling 2 was demented, indicate age at onset" + }, + "siblings.sibs_indicate.sib3.sib3yob": { + "title": "5a3. Sibling 3 year of birth" + }, + "siblings.sibs_indicate.sib3.sib3LIV": { + "title": "5b3. Is Sibling 3 still living?" + }, + "siblings.sibs_indicate.sib3.sib3yod": { + "title": "5c3. If Sibling 3 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib3.sib3dem": { + "title": "5d3. Does/did Sibling 3 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib3.sib3ons": { + "title": "5e3. If Sibling 3 was demented, indicate age at onset" + }, + "siblings.sibs_indicate.sib4.sib4yob": { + "title": "5a4. Sibling 4 year of birth" + }, + "siblings.sibs_indicate.sib4.sib4LIV": { + "title": "5b4. Is Sibling 4 still living?" + }, + "siblings.sibs_indicate.sib4.sib4yod": { + "title": "5c4. If Sibling 4 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib4.sib4dem": { + "title": "5d4. Does/did Sibling 4 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib4.sib4ons": { + "title": "5e4. If Sibling 4 was demented, indicate age at onset" + }, + "siblings.sibs_indicate.sib5.sib5yob": { + "title": "5a5. Sibling 5 year of birth" + }, + "siblings.sibs_indicate.sib5.sib5LIV": { + "title": "5b5. Is Sibling 5 still living?" + }, + "siblings.sibs_indicate.sib5.sib5yod": { + "title": "5c5. If Sibling 5 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib5.sib5dem": { + "title": "5d5. Does/did Sibling 5 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib5.sib5ons": { + "title": "5e5. If Sibling 5 was demented, indicate age at onset" + }, + "siblings.sibs_indicate.sib6.sib6yob": { + "title": "5a6. Sibling 6 year of birth" + }, + "siblings.sibs_indicate.sib6.sib6LIV": { + "title": "5b6. Is Sibling 6 still living?" + }, + "siblings.sibs_indicate.sib6.sib6yod": { + "title": "5c6. If Sibling 6 is deceased, indicate year of death" + }, + "siblings.sibs_indicate.sib6.sib6dem": { + "title": "5d6. Does/did Sibling 6 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "siblings.sibs_indicate.sib6.sib6ons": { + "title": "5e6. If Sibling 6 was demented, indicate age at onset" + }, + "children.kids": { + "title": "6. How many biological children did the subject have?" + }, + "children.kids_indicate.kid1.kid1yob": { + "title": "7a1. Child 1 year of birth" + }, + "children.kids_indicate.kid1.kid1LIV": { + "title": "7b1. Is Child 1 still living?" + }, + "children.kids_indicate.kid1.kid1yod": { + "title": "7c1. If Child 1 is deceased, indicate year of death" + }, + "children.kids_indicate.kid1.kid1dem": { + "title": "7d1. Does/did Child 1 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid1.kid1ons": { + "title": "7e1. If Child 1 was demented, indicate age at onset" + }, + "children.kids_indicate.kid2.kid2yob": { + "title": "7a2. Child 2 year of birth" + }, + "children.kids_indicate.kid2.kid2LIV": { + "title": "7b2. Is Child 2 still living?" + }, + "children.kids_indicate.kid2.kid2yod": { + "title": "7c2. If Child 2 is deceased, indicate year of death" + }, + "children.kids_indicate.kid2.kid2dem": { + "title": "7d2. Does/did Child 2 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid2.kid2ons": { + "title": "7e2. If Child 2 was demented, indicate age at onset" + }, + "children.kids_indicate.kid3.kid3yob": { + "title": "7a3. Child 3 year of birth" + }, + "children.kids_indicate.kid3.kid3LIV": { + "title": "7b3. Is Child 3 still living?" + }, + "children.kids_indicate.kid3.kid3yod": { + "title": "7c3. If Child 3 is deceased, indicate year of death" + }, + "children.kids_indicate.kid3.kid3dem": { + "title": "7d3. Does/did Child 3 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid3.kid3ons": { + "title": "7e3. If Child 3 was demented, indicate age at onset" + }, + "children.kids_indicate.kid4.kid4yob": { + "title": "7a4. Child 4 year of birth" + }, + "children.kids_indicate.kid4.kid4LIV": { + "title": "7b4. Is Child 4 still living?" + }, + "children.kids_indicate.kid4.kid4yod": { + "title": "7c4. If Child 4 is deceased, indicate year of death" + }, + "children.kids_indicate.kid4.kid4dem": { + "title": "7d4. Does/did Child 4 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid4.kid4ons": { + "title": "7e4. If Child 4 was demented, indicate age at onset" + }, + "children.kids_indicate.kid5.kid5yob": { + "title": "7a5. Child 5 year of birth" + }, + "children.kids_indicate.kid5.kid5LIV": { + "title": "7b5. Is Child 5 still living?" + }, + "children.kids_indicate.kid5.kid5yod": { + "title": "7c5. If Child 5 is deceased, indicate year of death" + }, + "children.kids_indicate.kid5.kid5dem": { + "title": "7d5. Does/did Child 5 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid5.kid5ons": { + "title": "7e5. If Child 5 was demented, indicate age at onset" + }, + "children.kids_indicate.kid6.kid6yob": { + "title": "7a6. Child 6 year of birth" + }, + "children.kids_indicate.kid6.kid6LIV": { + "title": "7b6. Is Child 6 still living?" + }, + "children.kids_indicate.kid6.kid6yod": { + "title": "7c6. If Child 6 is deceased, indicate year of death" + }, + "children.kids_indicate.kid6.kid6dem": { + "title": "7d6. Does/did Child 6 have dementia, as indicated by symptoms, history or diagnosis?" + }, + "children.kids_indicate.kid6.kid6ons": { + "title": "7e6. If Child 6 was demented, indicate age at onset" + }, + + + "other_relatives.RELSDEM": { + "title": "8.Number of other demented (as defined on form) blood relatives(cousins, aunts, uncles, grandparents, half siblings), as indicated bysymptoms, history or diagnosis." + }, + "other_relatives.rel_indicate.rel1.rel1yob": { + "title": "9a1. Relative 1 year of birth" + }, + "other_relatives.rel_indicate.rel1.rel1LIV": { + "title": "9b1. Is Relative 1 still living?" + }, + "other_relatives.rel_indicate.rel1.rel1yod": { + "title": "9c1. If Relative 1 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel1.rel1ons": { + "title": "9d1. Indicate age at onset" + }, + "other_relatives.rel_indicate.rel2.rel2yob": { + "title": "9a2. Relative 2 year of birth" + }, + "other_relatives.rel_indicate.rel2.rel2LIV": { + "title": "9b2. Is Relative 2 still living?" + }, + "other_relatives.rel_indicate.rel2.rel2yod": { + "title": "9c2. If Relative 2 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel2.rel2ons": { + "title": "9d2. Indicate age at onset" + }, + "other_relatives.rel_indicate.rel3.rel3yob": { + "title": "9a3. Relative 3 year of birth" + }, + "other_relatives.rel_indicate.rel3.rel3LIV": { + "title": "9b3. Is Relative 3 still living?" + }, + "other_relatives.rel_indicate.rel3.rel3yod": { + "title": "9c3. If Relative 3 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel3.rel3ons": { + "title": "9d3. Indicate age at onset" + }, + "other_relatives.rel_indicate.rel4.rel4yob": { + "title": "9a4. Relative 4 year of birth" + }, + "other_relatives.rel_indicate.rel4.rel4LIV": { + "title": "9b4. Is Relative 4 still living?" + }, + "other_relatives.rel_indicate.rel4.rel4yod": { + "title": "9c4. If Relative 4 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel4.rel4ons": { + "title": "9d4. Indicate age at onset" + }, + "other_relatives.rel_indicate.rel5.rel5yob": { + "title": "9a5. Relative 5 year of birth" + }, + "other_relatives.rel_indicate.rel5.rel5LIV": { + "title": "9b5. Is Relative 5 still living?" + }, + "other_relatives.rel_indicate.rel5.rel5yod": { + "title": "9c5. If Relative 5 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel5.rel5ons": { + "title": "9d5. Indicate age at onset" + }, + "other_relatives.rel_indicate.rel6.rel6yob": { + "title": "9a6. Relative 6 year of birth" + }, + "other_relatives.rel_indicate.rel6.rel6LIV": { + "title": "9b6. Is Relative 6 still living?" + }, + "other_relatives.rel_indicate.rel6.rel6yod": { + "title": "9c6. If Relative 6 is deceased, indicate year of death" + }, + + "other_relatives.rel_indicate.rel6.rel6ons": { + "title": "9d6. Indicate age at onset" + } + }, + "boost_values": { + "patient": 1.0, + "parent.mother.momyob": 1.0, + "parent.mother.MOMLIV": 1.0, + "parent.mother.momyod": 1.0, + "parent.mother.momdem": 1.0, + "parent.mother.momonset": 1.0, + "parent.father.dadyob": 1.0, + "parent.father.dadLIV": 1.0, + "parent.father.dadyod": 1.0, + "parent.father.daddem": 1.0, + "parent.father.dadonset": 1.0, + "siblings.TWIN": 1.0, + "siblings.TWINTYPE": 1.0, + "siblings.sibs": 1.0, + "siblings.sibs_indicate.sib1.sib1yob": 1.0, + "siblings.sibs_indicate.sib1.sib1LIV": 1.0, + "siblings.sibs_indicate.sib1.sib1yod": 1.0, + "siblings.sibs_indicate.sib1.sib1dem": 1.0, + "siblings.sibs_indicate.sib1.sib1ons": 1.0, + "siblings.sibs_indicate.sib2.sib2yob": 1.0, + "siblings.sibs_indicate.sib2.sib2LIV": 1.0, + "siblings.sibs_indicate.sib2.sib2yod": 1.0, + "siblings.sibs_indicate.sib2.sib2dem": 1.0, + "siblings.sibs_indicate.sib2.sib2ons": 1.0, + "siblings.sibs_indicate.sib3.sib3yob": 1.0, + "siblings.sibs_indicate.sib3.sib3LIV": 1.0, + "siblings.sibs_indicate.sib3.sib3yod": 1.0, + "siblings.sibs_indicate.sib3.sib3dem": 1.0, + "siblings.sibs_indicate.sib3.sib3ons": 1.0, + "siblings.sibs_indicate.sib4.sib4yob": 1.0, + "siblings.sibs_indicate.sib4.sib4LIV": 1.0, + "siblings.sibs_indicate.sib4.sib4yod": 1.0, + "siblings.sibs_indicate.sib4.sib4dem": 1.0, + "siblings.sibs_indicate.sib4.sib4ons": 1.0, + "siblings.sibs_indicate.sib5.sib5yob": 1.0, + "siblings.sibs_indicate.sib5.sib5LIV": 1.0, + "siblings.sibs_indicate.sib5.sib5yod": 1.0, + "siblings.sibs_indicate.sib5.sib5dem": 1.0, + "siblings.sibs_indicate.sib5.sib5ons": 1.0, + "siblings.sibs_indicate.sib6.sib6yob": 1.0, + "siblings.sibs_indicate.sib6.sib6LIV": 1.0, + "siblings.sibs_indicate.sib6.sib6yod": 1.0, + "siblings.sibs_indicate.sib6.sib6dem": 1.0, + "siblings.sibs_indicate.sib6.sib6ons": 1.0, + "children.kids": 1.0, + "children.kids_indicate.kid1.kid1yob": 1.0, + "children.kids_indicate.kid1.kid1LIV": 1.0, + "children.kids_indicate.kid1.kid1yod": 1.0, + "children.kids_indicate.kid1.kid1dem": 1.0, + "children.kids_indicate.kid1.kid1ons": 1.0, + "children.kids_indicate.kid2.kid2yob": 1.0, + "children.kids_indicate.kid2.kid2LIV": 1.0, + "children.kids_indicate.kid2.kid2yod": 1.0, + "children.kids_indicate.kid2.kid2dem": 1.0, + "children.kids_indicate.kid2.kid2ons": 1.0, + "children.kids_indicate.kid3.kid3yob": 1.0, + "children.kids_indicate.kid3.kid3LIV": 1.0, + "children.kids_indicate.kid3.kid3yod": 1.0, + "children.kids_indicate.kid3.kid3dem": 1.0, + "children.kids_indicate.kid3.kid3ons": 1.0, + "children.kids_indicate.kid4.kid4yob": 1.0, + "children.kids_indicate.kid4.kid4LIV": 1.0, + "children.kids_indicate.kid4.kid4yod": 1.0, + "children.kids_indicate.kid4.kid4dem": 1.0, + "children.kids_indicate.kid4.kid4ons": 1.0, + "children.kids_indicate.kid5.kid5yob": 1.0, + "children.kids_indicate.kid5.kid5LIV": 1.0, + "children.kids_indicate.kid5.kid5yod": 1.0, + "children.kids_indicate.kid5.kid5dem": 1.0, + "children.kids_indicate.kid5.kid5ons": 1.0, + "children.kids_indicate.kid6.kid6yob": 1.0, + "children.kids_indicate.kid6.kid6LIV": 1.0, + "children.kids_indicate.kid6.kid6yod": 1.0, + "children.kids_indicate.kid6.kid6dem": 1.0, + "children.kids_indicate.kid6.kid6ons": 1.0, + "other_relatives.RELSDEM": 1.0, + "other_relatives.rel_indicate.rel1.rel1yob": 1.0, + "other_relatives.rel_indicate.rel1.rel1LIV": 1.0, + "other_relatives.rel_indicate.rel1.rel1yod": 1.0, + "other_relatives.rel_indicate.rel1.rel1ons": 1.0, + "other_relatives.rel_indicate.rel2.rel2yob": 1.0, + "other_relatives.rel_indicate.rel2.rel2LIV": 1.0, + "other_relatives.rel_indicate.rel2.rel2yod": 1.0, + "other_relatives.rel_indicate.rel2.rel2ons": 1.0, + "other_relatives.rel_indicate.rel3.rel3yob": 1.0, + "other_relatives.rel_indicate.rel3.rel3LIV": 1.0, + "other_relatives.rel_indicate.rel3.rel3yod": 1.0, + "other_relatives.rel_indicate.rel3.rel3ons": 1.0, + "other_relatives.rel_indicate.rel4.rel4yob": 1.0, + "other_relatives.rel_indicate.rel4.rel4LIV": 1.0, + "other_relatives.rel_indicate.rel4.rel4yod": 1.0, + "other_relatives.rel_indicate.rel4.rel4ons": 1.0, + "other_relatives.rel_indicate.rel5.rel5yob": 1.0, + "other_relatives.rel_indicate.rel5.rel5LIV": 1.0, + "other_relatives.rel_indicate.rel5.rel5yod": 1.0, + "other_relatives.rel_indicate.rel5.rel5ons": 1.0, + "other_relatives.rel_indicate.rel6.rel6yob": 1.0, + "other_relatives.rel_indicate.rel6.rel6LIV": 1.0, + "other_relatives.rel_indicate.rel6.rel6yod": 1.0, + "other_relatives.rel_indicate.rel6.rel6ons": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a3v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a3v3.json b/src/encoded/schemas/ivp_a3v3.json new file mode 100644 index 0000000000..4bc2b0f420 --- /dev/null +++ b/src/encoded/schemas/ivp_a3v3.json @@ -0,0 +1,4474 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM A3: SUBJECT FAMILY HISTORY", + "description": "INSTRUCTIONS: This form is to be completed by a clinician with experience in evaluating patients with neurological problems and psychiatric conditions. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A3. Link to NACC Coding Guidebook", + "id": "/profiles/uds_ivp_a3v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": true, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "afffamm": { + "title": "1. Are there affected first-degree relatives (biological parents, full siblings, or biological children)?", + "description": "\"Affected\" = having dementia or one of the non-normal diagnoses listed in Appendix 1 on page 5", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 unknown" + ] + }, + "fadmut": { + "title": "2a. In this family, is there evidence for an AD mutation? If Yes, select predominant mutation.", + "description": "NOTE: APOE Should not be reported here.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 3a)", + "1 Yes, APP", + "2 Yes, PS-1 (PSEN-1)", + "3 Yes, PS-2 (PSEN-2)", + "8 Yes, Other (specify)", + "9 Unknown whether mutation exists (SKIP TO QUESTION 3a)" + ] + }, + "fadmutx": { + "title": "2a1. Other (specify predominant AD mutation in this family):", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs(%).)", + "type": "string" + }, + "fadmuso": { + "title": "2b. Source of evidence for AD mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (SPECIFY):", + "9 Unknown" + ] + }, + "fadmusox": { + "title": "2b1. Other (specify the other source of evidence -AD mutation in this family)", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs (%).)", + "type": "string" + }, + "fftdmut": { + "title": "3a. In this family, is there evidence for an FTLD mutation? If Yes, select predominant mutation.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 4a)", + "1 Yes, MAPT", + "2 Yes, PGRN", + "3 Yes, C9orf72", + "4 Yes, FUS", + "8 Yes, Other (SPECIFY)", + "9 Unknown whether mutation exists (SKIP TO QUESTION 4a)" + ] + }, + "fftdmutx": { + "title": "3a1. Other (specify the predominant FTLD mutation in this family)", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs (%).)", + "type": "string" + }, + "fftdmuso": { + "title": "3b. Source of evidence for FTLD mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (SPECIFY)", + "9 Unknown" + ] + }, + "fftdmusx": { + "title": "3b1. Other (Specify the other source of evidence -FTLD mutation in this family)", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs (%).)", + "type": "string" + }, + "fothmut": { + "title": "4a. In this family, is there evidence for a mutation other than an AD or FTLD mutation? (If No or Unknown, SKIP TO QUESTION 5a)", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 5a)", + "1 Yes (SPECIFY)", + "9 Unknown (SKIP TO QUESTION 5a)" + ] + }, + "fothmutx": { + "title": "4a1. Other (specify the other mutation in this family)", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs (%).)", + "type": "string" + }, + "fothmuso": { + "title": "4b. Source of evidence for other mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (SPECIFY)", + "9 Unknown" + ] + }, + "fothmusx": { + "title": "4b1. Other (Specify the other source of evidence - other mutation in this family)", + "description": "(Any text or numbers with the exception of single quotes('), double quotes (\"), ampersnads (&), and percentage signs (%).)", + "type": "string" + }, + "note_a3_1": { + "title": "BIOLOGICAL PARENTS:", + "description": "Provide information on biological parents below. If birth year is unknown, please provide an approximate year on the Initial Visit Form A3 and ensure that it is consistently reported on any Follow-up Visit Form A as applicable. If it is impossible for the subject and co-participant to estimate the birth year, enter 9999=Unknown. For any biological parent with a neurological or psychiatric condition, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all available evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. For a biological parent with no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. pdf below contains codes for Method of Evaluation", + "type": "object", + "properties": { + "mother": { + "title": "5a. MOTHER:", + "type": "object", + "properties": { + "mommob": { + "title": "5a1. Mother - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "momyob": { + "title": "5a2. Mother - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "momdage": { + "title": "5a3. Mother - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "momneur": { + "title": "5a4. Mother - Primary neurological problem/psychiatric condition*", + "description": "(*CODES for neurological problems and psychiatric conditions)", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "momprdx": { + "title": "5a5. Mother - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "mommoe": { + "title": "5a6. Mother - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "momageo": { + "title": "5a7. Mother - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "father": { + "title": "5b. FATHER:", + "type": "object", + "properties": { + "dadmob": { + "title": "5b1. Father - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "dadyob": { + "title": "5b2. Father - Birth year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "daddage": { + "title": "5b3. Father - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "dadneur": { + "title": "5b4. Father - Primary neurological problem/psychiatric condition*", + "description": "(*CODES for neurological problems and psychiatric conditions)", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "dadprdx": { + "title": "5b5. Father - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "dadmoe": { + "title": "5b6. Father - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "dadageo": { + "title": "5b7. Father - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + } + } + }, + "note_a3_2": { + "title": "Year of birth for full siblings and biological children:", + "description": "If birth year is unknown, please provide an approximate year on UDS Initial Visit Form A3 and UDS Follow-up Visit Form A3 so that the sibling/child with unknown birth year ends up in correct birth order relative to the other siblings/children.Example: A subject is the oldest of three children. The subject was born in 1940 and the middle sibling in 1943; the youngest sibling's birth year is unknown. An approximate birth year of 1944 or later should be assigned to the youngest sibling.Use that same birth year on FTLD Module Form A3a, if applicable, and across all UDS visits so that any new information on a particular sibling or child can be linked to previously submitted information. If it is impossible for the subject and co-participant to estimate year of birth, enter 9999=Unknown.", + "type": "object", + "properties": { + "full_siblings": { + "title": "FULL SIBLINGS:", + "type": "object", + "properties": { + "sibs": { + "title": "6. How many full siblings does the subject have?", + "description": "If subject has no full siblings, SKIP TO QUESTION 7; otherwise provide information on all full siblings below.For any full sibling with a neurological or psychiatric condition, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all avilable evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. For a siblng with no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.( 77 = Adopted, unknown)", + "type": "string" + }, + "sib1": { + "title": "Sibling 1", + "type": "object", + "properties": { + "sib1mob": { + "title": "6a1. Sibling 1 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib1yob": { + "title": "6a2. Sibling 1 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib1agd": { + "title": "6a3. Sibling 1 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib1neu": { + "title": "6a4. Sibling 1 - Primary neurological problem/psychiatric condition*", + "description": "(*CODES for neurological problems and psychiatric conditions)", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib1pdx": { + "title": "6a5. Sibling 1 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib1moe": { + "title": "6a6. Sibling 1 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib1ago": { + "title": "6a7. Sibling 1 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib2": { + "title": "Sibling 2", + "type": "object", + "properties": { + "sib2mob": { + "title": "6b1. Sibling 2 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib2yob": { + "title": "6b2. Sibling 2 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib2agd": { + "title": "6b3. Sibling 2 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib2neu": { + "title": "6b4. Sibling 2 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib2pdx": { + "title": "6b5. Sibling 2 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib2moe": { + "title": "6b6. Sibling 2 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib2ago": { + "title": "6b7. Sibling 2 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib3": { + "title": "Sibling 3", + "type": "object", + "properties": { + "sib3mob": { + "title": "6c1. Sibling 3 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib3yob": { + "title": "6c2. Sibling 3 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib3agd": { + "title": "6c3. Sibling 3 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib3neu": { + "title": "6c4. Sibling 3 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib3pdx": { + "title": "6c5. Sibling 3 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib3moe": { + "title": "6c6. Sibling 3 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib3ago": { + "title": "6c7. Sibling 3 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib4": { + "title": "Sibling 4", + "type": "object", + "properties": { + "sib4mob": { + "title": "6d1. Sibling 4 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib4yob": { + "title": "6d3. Sibling 4 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib4agd": { + "title": "6d3. Sibling 4 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib4neu": { + "title": "6d4. Sibling 4 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib4pdx": { + "title": "6d5. Sibling 4 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib4moe": { + "title": "6d6. Sibling 4 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib4ago": { + "title": "6d7. Sibling 4 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib5": { + "title": "Sibling 5", + "type": "object", + "properties": { + "sib5mob": { + "title": "6e1. Sibling 5 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib5yob": { + "title": "6e2. Sibling 5 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib5agd": { + "title": "6e3. Sibling 5 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib5neu": { + "title": "6e4. Sibling 5 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib5pdx": { + "title": "6e5. Sibling 5 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib5moe": { + "title": "6e6. Sibling 5 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib5ago": { + "title": "6e7. Sibling 5 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib6": { + "title": "Sibling 6", + "type": "object", + "properties": { + "sib6mob": { + "title": "6f1. Sibling 6 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib6yob": { + "title": "6f2. sibling 6 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib6agd": { + "title": "6f3. Sibling 6 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib6neu": { + "title": "6f4. Sibling 6 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib6pdx": { + "title": "6f5. Sibling 6 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib6moe": { + "title": "6f6. Sibling 6 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib6ago": { + "title": "6f7. Sibling 6 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib7": { + "title": "Sibling 7", + "type": "object", + "properties": { + "sib7mob": { + "title": "6g1. Sibling 7 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib7yob": { + "title": "6g2. Sibling 7 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib7agd": { + "title": "6g3. Sibling 7 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib7neu": { + "title": "6g4. Sibling 7 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib7pdx": { + "title": "6g5. Sibling 7 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib7moe": { + "title": "6g6. Sibling 7 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib7ago": { + "title": "6g7. Sibling 7 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib8": { + "title": "Sibling 8", + "type": "object", + "properties": { + "sib8mob": { + "title": "6h1. Sibling 8 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib8yob": { + "title": "6h2. Sibling 8 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib8agd": { + "title": "6h3. Sibling 8 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib8neu": { + "title": "6h4. Sibling 8 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib8pdx": { + "title": "6h5. Sibling 8 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib8moe": { + "title": "6h6. Sibling 8 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib8ago": { + "title": "6h7. Sibling 8 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib9": { + "title": "Sibling 9", + "type": "object", + "properties": { + "sib9mob": { + "title": "6i1. Sibling 9 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib9yob": { + "title": "6i2. Sibling 9 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib9agd": { + "title": "6i3. Sibling 9 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib9neu": { + "title": "6i4. Sibling 9 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib9pdx": { + "title": "6i5. Sibling 9 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib9moe": { + "title": "6i6. Sibling 9 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib9ago": { + "title": "6i7. Sibling 9 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib10": { + "title": "Sibling 10", + "type": "object", + "properties": { + "sib10mob": { + "title": "6j1. Sibling 10 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib10yob": { + "title": "6j2. Sibling 10 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib10agd": { + "title": "6j3. Sibling 10 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib10neu": { + "title": "6j4. Sibling 10 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib10pdx": { + "title": "6j5. Sibling 10 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib10moe": { + "title": "6j6. Sibling 10 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib10ago": { + "title": "6j7. Sibling 10 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib11": { + "title": "Sibling 11", + "type": "object", + "properties": { + "sib11mob": { + "title": "6k1. Sibling 11 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib11yob": { + "title": "6k2. Sibling 11 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib11agd": { + "title": "6k3. Sibling 11 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib11neu": { + "title": "6k4. Sibling 11 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib11pdx": { + "title": "6k5. Sibling 11 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib11moe": { + "title": "6k6. Sibling 11 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib11ago": { + "title": "6k7. Sibling 11 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib12": { + "title": "Sibling 12", + "type": "object", + "properties": { + "sib12mob": { + "title": "6l1. Sibling 12 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib12yob": { + "title": "6l2. Sibling 12 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib12agd": { + "title": "6l3. Sibling 12 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib12neu": { + "title": "6l4. Sibling 12 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib12pdx": { + "title": "6l5. Sibling 12 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib12moe": { + "title": "6l6. Sibling 12 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib12ago": { + "title": "6l7. Sibling 12 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib13": { + "title": "Sibling 13", + "type": "object", + "properties": { + "sib13mob": { + "title": "6m1. Sibling 13 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib13yob": { + "title": "6m2. Sibling 13 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib13agd": { + "title": "6m3. Sibling 13 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib13neu": { + "title": "6m4. Sibling 13 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib13pdx": { + "title": "6m5. Sibling 13 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib13moe": { + "title": "6m6. Sibling 13 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib13ago": { + "title": "6m7. Sibling 13 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib14": { + "title": "Sibling 14", + "type": "object", + "properties": { + "sib14mob": { + "title": "6n1. Sibling 14 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib14yob": { + "title": "6n2. Sibling 14 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib14agd": { + "title": "6n3. Sibling 14 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib14neu": { + "title": "6n4. Sibling 14 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib14pdx": { + "title": "6n5. Sibling 14 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib14moe": { + "title": "6n6. Sibling 14 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib14ago": { + "title": "6n7. Sibling 14 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib15": { + "title": "Sibling 15", + "type": "object", + "properties": { + "sib15mob": { + "title": "6o1. Sibling 15 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib15yob": { + "title": "6o2. Sibling 15 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib15agd": { + "title": "6o3. Sibling 15 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib15neu": { + "title": "6o4. Sibling 15 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib15pdx": { + "title": "6o5. Sibling 15 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib15moe": { + "title": "6o6. Sibling 15 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib15ago": { + "title": "6o7. Sibling 15 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib16": { + "title": "Sibling 16", + "type": "object", + "properties": { + "sib16mob": { + "title": "6p1. Sibling 16 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib16yob": { + "title": "6p2. Sibling 16 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib16agd": { + "title": "6p3. Sibling 16 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib16neu": { + "title": "6p4. Sibling 16 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib16pdx": { + "title": "6p5. Sibling 16 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib16moe": { + "title": "6p6. Sibling 16 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib16ago": { + "title": "6p7. Sibling 16 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib17": { + "title": "Sibling 17", + "type": "object", + "properties": { + "sib17mob": { + "title": "6q1. Sibling 17 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib17yob": { + "title": "6q2. Sibling 17 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib17agd": { + "title": "6q3. Sibling 17 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib17neu": { + "title": "6q4. Sibling 17 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib17pdx": { + "title": "6q5. Sibling 17 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib17moe": { + "title": "6q6. Sibling 17 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib17ago": { + "title": "6q7. Sibling 17 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib18": { + "title": "Sibling 18", + "type": "object", + "properties": { + "sib18mob": { + "title": "6r1. Sibling 18 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib18yob": { + "title": "6r2. Sibling 18 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib18agd": { + "title": "6r3. Sibling 18 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib18neu": { + "title": "6r4. Sibling 18 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib18pdx": { + "title": "6r5. Sibling 18 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib18moe": { + "title": "6r6. Sibling 18 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib18ago": { + "title": "6r7. Sibling 18 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib19": { + "title": "Sibling 19", + "type": "object", + "properties": { + "sib19mob": { + "title": "6s1. Sibling 19 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib19yob": { + "title": "6s2. Sibling 19 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib19agd": { + "title": "6s3. Sibling 19 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib19neu": { + "title": "6s4. Sibling 19 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib19pdx": { + "title": "6s5. Sibling 19 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib19moe": { + "title": "6s6. Sibling 19 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib19ago": { + "title": "6s7. Sibling 19 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "sib20": { + "title": "Sibling 20", + "type": "object", + "properties": { + "sib20mob": { + "title": "6t1. Sibling 20 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "sib20yob": { + "title": "6t2. Sibling 20 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "sib20agd": { + "title": "6t3. Sibling 20 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "sib20neu": { + "title": "6t4. Sibling 20 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "sib20pdx": { + "title": "6t5. Sibling 20 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "sib20moe": { + "title": "6t6. Sibling 20 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "sib20ago": { + "title": "6t7. Sibling 20 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + } + } + }, + "biological_children": { + "title": "BIOLOGICAL CHILDREN:", + "type": "object", + "properties": { + "kids": { + "title": "7. How many biological children does the subject have?", + "description": "If subject has no biological children, END FORM HERE; otherwise provide information on all biological children below.For any biological child with a neurological or psychiatric condition, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all available evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. For a biological child with no neurological or psychiatric problem, enter 8=N/A - no nuerological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.\n(99 = Unknown)", + "type": "string" + }, + "child1": { + "title": "Child 1", + "type": "object", + "properties": { + "kid1mob": { + "title": "7a1. Child 1 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid1yob": { + "title": "7a2. Child 1 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid1agd": { + "title": "7a3. Child 1 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid1neu": { + "title": "7a4. Child 1 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid1pdx": { + "title": "7a5. Child 1 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid1moe": { + "title": "7a6. Child 1 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid1ago": { + "title": "7a7. Child 1 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child2": { + "title": "Child 2", + "type": "object", + "properties": { + "kid2mob": { + "title": "7b1. Child 2 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid2yob": { + "title": "7b1. Child 2 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid2agd": { + "title": "7b3. Child 2 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid2neu": { + "title": "7b4. Child 2 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid2pdx": { + "title": "7b5. Child 2 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid2moe": { + "title": "7b6. Child 2 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid2ago": { + "title": "7b7. Child 2 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child3": { + "title": "Child 3", + "type": "object", + "properties": { + "kid3mob": { + "title": "7c1. Child 3 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid3yob": { + "title": "7c1. Child 3 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid3agd": { + "title": "7c3. Child 3 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid3neu": { + "title": "7c4. Child 3 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid3pdx": { + "title": "7c5. Child 3 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid3moe": { + "title": "7c6. Child 3 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid3ago": { + "title": "7c7. Child 3 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child4": { + "title": "Child 4", + "type": "object", + "properties": { + "kid4mob": { + "title": "7d1. Child 4 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid4yob": { + "title": "7d1. Child 4 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid4agd": { + "title": "7d3. Child 4 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid4neu": { + "title": "7d4. Child 4 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid4pdx": { + "title": "7d5. Child 4 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid4moe": { + "title": "7d6. Child 4 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid4ago": { + "title": "7d7. Child 4 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child5": { + "title": "Child 5", + "type": "object", + "properties": { + "kid5mob": { + "title": "7e1. Child 5 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid5yob": { + "title": "7e1. Child 5 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid5agd": { + "title": "7e3. Child 5 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid5neu": { + "title": "7e4. Child 5 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid5pdx": { + "title": "7e5. Child 5 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid5moe": { + "title": "7e6. Child 5 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid5ago": { + "title": "7e7. Child 5 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child6": { + "title": "Child 6", + "type": "object", + "properties": { + "kid6mob": { + "title": "7f1. Child 6 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid6yob": { + "title": "7f1. Child 6 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid6agd": { + "title": "7f3. Child 6 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid6neu": { + "title": "7f4. Child 6 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid6pdx": { + "title": "7f5. Child 6 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid6moe": { + "title": "7f6. Child 6 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid6ago": { + "title": "7f7. Child 6 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child7": { + "title": "Child 7", + "type": "object", + "properties": { + "kid7mob": { + "title": "7g1. Child 7 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid7yob": { + "title": "7g1. Child 7 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid7agd": { + "title": "7g3. Child 7 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid7neu": { + "title": "7g4. Child 7 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid7pdx": { + "title": "7g5. Child 7 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid7moe": { + "title": "7g6. Child 7 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid7ago": { + "title": "7g7. Child 7 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child8": { + "title": "Child 8", + "type": "object", + "properties": { + "kid8mob": { + "title": "7h1. Child 8 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid8yob": { + "title": "7h1. Child 8 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid8agd": { + "title": "7h3. Child 8 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid8neu": { + "title": "7h4. Child 8 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid8pdx": { + "title": "7h5. Child 8 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid8moe": { + "title": "7h6. Child 8 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid8ago": { + "title": "7h7. Child 8 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child9": { + "title": "Child 9", + "type": "object", + "properties": { + "kid9mob": { + "title": "7i1. Child 9 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid9yob": { + "title": "7i1. Child 9 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid9agd": { + "title": "7i3. Child 9 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid9neu": { + "title": "7i4. Child 9 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid9pdx": { + "title": "7i5. Child 9 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid9moe": { + "title": "7i6. Child 9 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid9ago": { + "title": "7i7. Child 9 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child10": { + "title": "Child 10", + "type": "object", + "properties": { + "kid10mob": { + "title": "7j1. Child 10 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid10yob": { + "title": "7j2. Child 10 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid10agd": { + "title": "7j3. Child 10 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid10neu": { + "title": "7j4. Child 10 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid10pdx": { + "title": "7j5. Child 10 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid10moe": { + "title": "7j6. Child 10 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid10ago": { + "title": "7j7. Child 10 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child11": { + "title": "Child 11", + "type": "object", + "properties": { + "kid11mob": { + "title": "7k1. Child 11 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid11yob": { + "title": "7k1. Child 11 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid11agd": { + "title": "7k3. Child 11 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid11neu": { + "title": "7k4. Child 11 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid11pdx": { + "title": "7k5. Child 11 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid11moe": { + "title": "7k6. Child 11 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid11ago": { + "title": "7k7. Child 11 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child12": { + "title": "Child 12", + "type": "object", + "properties": { + "kid12mob": { + "title": "7l1. Child 12 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid12yob": { + "title": "7l1. Child 12 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid12agd": { + "title": "7l3. Child 12 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid12neu": { + "title": "7l4. Child 12 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid12pdx": { + "title": "7l5. Child 12 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid12moe": { + "title": "7l6. Child 12 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid12ago": { + "title": "7l7. Child 12 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child13": { + "title": "Child 13", + "type": "object", + "properties": { + "kid13mob": { + "title": "7m1. Child 13 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid13yob": { + "title": "7m1. Child 13 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid13agd": { + "title": "7m3. Child 13 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid13neu": { + "title": "7m4. Child 13 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid13pdx": { + "title": "7m5. Child 13 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid13moe": { + "title": "7m6. Child 13 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid13ago": { + "title": "7m7. Child 13 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child14": { + "title": "Child 14", + "type": "object", + "properties": { + "kid14mob": { + "title": "7n1. Child 14 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid14yob": { + "title": "7n1. Child 14 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid14agd": { + "title": "7n3. Child 14 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid14neu": { + "title": "7n4. Child 14 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid14pdx": { + "title": "7n5. Child 14 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid14moe": { + "title": "7n6. Child 14 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid14ago": { + "title": "7n7. Child 14 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + }, + "child15": { + "title": "Child 15", + "type": "object", + "properties": { + "kid15mob": { + "title": "7o1. Child 15 - Birth month", + "description": "(99 = unknown)", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "kid15yob": { + "title": "7o1. Child 15 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "kid15agd": { + "title": "7o3. Child 15 - Age at death", + "description": "(888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "kid15neu": { + "title": "7o4. Child 15 - Primary neurological problem/psychiatric condition*", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "kid15pdx": { + "title": "7o5. Child 15 - Primary Dx**", + "description": "(999 = unknown **CODES for primary diagnosis)", + "type": "string", + "enum": [ + "40 Mild cognitive impairment (MCI), not otherwise specified", + "41 MCI - amnestic, single domain", + "42 MCI - multiple domain with amnesia", + "43 MCI - single domain nonamnestic", + "44 MCI - multiple domain nonamnestic", + "45 Impaired, but not MCI", + "50 Alzheimer's disease dementia", + "70 Dementia with Lewy bodies", + "80 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "kid15moe": { + "title": "7o6. Child 15 - Method of evaluation***", + "description": "(***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION)", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "kid15ago": { + "title": "7o7. Child 15 - Age of onset", + "description": "(999 = Unknown)", + "type": "string" + } + } + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "afffamm": { + "title": "1. Are there affected first-degree relatives (biological parents, full siblings, or biological children)?" + }, + "fadmut": { + "title": "2a. In this family, is there evidence for an AD mutation? If Yes, select predominant mutation." + }, + "fadmutx": { + "title": "2a1. Other (specify predominant AD mutation in this family):" + }, + "fadmuso": { + "title": "2b. Source of evidence for AD mutation (check one):" + }, + "fadmusox": { + "title": "2b1. Other (specify the other source of evidence -AD mutation in this family)" + }, + "fftdmut": { + "title": "3a. In this family, is there evidence for an FTLD mutation? If Yes, select predominant mutation." + }, + "fftdmutx": { + "title": "3a1. Other (specify the predominant FTLD mutation in this family)" + }, + "fftdmuso": { + "title": "3b. Source of evidence for FTLD mutation (check one):" + }, + "fftdmusx": { + "title": "3b1. Other (Specify the other source of evidence -FTLD mutation in this family)" + }, + "fothmut": { + "title": "4a. In this family, is there evidence for a mutation other than an AD or FTLD mutation? (If No or Unknown, SKIP TO QUESTION 5a)" + }, + "fothmutx": { + "title": "4a1. Other (specify the other mutation in this family)" + }, + "fothmuso": { + "title": "4b. Source of evidence for other mutation (check one):" + }, + "fothmusx": { + "title": "4b1. Other (Specify the other source of evidence - other mutation in this family)" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "afffamm": { + "title": "1. Are there affected first-degree relatives (biological parents, full siblings, or biological children)?" + }, + "fadmut": { + "title": "2a. In this family, is there evidence for an AD mutation? If Yes, select predominant mutation." + }, + "fadmutx": { + "title": "2a1. Other (specify predominant AD mutation in this family):" + }, + "fadmuso": { + "title": "2b. Source of evidence for AD mutation (check one):" + }, + "fadmusox": { + "title": "2b1. Other (specify the other source of evidence -AD mutation in this family)" + }, + "fftdmut": { + "title": "3a. In this family, is there evidence for an FTLD mutation? If Yes, select predominant mutation." + }, + "fftdmutx": { + "title": "3a1. Other (specify the predominant FTLD mutation in this family)" + }, + "fftdmuso": { + "title": "3b. Source of evidence for FTLD mutation (check one):" + }, + "fftdmusx": { + "title": "3b1. Other (Specify the other source of evidence -FTLD mutation in this family)" + }, + "fothmut": { + "title": "4a. In this family, is there evidence for a mutation other than an AD or FTLD mutation? (If No or Unknown, SKIP TO QUESTION 5a)" + }, + "fothmutx": { + "title": "4a1. Other (specify the other mutation in this family)" + }, + "fothmuso": { + "title": "4b. Source of evidence for other mutation (check one):" + }, + "fothmusx": { + "title": "4b1. Other (Specify the other source of evidence - other mutation in this family)" + } + }, + "boost_values": { + "patient": 1.0, + "afffamm": 1.0, + "fadmut": 1.0, + "fadmutx": 1.0, + "fadmuso": 1.0, + "fadmusox": 1.0, + "fftdmut": 1.0, + "fftdmutx": 1.0, + "fftdmuso": 1.0, + "fftdmusx": 1.0, + "fothmut": 1.0, + "fothmutx": 1.0, + "fothmuso": 1.0, + "fothmusx": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a3v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a4.json b/src/encoded/schemas/ivp_a4.json new file mode 100644 index 0000000000..7fa69f9e2f --- /dev/null +++ b/src/encoded/schemas/ivp_a4.json @@ -0,0 +1,9493 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM A4: SUBJECT MEDICATIONS", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or ADC staff. The purpose of the form is to record all prescription medications taken by the subject within the two weeks before the current visit. For prescription medications not listed here, please follow the instructions at the end of this form. OTC (non-prescription) medications need not be reported; however, a short list of medications that could be either prescription or OTC follows the prescription list. This list includes commonly reported medications that may be purchased over the counter (but that may also be prescription).", + "id": "/profiles/uds_ivp_a4.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "anymeds" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "anymeds": { + "title": "Is the subject currently taking any medications?", + + "type": "string", + "enum": [ + "0 No (END FORM HERE)", + "1 Yes" + ] + }, + "drugid_1": { + "title": "Select a medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_2": { + "title": "Select a 2nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_3": { + "title": "Select a 3rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_4": { + "title": "Select a 4th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_5": { + "title": "Select a 5th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_6": { + "title": "Select a 6th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_7": { + "title": "Select a 7th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_8": { + "title": "Select a 8th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_9": { + "title": "Select a 9th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_10": { + "title": "Select a 10th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_11": { + "title": "Select a 11th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_12": { + "title": "Select a 12th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_13": { + "title": "Select a 13th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_14": { + "title": "Select a 14th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_15": { + "title": "Select a 15th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_16": { + "title": "Select a 16th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_17": { + "title": "Select a 17th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_18": { + "title": "Select a 18th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_19": { + "title": "Select a 19th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_20": { + "title": "Select a 20th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_21": { + "title": "Select a 21st medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_22": { + "title": "Select a 22nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_23": { + "title": "Select a 23rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_24": { + "title": "Select a 24th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_25": { + "title": "Select a 25th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_26": { + "title": "Select a 26th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_27": { + "title": "Select a 27th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_28": { + "title": "Select a 28th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_29": { + "title": "Select a 29th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_30": { + "title": "Select a 30th medication", + "description": "(last drop down, use look up)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "not_listed_drugs": { + "title": "If a medication is not listed above, specify the drug or brand name and determine its drugID by using the Lookup Tool on NACC website at NACC online Drug Lookup", + + "type": "object", + "properties": { + "drugid_31": { + "title": "Type a drug ID as given in the look up table.", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_31": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_32": { + "title": "Type a 2nd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_32": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_33": { + "title": "Type a 3rd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_33": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_34": { + "title": "Type a 4th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_34": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_35": { + "title": "Type a 5th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_35": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_36": { + "title": "Type a 6th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_36": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_37": { + "title": "Type a 7th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_37": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_38": { + "title": "Type a 8th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_38": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_39": { + "title": "Type a 9th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_39": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_40": { + "title": "Type a 10th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_40": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_41": { + "title": "Type a 11th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_41": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_42": { + "title": "Type a 12th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_42": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_43": { + "title": "Type a 13th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_43": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_44": { + "title": "Type a 14th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_44": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_45": { + "title": "Type a 15th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_45": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_46": { + "title": "Type a 16th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_46": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_47": { + "title": "Type a 17th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_47": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_48": { + "title": "Type a 18th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_48": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_49": { + "title": "Type a 19th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_49": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_50": { + "title": "Type a 20th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_50": { + "title": "Type the name of the drug -", + + "type": "string" + } + } + } + }, + + "boost_values": { + "patient": 1.0, + "anymeds": 1.0, + "drugid_1": 1.0, + "drugid_2": 1.0, + "drugid_3": 1.0, + "drugid_4": 1.0, + "drugid_5": 1.0, + "drugid_6": 1.0, + "drugid_7": 1.0, + "drugid_8": 1.0, + "drugid_9": 1.0, + "drugid_10": 1.0, + "not_listed_drugs.drugid_31": 1.0, + "not_listed_drugs.drug_name_31": 1.0, + "not_listed_drugs.drugid_32": 1.0, + "not_listed_drugs.drug_name_32": 1.0, + "not_listed_drugs.drugid_33": 1.0, + "not_listed_drugs.drug_name_33": 1.0, + "not_listed_drugs.drugid_34": 1.0, + "not_listed_drugs.drug_name_34": 1.0, + "not_listed_drugs.drugid_35": 1.0, + "not_listed_drugs.drug_name_35": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a4.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a4v1.json b/src/encoded/schemas/ivp_a4v1.json new file mode 100644 index 0000000000..b6de49a7aa --- /dev/null +++ b/src/encoded/schemas/ivp_a4v1.json @@ -0,0 +1,4548 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet,Form A4: Subject Medications", + "description": "NOTE: This form is to be completed by the clinician or ADC staff.Record ALL medications (prescription,Examiner’s initials:__ __ __\nnon-prescription, and vitamins/supplements) takenby the subject within the past two weeks.For additional\nclarification, see UDS Coding Guidebook page 19.\nInclude the strength of the medication, the corresponding unit (micrograms, milliliters, international units), and the number of doses (pills,injections, drops, puffs)\nprescribed per day/week/month. Indicate if the medication is prescribed to be used only as needed (PRN) and the average frequency of use of the PRN\nmedication (number of pills, injections, drops, puffs taken per day/week/month).It is helpful to ask the subject to bring the medications to the research assessment,\nso more complete information can be obtained.If the subject does not bring the medications or a detailed list to the assessment, telephone follow-up may be\nnecessary. Record the name and dosage of the medication as the subject is actually taking it.\n", + "id": "/profiles/ivp_a4v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "PMEDS": { + "title": "1 Is the subject currently taking any prescription medications?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "PMA": { + "title": "1A Prescription medication A name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1a_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMAS": { + "title": "1A1 Prescription medication A strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMASU": { + "title": "1A2 Prescription medication A strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1a_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMAF": { + "title": "1A3 Prescription medication A frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMAFU": { + "title": "1A4 Prescription medication A frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1a_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMAP": { + "title": "1A5 Prescription medication A – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1a_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMAPF": { + "title": "1A6 Prescription medication A PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMAPFU": { + "title": "1A7 Prescription medication A PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMB": { + "title": "1B Prescription medication B name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1B_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMBS": { + "title": "1B1 Prescription medication B strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMBSU": { + "title": "1B2 Prescription medication B strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1B_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMBF": { + "title": "1B3 Prescription medication B frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMBFU": { + "title": "1B4 Prescription medication B frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1B_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMBP": { + "title": "1B5 Prescription medication B – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1B_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMBPF": { + "title": "1B6 Prescription medication B PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMBPFU": { + "title": "1B7 Prescription medication B PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMC": { + "title": "1C Prescription medication C name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1C_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMCS": { + "title": "1C1 Prescription medication C strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMCSU": { + "title": "1C2 Prescription medication C strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1C_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMCF": { + "title": "1C3 Prescription medication C frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMCFU": { + "title": "1C4 Prescription medication C frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1C_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMCP": { + "title": "1C5 Prescription medication C – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1C_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMCPF": { + "title": "1C6 Prescription medication C PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMCPFU": { + "title": "1C7 Prescription medication C PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMD": { + "title": "1D Prescription medication D name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1D_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMDS": { + "title": "1D1 Prescription medication D strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMDSU": { + "title": "1D2 Prescription medication D strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1D_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMDF": { + "title": "1D3 Prescription medication D frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMDFU": { + "title": "1D4 Prescription medication D frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1D_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMDP": { + "title": "1D5 Prescription medication D – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1D_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMDPF": { + "title": "1D6 Prescription medication D PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMDPFU": { + "title": "1D7 Prescription medication D PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PME": { + "title": "1E Prescription medication E name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1E_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMES": { + "title": "1E1 Prescription medication E strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMESU": { + "title": "1E2 Prescription medication E strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1E_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMEF": { + "title": "1E3 Prescription medication E frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMEFU": { + "title": "1E4 Prescription medication E frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1E_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMEP": { + "title": "1E5 Prescription medication E – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1E_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMEPF": { + "title": "1E6 Prescription medication E PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMEPFU": { + "title": "1E7 Prescription medication E PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMF": { + "title": "1F Prescription medication F name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1F_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMFS": { + "title": "1F1 Prescription medication F strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMFSU": { + "title": "1F2 Prescription medication F strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1F_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMFF": { + "title": "1F3 Prescription medication F frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMFFU": { + "title": "1F4 Prescription medication F frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1F_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMFP": { + "title": "1F5 Prescription medication F – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1F_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMFPF": { + "title": "1F6 Prescription medication F PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMFPFU": { + "title": "1F7 Prescription medication F PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMG": { + "title": "1G Prescription medication G name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1G_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMGS": { + "title": "1G1 Prescription medication G strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMGSU": { + "title": "1G2 Prescription medication G strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1G_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMGF": { + "title": "1G3 Prescription medication G frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMGFU": { + "title": "1G4 Prescription medication G frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1G_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMGP": { + "title": "1G5 Prescription medication G – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1G_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMGPF": { + "title": "1G6 Prescription medication G PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMGPFU": { + "title": "1G7 Prescription medication G PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMH": { + "title": "1H Prescription medication H name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1H_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMHS": { + "title": "1H1 Prescription medication H strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMHSU": { + "title": "1H2 Prescription medication H strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1H_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMHF": { + "title": "1H3 Prescription medication H frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMHFU": { + "title": "1H4 Prescription medication H frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1H_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMHP": { + "title": "1H5 Prescription medication H – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1H_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMHPF": { + "title": "1H6 Prescription medication H PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMHPFU": { + "title": "1H7 Prescription medication H PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMI": { + "title": "1I Prescription medication I name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1I_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMIS": { + "title": "1I1 Prescription medication I strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMISU": { + "title": "1I2 Prescription medication I strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1I_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMIF": { + "title": "1I3 Prescription medication I frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMIFU": { + "title": "1I4 Prescription medication I frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1I_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMIP": { + "title": "1I5 Prescription medication I – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1I_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMIPF": { + "title": "1I6 Prescription medication I PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMIPFU": { + "title": "1I7 Prescription medication I PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMJ": { + "title": "1J Prescription medication J name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1J_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMJS": { + "title": "1J1 Prescription medication J strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMJSU": { + "title": "1J2 Prescription medication J strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1J_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMJF": { + "title": "1J3 Prescription medication J frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMJFU": { + "title": "1J4 Prescription medication J frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1J_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMJP": { + "title": "1J5 Prescription medication J – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1J_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMJPF": { + "title": "1J6 Prescription medication J PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMJPFU": { + "title": "1J7 Prescription medication J PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMK": { + "title": "1K Prescription medication K name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1K_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMKS": { + "title": "1K1 Prescription medication K strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMKSU": { + "title": "1K2 Prescription medication K strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1K_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMKF": { + "title": "1K3 Prescription medication K frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMKFU": { + "title": "1K4 Prescription medication K frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1K_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMKP": { + "title": "1K5 Prescription medication K – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1K_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMKPF": { + "title": "1K6 Prescription medication K PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMKPFU": { + "title": "1K7 Prescription medication K PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PML": { + "title": "1L Prescription medication L name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1L_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMLS": { + "title": "1L1 Prescription medication L strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMLSU": { + "title": "1L2 Prescription medication L strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1L_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMLF": { + "title": "1L3 Prescription medication L frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMLFU": { + "title": "1L4 Prescription medication L frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1L_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMLP": { + "title": "1L5 Prescription medication L – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1L_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMLPF": { + "title": "1L6 Prescription medication L PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMLPFU": { + "title": "1L7 Prescription medication L PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMM": { + "title": "1M Prescription medication M name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1M_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMMS": { + "title": "1M1 Prescription medication M strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMMSU": { + "title": "1M2 Prescription medication M strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1M_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMMF": { + "title": "1M3 Prescription medication M frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMMFU": { + "title": "1M4 Prescription medication M frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1M_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMMP": { + "title": "1M5 Prescription medication M – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1M_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMMPF": { + "title": "1M6 Prescription medication M PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMMPFU": { + "title": "1M7 Prescription medication M PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMN": { + "title": "1N Prescription medication N name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1N_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMNS": { + "title": "1N1 Prescription medication N strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMNSU": { + "title": "1N2 Prescription medication N strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1N_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMNF": { + "title": "1N3 Prescription medication N frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMNFU": { + "title": "1N4 Prescription medication N frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1N_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMNP": { + "title": "1N5 Prescription medication N – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1N_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMNPF": { + "title": "1N6 Prescription medication N PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMNPFU": { + "title": "1N7 Prescription medication N PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMO": { + "title": "1O Prescription medication O name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1O_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMOS": { + "title": "1O1 Prescription medication O strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMOSU": { + "title": "1O2 Prescription medication O strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1O_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMOF": { + "title": "1O3 Prescription medication O frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMOFU": { + "title": "1O4 Prescription medication O frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1O_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMOP": { + "title": "1O5 Prescription medication O – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1O_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMOPF": { + "title": "1O6 Prescription medication O PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMOPFU": { + "title": "1O7 Prescription medication O PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMP": { + "title": "1P Prescription medication P name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1P_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMPS": { + "title": "1P1 Prescription medication P strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMPSU": { + "title": "1P2 Prescription medication P strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1P_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMPF": { + "title": "1P3 Prescription medication P frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMPFU": { + "title": "1P4 Prescription medication P frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1P_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMPP": { + "title": "1P5 Prescription medication P – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1P_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMPPF": { + "title": "1P6 Prescription medication P PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMPPFU": { + "title": "1P7 Prescription medication P PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMQ": { + "title": "1Q Prescription medication Q name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1Q_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMQS": { + "title": "1Q1 Prescription medication Q strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMQSU": { + "title": "1Q2 Prescription medication Q strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1Q_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMQF": { + "title": "1Q3 Prescription medication Q frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMQFU": { + "title": "1Q4 Prescription medication Q frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1Q_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMQP": { + "title": "1Q5 Prescription medication Q – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1Q_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMQPF": { + "title": "1Q6 Prescription medication Q PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMQPFU": { + "title": "1Q7 Prescription medication Q PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMR": { + "title": "1R Prescription medication R name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1R_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMRS": { + "title": "1R1 Prescription medication R strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMRSU": { + "title": "1R2 Prescription medication R strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1R_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMRF": { + "title": "1R3 Prescription medication R frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMRFU": { + "title": "1R4 Prescription medication R frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1R_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMRP": { + "title": "1R5 Prescription medication R – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1R_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMRPF": { + "title": "1R6 Prescription medication R PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMRPFU": { + "title": "1R7 Prescription medication R PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMS": { + "title": "1S Prescription medication S name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1S_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMSS": { + "title": "1S1 Prescription medication S strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMSSU": { + "title": "1S2 Prescription medication S strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1S_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMSF": { + "title": "1S3 Prescription medication S frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMSFU": { + "title": "1S4 Prescription medication S frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1S_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMSP": { + "title": "1S5 Prescription medication S – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1S_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMSPF": { + "title": "1S6 Prescription medication S PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMSPFU": { + "title": "1S7 Prescription medication S PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "PMT": { + "title": "1T Prescription medication T name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "1T_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "PMTS": { + "title": "1T1 Prescription medication T strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "PMTSU": { + "title": "1T2 Prescription medication T strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "1T_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMTF": { + "title": "1T3 Prescription medication T frequency: total number of doses per day, week or month", + "description": "> 0 to 99, Blank if #1A5, PMAP = 1 (Yes).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMTFU": { + "title": "1T4 Prescription medication T frequency units", + "description": "Blank if #1A5, PMAP = 1 (Yes).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "1T_pre_prn": { + "title": "Prescribed as PRN? (if yes, also indicate PRN frequency)", + "type": "object", + "properties": { + "PMTP": { + "title": "1T5 Prescription medication T – Prescribed as PRN?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "1T_prn_frequency": { + "title": "PRN Frequency (average for the past 2 weeks): Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "PMTPF": { + "title": "1T6 Prescription medication T PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month.", + "description": "> 0 to 99,Blank if #1A5, PMAP = 0 (No).", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "PMTPFU": { + "title": "1T7 Prescription medication T PRN frequency units", + "description": "Blank if #1A5, PMAP = 0 (No).", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 montly" + ] + } + } + }, + "NMEDS": { + "title": "2 Is the subject currently taking any non-prescription medications(OTC)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "NMA": { + "title": "2A Non-prescription medication A name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2A_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMAS": { + "title": "2A1 Non-prescription medication A strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMASU": { + "title": "2A2 Non-prescription medication A strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2A_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMAF": { + "title": "2A3 Non-prescription medication A frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMAFU": { + "title": "2A4 Non-prescription medication A frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMB": { + "title": "2B Non-prescription medication B name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2B_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMBS": { + "title": "2B1 Non-prescription medication B strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMBSU": { + "title": "2B2 Non-prescription medication B strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2B_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMBF": { + "title": "2B3 Non-prescription medication B frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMBFU": { + "title": "2B4 Non-prescription medication B frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMC": { + "title": "2C Non-prescription medication C name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2C_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMCS": { + "title": "2C1 Non-prescription medication C strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMCSU": { + "title": "2C2 Non-prescription medication C strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2C_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMCF": { + "title": "2C3 Non-prescription medication C frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMCFU": { + "title": "2C4 Non-prescription medication C frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMD": { + "title": "2D Non-prescription medication D name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2D_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMDS": { + "title": "2D1 Non-prescription medication D strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMDSU": { + "title": "2D2 Non-prescription medication D strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2D_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMDF": { + "title": "2D3 Non-prescription medication D frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMDFU": { + "title": "2D4 Non-prescription medication D frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NME": { + "title": "2E Non-prescription medication E name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2E_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMES": { + "title": "2E1 Non-prescription medication E strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMESU": { + "title": "2E2 Non-prescription medication E strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2E_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMEF": { + "title": "2E3 Non-prescription medication E frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMEFU": { + "title": "2E4 Non-prescription medication E frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMF": { + "title": "2F Non-prescription medication F name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2F_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMFS": { + "title": "2F1 Non-prescription medication F strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMFSU": { + "title": "2F2 Non-prescription medication F strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2F_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMFF": { + "title": "2F3 Non-prescription medication F frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMFFU": { + "title": "2F4 Non-prescription medication F frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMG": { + "title": "2G Non-prescription medication G name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2G_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMGS": { + "title": "2G1 Non-prescription medication G strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMGSU": { + "title": "2G2 Non-prescription medication G strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2G_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMGF": { + "title": "2G3 Non-prescription medication G frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMGFU": { + "title": "2G4 Non-prescription medication G frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMH": { + "title": "2H Non-prescription medication H name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2H_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMHS": { + "title": "2H1 Non-prescription medication H strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMHSU": { + "title": "2H2 Non-prescription medication H strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2H_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMHF": { + "title": "2H3 Non-prescription medication H frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMHFU": { + "title": "2H4 Non-prescription medication H frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMI": { + "title": "2I Non-prescription medication I name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2I_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMIS": { + "title": "2I1 Non-prescription medication I strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMISU": { + "title": "2I2 Non-prescription medication I strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2I_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMIF": { + "title": "2I3 Non-prescription medication I frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMIFU": { + "title": "2I4 Non-prescription medication I frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMJ": { + "title": "2J Non-prescription medication J name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2J_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMJS": { + "title": "2J1 Non-prescription medication J strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMJSU": { + "title": "2J2 Non-prescription medication J strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2J_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMJF": { + "title": "2J3 Non-prescription medication J frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMJFU": { + "title": "2J4 Non-prescription medication J frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMK": { + "title": "2K Non-prescription medication K name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2K_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMKS": { + "title": "2K1 Non-prescription medication K strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMKSU": { + "title": "2K2 Non-prescription medication K strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2K_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMKF": { + "title": "2K3 Non-prescription medication K frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMKFU": { + "title": "2K4 Non-prescription medication K frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NML": { + "title": "2L Non-prescription medication L name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2L_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMLS": { + "title": "2L1 Non-prescription medication L strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMLSU": { + "title": "2L2 Non-prescription medication L strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2L_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMLF": { + "title": "2L3 Non-prescription medication L frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMLFU": { + "title": "2L4 Non-prescription medication L frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMM": { + "title": "2M Non-prescription medication M name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2M_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMMS": { + "title": "2M1 Non-prescription medication M strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMMSU": { + "title": "2M2 Non-prescription medication M strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2M_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMMF": { + "title": "2M3 Non-prescription medication M frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMMFU": { + "title": "2M4 Non-prescription medication M frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMN": { + "title": "2N Non-prescription medication N name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2N_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMNS": { + "title": "2N1 Non-prescription medication N strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMNSU": { + "title": "2N2 Non-prescription medication N strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2N_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMNF": { + "title": "2N3 Non-prescription medication N frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMNFU": { + "title": "2N4 Non-prescription medication N frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMO": { + "title": "2O Non-prescription medication O name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2O_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMOS": { + "title": "2O1 Non-prescription medication O strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMOSU": { + "title": "2O2 Non-prescription medication O strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2O_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMOF": { + "title": "2O3 Non-prescription medication O frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMOFU": { + "title": "2O4 Non-prescription medication O frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMP": { + "title": "2P Non-prescription medication P name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2P_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMPS": { + "title": "2P1 Non-prescription medication P strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMPSU": { + "title": "2P2 Non-prescription medication P strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2P_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMPF": { + "title": "2P3 Non-prescription medication P frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMPFU": { + "title": "2P4 Non-prescription medication P frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMQ": { + "title": "2Q Non-prescription medication Q name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2Q_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMQS": { + "title": "2Q1 Non-prescription medication Q strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMQSU": { + "title": "2Q2 Non-prescription medication Q strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2Q_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMQF": { + "title": "2Q3 Non-prescription medication Q frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMQFU": { + "title": "2Q4 Non-prescription medication Q frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMR": { + "title": "2R Non-prescription medication R name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2R_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMRS": { + "title": "2R1 Non-prescription medication R strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMRSU": { + "title": "2R2 Non-prescription medication R strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2R_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMRF": { + "title": "2R3 Non-prescription medication R frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMRFU": { + "title": "2R4 Non-prescription medication R frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMS": { + "title": "2S Non-prescription medication S name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2S_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMSS": { + "title": "2S1 Non-prescription medication S strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMSSU": { + "title": "2S2 Non-prescription medication S strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2S_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMSF": { + "title": "2S3 Non-prescription medication S frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMSFU": { + "title": "2S4 Non-prescription medication S frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "NMT": { + "title": "2T Non-prescription medication T name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "2T_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "NMTS": { + "title": "2T1 Non-prescription medication T strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "NMTSU": { + "title": "2T2 Non-prescription medication T strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "2T_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "NMTF": { + "title": "2T3 Non-prescription medication T frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "NMTFU": { + "title": "2T4 Non-prescription medication T frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VITASUPS": { + "title": "3 Is the subject currently taking any vitamins or supplements?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "VSA": { + "title": "3A Vitamin/supplement A name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3A_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSAS": { + "title": "3A1 Vitamin/supplement A strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSASU": { + "title": "3A2 Vitamin/supplement A strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3A_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSAF": { + "title": "3A3 Vitamin/supplement A frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSAFU": { + "title": "3A4 Vitamin/supplement A frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSB": { + "title": "3B Vitamin/supplement B name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3B_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSBS": { + "title": "3B1 Vitamin/supplement B strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSBSU": { + "title": "3B2 Vitamin/supplement B strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3B_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSBF": { + "title": "3B3 Vitamin/supplement B frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSBFU": { + "title": "3B4 Vitamin/supplement B frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSC": { + "title": "3C Vitamin/supplement C name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3C_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSCS": { + "title": "3C1 Vitamin/supplement C strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSCSU": { + "title": "3C2 Vitamin/supplement C strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3C_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSCF": { + "title": "3C3 Vitamin/supplement C frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSCFU": { + "title": "3C4 Vitamin/supplement C frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSD": { + "title": "3D Vitamin/supplement D name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3D_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSDS": { + "title": "3D1 Vitamin/supplement D strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSDSU": { + "title": "3D2 Vitamin/supplement D strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3D_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSDF": { + "title": "3D3 Vitamin/supplement D frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSDFU": { + "title": "3D4 Vitamin/supplement D frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSE": { + "title": "3E Vitamin/supplement E name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3E_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSES": { + "title": "3E1 Vitamin/supplement E strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSESU": { + "title": "3E2 Vitamin/supplement E strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3E_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSEF": { + "title": "3E3 Vitamin/supplement E frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSEFU": { + "title": "3E4 Vitamin/supplement E frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSF": { + "title": "3F Vitamin/supplement F name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3F_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSFS": { + "title": "3F1 Vitamin/supplement F strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSFSU": { + "title": "3F2 Vitamin/supplement F strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3F_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSFF": { + "title": "3F3 Vitamin/supplement F frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSFFU": { + "title": "3F4 Vitamin/supplement F frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSG": { + "title": "3G Vitamin/supplement G name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3G_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSGS": { + "title": "3G1 Vitamin/supplement G strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSGSU": { + "title": "3G2 Vitamin/supplement G strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3G_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSGF": { + "title": "3G3 Vitamin/supplement G frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSGFU": { + "title": "3G4 Vitamin/supplement G frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSH": { + "title": "3H Vitamin/supplement H name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3H_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSHS": { + "title": "3H1 Vitamin/supplement H strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSHSU": { + "title": "3H2 Vitamin/supplement H strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3H_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSHF": { + "title": "3H3 Vitamin/supplement H frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSHFU": { + "title": "3H4 Vitamin/supplement H frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSI": { + "title": "3I Vitamin/supplement I name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3I_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSIS": { + "title": "3I1 Vitamin/supplement I strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSISU": { + "title": "3I2 Vitamin/supplement I strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3I_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSIF": { + "title": "3I3 Vitamin/supplement I frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSIFU": { + "title": "3I4 Vitamin/supplement I frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSJ": { + "title": "3J Vitamin/supplement J name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3J_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSJS": { + "title": "3J1 Vitamin/supplement J strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSJSU": { + "title": "3J2 Vitamin/supplement J strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3J_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSJF": { + "title": "3J3 Vitamin/supplement J frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSJFU": { + "title": "3J4 Vitamin/supplement J frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSK": { + "title": "3K Vitamin/supplement K name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3K_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSKS": { + "title": "3K1 Vitamin/supplement K strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSKSU": { + "title": "3K2 Vitamin/supplement K strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3K_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSKF": { + "title": "3K3 Vitamin/supplement K frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSKFU": { + "title": "3K4 Vitamin/supplement K frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSL": { + "title": "3L Vitamin/supplement L name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3L_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSLS": { + "title": "3L1 Vitamin/supplement L strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSLSU": { + "title": "3L2 Vitamin/supplement L strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3L_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSLF": { + "title": "3L3 Vitamin/supplement L frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSLFU": { + "title": "3L4 Vitamin/supplement L frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSM": { + "title": "3M Vitamin/supplement M name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3M_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSMS": { + "title": "3M1 Vitamin/supplement M strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSMSU": { + "title": "3M2 Vitamin/supplement M strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3M_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSMF": { + "title": "3M3 Vitamin/supplement M frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSMFU": { + "title": "3M4 Vitamin/supplement M frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSN": { + "title": "3N Vitamin/supplement N name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3N_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSNS": { + "title": "3N1 Vitamin/supplement N strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSNSU": { + "title": "3N2 Vitamin/supplement N strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3N_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSNF": { + "title": "3N3 Vitamin/supplement N frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSNFU": { + "title": "3N4 Vitamin/supplement N frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSO": { + "title": "3O Vitamin/supplement O name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3O_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSOS": { + "title": "3O1 Vitamin/supplement O strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSOSU": { + "title": "3O2 Vitamin/supplement O strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3O_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSOF": { + "title": "3O3 Vitamin/supplement O frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSOFU": { + "title": "3O4 Vitamin/supplement O frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSP": { + "title": "3P Vitamin/supplement P name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3P_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSPS": { + "title": "3P1 Vitamin/supplement P strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSPSU": { + "title": "3P2 Vitamin/supplement P strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3P_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSPF": { + "title": "3P3 Vitamin/supplement P frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSPFU": { + "title": "3P4 Vitamin/supplement P frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSQ": { + "title": "3Q Vitamin/supplement Q name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3Q_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSQS": { + "title": "3Q1 Vitamin/supplement Q strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSQSU": { + "title": "3Q2 Vitamin/supplement Q strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3Q_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSQF": { + "title": "3Q3 Vitamin/supplement Q frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSQFU": { + "title": "3Q4 Vitamin/supplement Q frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSR": { + "title": "3R Vitamin/supplement R name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3R_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSRS": { + "title": "3R1 Vitamin/supplement R strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSRSU": { + "title": "3R2 Vitamin/supplement R strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3R_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSRF": { + "title": "3R3 Vitamin/supplement R frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSRFU": { + "title": "3R4 Vitamin/supplement R frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VSS": { + "title": "3S Vitamin/supplement S name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3S_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSSS": { + "title": "3S1 Vitamin/supplement S strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSSSU": { + "title": "3S2 Vitamin/supplement S strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3S_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSSF": { + "title": "3S3 Vitamin/supplement S frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSSFU": { + "title": "3S4 Vitamin/supplement S frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + }, + "VST": { + "title": "3T Vitamin/supplement T name", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "3T_medi_strength": { + "title": "Medication strength: Enter numeric value for strength, then indicate the appropriate unit of measure (μg, mg, mL, IU)", + "type": "object", + "properties": { + "VSTS": { + "title": "3T1 Vitamin/supplement T strength", + "description": "> 0.00 to 99999 (decimals allowed)", + "type": "number", + "minimum": 0.00, + "maximum": 99999, + "exclusiveMinimum": true + }, + "VSTSU": { + "title": "3T2 Vitamin/supplement T strength units", + "type": "string", + "enum": [ + "1 µg", + "2 mg", + "3 ml", + "4 IU" + ] + } + } + }, + "3T_frequency": { + "title": "Frequency: Enter numeric value for total number of doses taken per Day, Week, or Month", + "type": "object", + "properties": { + "VSTF": { + "title": "3T3 Vitamin/supplement T frequency: total number of doses per day, week or month", + "description": "> 0 to 99", + "type": "integer", + "minimum": 1, + "maximum": 99 + }, + "VSTFU": { + "title": "3T4 Vitamin/supplement T frequency units", + "type": "string", + "enum": [ + "1 daily", + "2 weekly", + "3 monthly" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "PMEDS": { + "title": "1 Is the subject currently taking any prescription medications?" + }, + "PMA": { + "title": "1A Prescription medication A name" + }, + "1a_medi_strength.PMAS": { + "title": "1A1 Prescription medication A strength" + }, + "1a_medi_strength.PMASU": { + "title": "1A2 Prescription medication A strength units" + }, + "1a_frequency.PMAF": { + "title": "1A3 Prescription medication A frequency: total number of doses per day, week or month" + }, + "1a_frequency.PMAFU": { + "title": "1A4 Prescription medication A frequency units" + }, + "1a_pre_prn.PMAP": { + "title": "1A5 Prescription medication A – Prescribed as PRN?" + }, + "1a_prn_frequency.PMAPF": { + "title": "1A6 Prescription medication A PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1a_prn_frequency.PMAPFU": { + "title": "1A7 Prescription medication A PRN frequency units" + }, + "PMB": { + "title": "1B Prescription medication B name" + }, + "1B_medi_strength.PMBS": { + "title": "1B1 Prescription medication B strength" + }, + "1B_medi_strength.PMBSU": { + "title": "1B2 Prescription medication B strength units" + }, + "1B_frequency.PMBF": { + "title": "1B3 Prescription medication B frequency: total number of doses per day, week or month" + }, + "1B_frequency.PMBFU": { + "title": "1B4 Prescription medication B frequency units" + }, + "1B_pre_prn.PMBP": { + "title": "1B5 Prescription medication B – Prescribed as PRN?" + }, + "1B_prn_frequency.PMBPF": { + "title": "1B6 Prescription medication B PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1B_prn_frequency.PMBPFU": { + "title": "1B7 Prescription medication B PRN frequency units" + }, + "PMC": { + "title": "1C Prescription medication C name" + }, + "1C_medi_strength.PMCS": { + "title": "1C1 Prescription medication C strength" + }, + "1C_medi_strength.PMCSU": { + "title": "1C2 Prescription medication C strength units" + }, + "1C_frequency.PMCF": { + "title": "1C3 Prescription medication C frequency: total number of doses per day, week or month" + }, + "1C_frequency.PMCFU": { + "title": "1C4 Prescription medication C frequency units" + }, + "1C_pre_prn.PMCP": { + "title": "1C5 Prescription medication C – Prescribed as PRN?" + }, + "1C_prn_frequency.PMCPF": { + "title": "1C6 Prescription medication C PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1C_prn_frequency.PMCPFU": { + "title": "1C7 Prescription medication C PRN frequency units" + }, + "PMD": { + "title": "1D Prescription medication D name" + }, + "1D_medi_strength.PMDS": { + "title": "1D1 Prescription medication D strength" + }, + "1D_medi_strength.PMDSU": { + "title": "1D2 Prescription medication D strength units" + }, + "1D_frequency.PMDF": { + "title": "1D3 Prescription medication D frequency: total number of doses per day, week or month" + }, + "1D_frequency.PMDFU": { + "title": "1D4 Prescription medication D frequency units" + }, + "1D_pre_prn.PMDP": { + "title": "1D5 Prescription medication D – Prescribed as PRN?" + }, + "1D_prn_frequency.PMDPF": { + "title": "1D6 Prescription medication D PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1D_prn_frequency.PMDPFU": { + "title": "1D7 Prescription medication D PRN frequency units" + }, + "PME": { + "title": "1E Prescription medication E name" + }, + "1E_medi_strength.PMES": { + "title": "1E1 Prescription medication E strength" + }, + "1E_medi_strength.PMESU": { + "title": "1E2 Prescription medication E strength units" + }, + "1E_frequency.PMEF": { + "title": "1E3 Prescription medication E frequency: total number of doses per day, week or month" + }, + "1E_frequency.PMEFU": { + "title": "1E4 Prescription medication E frequency units" + }, + "1E_pre_prn.PMEP": { + "title": "1E5 Prescription medication E – Prescribed as PRN?" + }, + "1E_prn_frequency.PMEPF": { + "title": "1E6 Prescription medication E PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1E_prn_frequency.PMEPFU": { + "title": "1E7 Prescription medication E PRN frequency units" + }, + "NMEDS": { + "title": "2 Is the subject currently taking any non-prescription medications(OTC)?" + }, + "NMA": { + "title": "2A Non-prescription medication A name" + }, + "2A_medi_strength.NMAS": { + "title": "2A1 Non-prescription medication A strength" + }, + "2A_medi_strength.NMASU": { + "title": "2A2 Non-prescription medication A strength units" + }, + "2A_frequency.NMAF": { + "title": "2A3 Non-prescription medication A frequency: total number of doses per day, week or month" + }, + "2A_frequency.NMAFU": { + "title": "2A4 Non-prescription medication A frequency units" + }, + "NMB": { + "title": "2B Non-prescription medication B name" + }, + "2B_medi_strength.NMBS": { + "title": "2B1 Non-prescription medication B strength" + }, + "2B_medi_strength.NMBSU": { + "title": "2B2 Non-prescription medication B strength units" + }, + "2B_frequency.NMBF": { + "title": "2B3 Non-prescription medication B frequency: total number of doses per day, week or month" + }, + "2B_frequency.NMBFU": { + "title": "2B4 Non-prescription medication B frequency units" + }, + "NMC": { + "title": "2C Non-prescription medication C name" + }, + "2C_medi_strength.NMCS": { + "title": "2C1 Non-prescription medication C strength" + }, + "2C_medi_strength.NMCSU": { + "title": "2C2 Non-prescription medication C strength units" + }, + "2C_frequency.NMCF": { + "title": "2C3 Non-prescription medication C frequency: total number of doses per day, week or month" + }, + "2C_frequency.NMCFU": { + "title": "2C4 Non-prescription medication C frequency units" + }, + "NMD": { + "title": "2D Non-prescription medication D name" + }, + "2D_medi_strength.NMDS": { + "title": "2D1 Non-prescription medication D strength" + }, + "2D_medi_strength.NMDSU": { + "title": "2D2 Non-prescription medication D strength units" + }, + "2D_frequency.NMDF": { + "title": "2D3 Non-prescription medication D frequency: total number of doses per day, week or month" + }, + "2D_frequency.NMDFU": { + "title": "2D4 Non-prescription medication D frequency units" + }, + "NME": { + "title": "2E Non-prescription medication E name" + }, + "2E_medi_strength.NMES": { + "title": "2E1 Non-prescription medication E strength" + }, + "2E_medi_strength.NMESU": { + "title": "2E2 Non-prescription medication E strength units" + }, + "2E_frequency.NMEF": { + "title": "2E3 Non-prescription medication E frequency: total number of doses per day, week or month" + }, + "2E_frequency.NMEFU": { + "title": "2E4 Non-prescription medication E frequency units" + }, + "VITASUPS": { + "title": "3 Is the subject currently taking any vitamins or supplements?" + }, + "VSA": { + "title": "3A Vitamin/supplement A name" + }, + "3A_medi_strength.VSAS": { + "title": "3A1 Vitamin/supplement A strength" + }, + "3A_medi_strength.VSASU": { + "title": "3A2 Vitamin/supplement A strength units" + }, + "3A_frequency.VSAF": { + "title": "3A3 Vitamin/supplement A frequency: total number of doses per day, week or month" + }, + "3A_frequency.VSAFU": { + "title": "3A4 Vitamin/supplement A frequency units" + }, + "VSB": { + "title": "3B Vitamin/supplement B name" + }, + "3B_medi_strength.VSBS": { + "title": "3B1 Vitamin/supplement B strength" + }, + "3B_medi_strength.VSBSU": { + "title": "3B2 Vitamin/supplement B strength units" + }, + "3B_frequency.VSBF": { + "title": "3B3 Vitamin/supplement B frequency: total number of doses per day, week or month" + }, + "3B_frequency.VSBFU": { + "title": "3B4 Vitamin/supplement B frequency units" + }, + "VSC": { + "title": "3C Vitamin/supplement C name" + }, + "3C_medi_strength.VSCS": { + "title": "3C1 Vitamin/supplement C strength" + }, + "3C_medi_strength.VSCSU": { + "title": "3C2 Vitamin/supplement C strength units" + }, + "3C_frequency.VSCF": { + "title": "3C3 Vitamin/supplement C frequency: total number of doses per day, week or month" + }, + "3C_frequency.VSCFU": { + "title": "3C4 Vitamin/supplement C frequency units" + }, + "VSD": { + "title": "3D Vitamin/supplement D name" + }, + "3D_medi_strength.VSDS": { + "title": "3D1 Vitamin/supplement D strength" + }, + "3D_medi_strength.VSDSU": { + "title": "3D2 Vitamin/supplement D strength units" + }, + "3D_frequency.VSDF": { + "title": "3D3 Vitamin/supplement D frequency: total number of doses per day, week or month" + }, + "3D_frequency.VSDFU": { + "title": "3D4 Vitamin/supplement D frequency units" + }, + "VSE": { + "title": "3E Vitamin/supplement E name" + }, + "3E_medi_strength.VSES": { + "title": "3E1 Vitamin/supplement E strength" + }, + "3E_medi_strength.VSESU": { + "title": "3E2 Vitamin/supplement E strength units" + }, + "3E_frequency.VSEF": { + "title": "3E3 Vitamin/supplement E frequency: total number of doses per day, week or month" + }, + "3E_frequency.VSEFU": { + "title": "3E4 Vitamin/supplement E frequency units" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "PMEDS": { + "title": "1 Is the subject currently taking any prescription medications?" + }, + "PMA": { + "title": "1A Prescription medication A name" + }, + "1a_medi_strength.PMAS": { + "title": "1A1 Prescription medication A strength" + }, + "1a_medi_strength.PMASU": { + "title": "1A2 Prescription medication A strength units" + }, + "1a_frequency.PMAF": { + "title": "1A3 Prescription medication A frequency: total number of doses per day, week or month" + }, + "1a_frequency.PMAFU": { + "title": "1A4 Prescription medication A frequency units" + }, + "1a_pre_prn.PMAP": { + "title": "1A5 Prescription medication A – Prescribed as PRN?" + }, + "1a_prn_frequency.PMAPF": { + "title": "1A6 Prescription medication A PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1a_prn_frequency.PMAPFU": { + "title": "1A7 Prescription medication A PRN frequency units" + }, + "PMB": { + "title": "1B Prescription medication B name" + }, + "1B_medi_strength.PMBS": { + "title": "1B1 Prescription medication B strength" + }, + "1B_medi_strength.PMBSU": { + "title": "1B2 Prescription medication B strength units" + }, + "1B_frequency.PMBF": { + "title": "1B3 Prescription medication B frequency: total number of doses per day, week or month" + }, + "1B_frequency.PMBFU": { + "title": "1B4 Prescription medication B frequency units" + }, + "1B_pre_prn.PMBP": { + "title": "1B5 Prescription medication B – Prescribed as PRN?" + }, + "1B_prn_frequency.PMBPF": { + "title": "1B6 Prescription medication B PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1B_prn_frequency.PMBPFU": { + "title": "1B7 Prescription medication B PRN frequency units" + }, + "PMC": { + "title": "1C Prescription medication C name" + }, + "1C_medi_strength.PMCS": { + "title": "1C1 Prescription medication C strength" + }, + "1C_medi_strength.PMCSU": { + "title": "1C2 Prescription medication C strength units" + }, + "1C_frequency.PMCF": { + "title": "1C3 Prescription medication C frequency: total number of doses per day, week or month" + }, + "1C_frequency.PMCFU": { + "title": "1C4 Prescription medication C frequency units" + }, + "1C_pre_prn.PMCP": { + "title": "1C5 Prescription medication C – Prescribed as PRN?" + }, + "1C_prn_frequency.PMCPF": { + "title": "1C6 Prescription medication C PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1C_prn_frequency.PMCPFU": { + "title": "1C7 Prescription medication C PRN frequency units" + }, + "PMD": { + "title": "1D Prescription medication D name" + }, + "1D_medi_strength.PMDS": { + "title": "1D1 Prescription medication D strength" + }, + "1D_medi_strength.PMDSU": { + "title": "1D2 Prescription medication D strength units" + }, + "1D_frequency.PMDF": { + "title": "1D3 Prescription medication D frequency: total number of doses per day, week or month" + }, + "1D_frequency.PMDFU": { + "title": "1D4 Prescription medication D frequency units" + }, + "1D_pre_prn.PMDP": { + "title": "1D5 Prescription medication D – Prescribed as PRN?" + }, + "1D_prn_frequency.PMDPF": { + "title": "1D6 Prescription medication D PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1D_prn_frequency.PMDPFU": { + "title": "1D7 Prescription medication D PRN frequency units" + }, + "PME": { + "title": "1E Prescription medication E name" + }, + "1E_medi_strength.PMES": { + "title": "1E1 Prescription medication E strength" + }, + "1E_medi_strength.PMESU": { + "title": "1E2 Prescription medication E strength units" + }, + "1E_frequency.PMEF": { + "title": "1E3 Prescription medication E frequency: total number of doses per day, week or month" + }, + "1E_frequency.PMEFU": { + "title": "1E4 Prescription medication E frequency units" + }, + "1E_pre_prn.PMEP": { + "title": "1E5 Prescription medication E – Prescribed as PRN?" + }, + "1E_prn_frequency.PMEPF": { + "title": "1E6 Prescription medication E PRN frequency (average for the past 2 weeks): total number of doses taken per day, week or month." + }, + "1E_prn_frequency.PMEPFU": { + "title": "1E7 Prescription medication E PRN frequency units" + }, + "NMEDS": { + "title": "2 Is the subject currently taking any non-prescription medications(OTC)?" + }, + "NMA": { + "title": "2A Non-prescription medication A name" + }, + "2A_medi_strength.NMAS": { + "title": "2A1 Non-prescription medication A strength" + }, + "2A_medi_strength.NMASU": { + "title": "2A2 Non-prescription medication A strength units" + }, + "2A_frequency.NMAF": { + "title": "2A3 Non-prescription medication A frequency: total number of doses per day, week or month" + }, + "2A_frequency.NMAFU": { + "title": "2A4 Non-prescription medication A frequency units" + }, + "NMB": { + "title": "2B Non-prescription medication B name" + }, + "2B_medi_strength.NMBS": { + "title": "2B1 Non-prescription medication B strength" + }, + "2B_medi_strength.NMBSU": { + "title": "2B2 Non-prescription medication B strength units" + }, + "2B_frequency.NMBF": { + "title": "2B3 Non-prescription medication B frequency: total number of doses per day, week or month" + }, + "2B_frequency.NMBFU": { + "title": "2B4 Non-prescription medication B frequency units" + }, + "NMC": { + "title": "2C Non-prescription medication C name" + }, + "2C_medi_strength.NMCS": { + "title": "2C1 Non-prescription medication C strength" + }, + "2C_medi_strength.NMCSU": { + "title": "2C2 Non-prescription medication C strength units" + }, + "2C_frequency.NMCF": { + "title": "2C3 Non-prescription medication C frequency: total number of doses per day, week or month" + }, + "2C_frequency.NMCFU": { + "title": "2C4 Non-prescription medication C frequency units" + }, + "NMD": { + "title": "2D Non-prescription medication D name" + }, + "2D_medi_strength.NMDS": { + "title": "2D1 Non-prescription medication D strength" + }, + "2D_medi_strength.NMDSU": { + "title": "2D2 Non-prescription medication D strength units" + }, + "2D_frequency.NMDF": { + "title": "2D3 Non-prescription medication D frequency: total number of doses per day, week or month" + }, + "2D_frequency.NMDFU": { + "title": "2D4 Non-prescription medication D frequency units" + }, + "NME": { + "title": "2E Non-prescription medication E name" + }, + "2E_medi_strength.NMES": { + "title": "2E1 Non-prescription medication E strength" + }, + "2E_medi_strength.NMESU": { + "title": "2E2 Non-prescription medication E strength units" + }, + "2E_frequency.NMEF": { + "title": "2E3 Non-prescription medication E frequency: total number of doses per day, week or month" + }, + "2E_frequency.NMEFU": { + "title": "2E4 Non-prescription medication E frequency units" + }, + "VITASUPS": { + "title": "3 Is the subject currently taking any vitamins or supplements?" + }, + "VSA": { + "title": "3A Vitamin/supplement A name" + }, + "3A_medi_strength.VSAS": { + "title": "3A1 Vitamin/supplement A strength" + }, + "3A_medi_strength.VSASU": { + "title": "3A2 Vitamin/supplement A strength units" + }, + "3A_frequency.VSAF": { + "title": "3A3 Vitamin/supplement A frequency: total number of doses per day, week or month" + }, + "3A_frequency.VSAFU": { + "title": "3A4 Vitamin/supplement A frequency units" + }, + "VSB": { + "title": "3B Vitamin/supplement B name" + }, + "3B_medi_strength.VSBS": { + "title": "3B1 Vitamin/supplement B strength" + }, + "3B_medi_strength.VSBSU": { + "title": "3B2 Vitamin/supplement B strength units" + }, + "3B_frequency.VSBF": { + "title": "3B3 Vitamin/supplement B frequency: total number of doses per day, week or month" + }, + "3B_frequency.VSBFU": { + "title": "3B4 Vitamin/supplement B frequency units" + }, + "VSC": { + "title": "3C Vitamin/supplement C name" + }, + "3C_medi_strength.VSCS": { + "title": "3C1 Vitamin/supplement C strength" + }, + "3C_medi_strength.VSCSU": { + "title": "3C2 Vitamin/supplement C strength units" + }, + "3C_frequency.VSCF": { + "title": "3C3 Vitamin/supplement C frequency: total number of doses per day, week or month" + }, + "3C_frequency.VSCFU": { + "title": "3C4 Vitamin/supplement C frequency units" + }, + "VSD": { + "title": "3D Vitamin/supplement D name" + }, + "3D_medi_strength.VSDS": { + "title": "3D1 Vitamin/supplement D strength" + }, + "3D_medi_strength.VSDSU": { + "title": "3D2 Vitamin/supplement D strength units" + }, + "3D_frequency.VSDF": { + "title": "3D3 Vitamin/supplement D frequency: total number of doses per day, week or month" + }, + "3D_frequency.VSDFU": { + "title": "3D4 Vitamin/supplement D frequency units" + }, + "VSE": { + "title": "3E Vitamin/supplement E name" + }, + "3E_medi_strength.VSES": { + "title": "3E1 Vitamin/supplement E strength" + }, + "3E_medi_strength.VSESU": { + "title": "3E2 Vitamin/supplement E strength units" + }, + "3E_frequency.VSEF": { + "title": "3E3 Vitamin/supplement E frequency: total number of doses per day, week or month" + }, + "3E_frequency.VSEFU": { + "title": "3E4 Vitamin/supplement E frequency units" + } + }, + "boost_values": { + "patient": 1.0, + "PMEDS": 1.0, + "PMA": 1.0, + "1a_medi_strength.PMAS": 1.0, + "1a_medi_strength.PMASU": 1.0, + "1a_frequency.PMAF": 1.0, + "1a_frequency.PMAFU": 1.0, + "1a_pre_prn.PMAP": 1.0, + "1a_prn_frequency.PMAPF": 1.0, + "1a_prn_frequency.PMAPFU": 1.0, + "PMB": 1.0, + "1B_medi_strength.PMBS": 1.0, + "1B_medi_strength.PMBSU": 1.0, + "1B_frequency.PMBF": 1.0, + "1B_frequency.PMBFU": 1.0, + "1B_pre_prn.PMBP": 1.0, + "1B_prn_frequency.PMBPF": 1.0, + "1B_prn_frequency.PMBPFU": 1.0, + "PMC": 1.0, + "1C_medi_strength.PMCS": 1.0, + "1C_medi_strength.PMCSU": 1.0, + "1C_frequency.PMCF": 1.0, + "1C_frequency.PMCFU": 1.0, + "1C_pre_prn.PMCP": 1.0, + "1C_prn_frequency.PMCPF": 1.0, + "1C_prn_frequency.PMCPFU": 1.0, + "PMD": 1.0, + "1D_medi_strength.PMDS": 1.0, + "1D_medi_strength.PMDSU": 1.0, + "1D_frequency.PMDF": 1.0, + "1D_frequency.PMDFU": 1.0, + "1D_pre_prn.PMDP": 1.0, + "1D_prn_frequency.PMDPF": 1.0, + "1D_prn_frequency.PMDPFU": 1.0, + "PME": 1.0, + "1E_medi_strength.PMES": 1.0, + "1E_medi_strength.PMESU": 1.0, + "1E_frequency.PMEF": 1.0, + "1E_frequency.PMEFU": 1.0, + "1E_pre_prn.PMEP": 1.0, + "1E_prn_frequency.PMEPF": 1.0, + "1E_prn_frequency.PMEPFU": 1.0, + "NMEDS": 1.0, + "NMA": 1.0, + "2A_medi_strength.NMAS": 1.0, + "2A_medi_strength.NMASU": 1.0, + "2A_frequency.NMAF": 1.0, + "2A_frequency.NMAFU": 1.0, + "NMB": 1.0, + "2B_medi_strength.NMBS": 1.0, + "2B_medi_strength.NMBSU": 1.0, + "2B_frequency.NMBF": 1.0, + "2B_frequency.NMBFU": 1.0, + "NMC": 1.0, + "2C_medi_strength.NMCS": 1.0, + "2C_medi_strength.NMCSU": 1.0, + "2C_frequency.NMCF": 1.0, + "2C_frequency.NMCFU": 1.0, + "NMD": 1.0, + "2D_medi_strength.NMDS": 1.0, + "2D_medi_strength.NMDSU": 1.0, + "2D_frequency.NMDF": 1.0, + "2D_frequency.NMDFU": 1.0, + "NME": 1.0, + "2E_medi_strength.NMES": 1.0, + "2E_medi_strength.NMESU": 1.0, + "2E_frequency.NMEF": 1.0, + "2E_frequency.NMEFU": 1.0, + "VITASUPS": 1.0, + "VSA": 1.0, + "3A_medi_strength.VSAS": 1.0, + "3A_medi_strength.VSASU": 1.0, + "3A_frequency.VSAF": 1.0, + "3A_frequency.VSAFU": 1.0, + "VSB": 1.0, + "3B_medi_strength.VSBS": 1.0, + "3B_medi_strength.VSBSU": 1.0, + "3B_frequency.VSBF": 1.0, + "3B_frequency.VSBFU": 1.0, + "VSC": 1.0, + "3C_medi_strength.VSCS": 1.0, + "3C_medi_strength.VSCSU": 1.0, + "3C_frequency.VSCF": 1.0, + "3C_frequency.VSCFU": 1.0, + "VSD": 1.0, + "3D_medi_strength.VSDS": 1.0, + "3D_medi_strength.VSDSU": 1.0, + "3D_frequency.VSDF": 1.0, + "3D_frequency.VSDFU": 1.0, + "VSE": 1.0, + "3E_medi_strength.VSES": 1.0, + "3E_medi_strength.VSESU": 1.0, + "3E_frequency.VSEF": 1.0, + "3E_frequency.VSEFU": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a4v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a4v2.json b/src/encoded/schemas/ivp_a4v2.json new file mode 100644 index 0000000000..621ca2828d --- /dev/null +++ b/src/encoded/schemas/ivp_a4v2.json @@ -0,0 +1,9632 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM A4V2: SUBJECT MEDICATIONS", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or ADC staff. The purpose of the form is to record all prescription medications taken by the subject within the two weeks before the current visit. For prescription medications not listed here, please follow the instructions at the end of this form. OTC (non-prescription) medications need not be reported; however, a short list of medications that could be either prescription or OTC follows the prescription list. This list includes commonly reported medications that may be purchased over the counter (but that may also be prescription).", + "id": "/profiles/ivp_a4v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "anymeds" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_a4.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "anymeds": { + "title": "Is the subject currently taking any medications?", + + "type": "string", + "enum": [ + "0 No (END FORM HERE)", + "1 Yes" + ] + }, + "drugid_1": { + "title": "Select a medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_2": { + "title": "Select a 2nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_3": { + "title": "Select a 3rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_4": { + "title": "Select a 4th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_5": { + "title": "Select a 5th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_6": { + "title": "Select a 6th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_7": { + "title": "Select a 7th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_8": { + "title": "Select a 8th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_9": { + "title": "Select a 9th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_10": { + "title": "Select a 10th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_11": { + "title": "Select a 11th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_12": { + "title": "Select a 12th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_13": { + "title": "Select a 13th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_14": { + "title": "Select a 14th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_15": { + "title": "Select a 15th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_16": { + "title": "Select a 16th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_17": { + "title": "Select a 17th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_18": { + "title": "Select a 18th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_19": { + "title": "Select a 19th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_20": { + "title": "Select a 20th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_21": { + "title": "Select a 21st medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_22": { + "title": "Select a 22nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_23": { + "title": "Select a 23rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_24": { + "title": "Select a 24th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_25": { + "title": "Select a 25th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_26": { + "title": "Select a 26th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_27": { + "title": "Select a 27th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_28": { + "title": "Select a 28th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_29": { + "title": "Select a 29th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_30": { + "title": "Select a 30th medication", + "description": "(last drop down, use look up)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "not_listed_drugs": { + "title": "If a medication is not listed above, specify the drug or brand name and determine its drugID by using the Lookup Tool on NACC website at NACC online Drug Lookup", + + "type": "object", + "properties": { + "drugid_31": { + "title": "Type a drug ID as given in the look up table.", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_31": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_32": { + "title": "Type a 2nd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_32": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_33": { + "title": "Type a 3rd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_33": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_34": { + "title": "Type a 4th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_34": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_35": { + "title": "Type a 5th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_35": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_36": { + "title": "Type a 6th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_36": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_37": { + "title": "Type a 7th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_37": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_38": { + "title": "Type a 8th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_38": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_39": { + "title": "Type a 9th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_39": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_40": { + "title": "Type a 10th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_40": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_41": { + "title": "Type a 11th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_41": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_42": { + "title": "Type a 12th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_42": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_43": { + "title": "Type a 13th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_43": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_44": { + "title": "Type a 14th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_44": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_45": { + "title": "Type a 15th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_45": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_46": { + "title": "Type a 16th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_46": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_47": { + "title": "Type a 17th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_47": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_48": { + "title": "Type a 18th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_48": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_49": { + "title": "Type a 19th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_49": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_50": { + "title": "Type a 20th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_50": { + "title": "Type the name of the drug -", + + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "anymeds": { + "title": "Is the subject currently taking any medications?" + }, + "drugid_1": { + "title": "Select a medication" + }, + "drugid_2": { + "title": "Select a 2nd medication" + }, + "drugid_3": { + "title": "Select a 3rd medication" + }, + "drugid_4": { + "title": "Select a 4th medication" + }, + "drugid_5": { + "title": "Select a 5th medication" + }, + "drugid_6": { + "title": "Select a 6th medication" + }, + "drugid_7": { + "title": "Select a 7th medication" + }, + "drugid_8": { + "title": "Select a 8th medication" + }, + "drugid_9": { + "title": "Select a 9th medication" + }, + "drugid_10": { + "title": "Select a 10th medication" + }, + "not_listed_drugs.drugid_31": { + "title": "Type a drug ID as given in the look up table." + }, + "not_listed_drugs.drug_name_31": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_32": { + "title": "Type a 2nd drug ID" + }, + "not_listed_drugs.drug_name_32": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_33": { + "title": "Type a 3rd drug ID" + }, + "not_listed_drugs.drug_name_33": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_34": { + "title": "Type a 4th drug ID" + }, + "not_listed_drugs.drug_name_34": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_35": { + "title": "Type a 5th drug ID" + }, + "not_listed_drugs.drug_name_35": { + "title": "Type the name of the drug -" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "anymeds": { + "title": "Is the subject currently taking any medications?" + }, + "drugid_1": { + "title": "Select a medication" + }, + "drugid_2": { + "title": "Select a 2nd medication" + }, + "drugid_3": { + "title": "Select a 3rd medication" + }, + "drugid_4": { + "title": "Select a 4th medication" + }, + "drugid_5": { + "title": "Select a 5th medication" + }, + "drugid_6": { + "title": "Select a 6th medication" + }, + "drugid_7": { + "title": "Select a 7th medication" + }, + "drugid_8": { + "title": "Select a 8th medication" + }, + "drugid_9": { + "title": "Select a 9th medication" + }, + "drugid_10": { + "title": "Select a 10th medication" + }, + "not_listed_drugs.drugid_31": { + "title": "Type a drug ID as given in the look up table." + }, + "not_listed_drugs.drug_name_31": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_32": { + "title": "Type a 2nd drug ID" + }, + "not_listed_drugs.drug_name_32": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_33": { + "title": "Type a 3rd drug ID" + }, + "not_listed_drugs.drug_name_33": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_34": { + "title": "Type a 4th drug ID" + }, + "not_listed_drugs.drug_name_34": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_35": { + "title": "Type a 5th drug ID" + }, + "not_listed_drugs.drug_name_35": { + "title": "Type the name of the drug -" + } + }, + "boost_values": { + "patient": 1.0, + "anymeds": 1.0, + "drugid_1": 1.0, + "drugid_2": 1.0, + "drugid_3": 1.0, + "drugid_4": 1.0, + "drugid_5": 1.0, + "drugid_6": 1.0, + "drugid_7": 1.0, + "drugid_8": 1.0, + "drugid_9": 1.0, + "drugid_10": 1.0, + "not_listed_drugs.drugid_31": 1.0, + "not_listed_drugs.drug_name_31": 1.0, + "not_listed_drugs.drugid_32": 1.0, + "not_listed_drugs.drug_name_32": 1.0, + "not_listed_drugs.drugid_33": 1.0, + "not_listed_drugs.drug_name_33": 1.0, + "not_listed_drugs.drugid_34": 1.0, + "not_listed_drugs.drug_name_34": 1.0, + "not_listed_drugs.drugid_35": 1.0, + "not_listed_drugs.drug_name_35": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a4v2.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a4v3.json b/src/encoded/schemas/ivp_a4v3.json new file mode 100644 index 0000000000..65a174fa2b --- /dev/null +++ b/src/encoded/schemas/ivp_a4v3.json @@ -0,0 +1,9632 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM A4V3: SUBJECT MEDICATIONS", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or ADC staff. The purpose of the form is to record all prescription medications taken by the subject within the two weeks before the current visit. For prescription medications not listed here, please follow the instructions at the end of this form. OTC (non-prescription) medications need not be reported; however, a short list of medications that could be either prescription or OTC follows the prescription list. This list includes commonly reported medications that may be purchased over the counter (but that may also be prescription).", + "id": "/profiles/ivp_a4v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "anymeds" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_a4.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "anymeds": { + "title": "Is the subject currently taking any medications?", + + "type": "string", + "enum": [ + "0 No (END FORM HERE)", + "1 Yes" + ] + }, + "drugid_1": { + "title": "Select a medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_2": { + "title": "Select a 2nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_3": { + "title": "Select a 3rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_4": { + "title": "Select a 4th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_5": { + "title": "Select a 5th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_6": { + "title": "Select a 6th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_7": { + "title": "Select a 7th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_8": { + "title": "Select a 8th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_9": { + "title": "Select a 9th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_10": { + "title": "Select a 10th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_11": { + "title": "Select a 11th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_12": { + "title": "Select a 12th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_13": { + "title": "Select a 13th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_14": { + "title": "Select a 14th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_15": { + "title": "Select a 15th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_16": { + "title": "Select a 16th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_17": { + "title": "Select a 17th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_18": { + "title": "Select a 18th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_19": { + "title": "Select a 19th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_20": { + "title": "Select a 20th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_21": { + "title": "Select a 21st medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_22": { + "title": "Select a 22nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_23": { + "title": "Select a 23rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_24": { + "title": "Select a 24th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_25": { + "title": "Select a 25th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_26": { + "title": "Select a 26th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_27": { + "title": "Select a 27th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_28": { + "title": "Select a 28th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_29": { + "title": "Select a 29th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "drugid_30": { + "title": "Select a 30th medication", + "description": "(last drop down, use look up)", + "type": "string", + "enum": [ + "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "d03428 acetaminophen - HYDROcodone (Vicodin)", + "d00051 Adalat", + "d04611 Advair", + "d00015 Advil", + "d03050 Alavert", + "d00749 albuterol (Proventil, Ventolin, Volmax)", + "d03849 alendronate (Fosamax)", + "d00019 Aleve", + "d04040 Allegra", + "d00023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "d00023 Aloprim", + "d00168 alprazolam (Niravam, Xanax)", + "d00280 Altocor", + "d00910 Ambien", + "d00689 amlodipine (Norvasc)", + "d00049 Anacin", + "d00019 Anaprox", + "d00405 Aquavite-E", + "d04099 Aricept", + "d00426 ascorbic acid (C Complex, Vitamin C)", + "d00170 aspirin", + "d03473 Atamet", + "d00004 atenolol (Senormin, Tenormin)", + "d00149 Ativan", + "d04105 atorvastatin (Lipitor)", + "d00730 benazepril (Lotensin)", + "d00181 Budeprion", + "d00181 bupropion (Budeprion, Wellbutrin, Zyban)", + "d00426 C Complex", + "d03128 Calciferol", + "d03689 calcium acetate (Calphron, PhosLo)", + "d00425 calcium carbonate (Rolaids, Tums)", + "d01021 Calcium Stool Softener", + "d03137 calcium-vitamin D (Dical-D, O-Cal_D)", + "d03689 Calphron", + "d03473 carbidopa-levodopa (Atamet, Sinemet)", + "d00045 Cardizem", + "d03847 Carvedilol", + "d03847 carvedilol (Coreg, Carvedilol)", + "d04380 Celebrex", + "d04380 celecoxib (Celebrex)", + "d04332 Celexa", + "d00541 Cenestin", + "d00405 Centrum Singles", + "d03827 cetirizine (Zyrtec)", + "d03129 cholecalciferol (Vitamin D3, Replesta)", + "d04420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "d04420 Cidaflex", + "d04332 citalopram (Celexa)", + "d03050 Claritin", + "d00197 clonazepam (Klonopin)", + "d04258 clopidogrel (Plavix)", + "d04523 Co Q-10", + "d00541 conjugate estrogens (Cenestin, Premarin)", + "d03847 Coreg", + "d00022 Coumadin", + "d03821 Cozaar", + "d04851 Crestor", + "d00413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "d05355 Cymbalta", + "d00395 Desyrel", + "d03137 Dical-D", + "d00210 Digitek", + "d00210 digoxin (Digitek, Lanoxin)", + "d00045 diltiazem (Cardizem, Tiazac)", + "d03050 Dimetapp", + "d01021 Dioctyl SS", + "d04113 Diovan", + "d00328 Ditripoan", + "d01021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "d04099 donepezil (Aricept)", + "d05355 duloxetine (Cymbalta)", + "d03052 Dyazide", + "d03181 Effexor", + "d00013 enalapril (Vasotec)", + "d03128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "d04812 escitalopram (Lexapro)", + "d00253 Esidrix", + "d04749 esomeprazole (Nexium)", + "d00537 Estrace", + "d00537 estradiol (Estrace, Estrogel, Fempatch)", + "d00537 Estrogel", + "d04537 Exelon", + "d04824 ezetimibe (Zetia)", + "d00537 Fempatch", + "d03824 FeroSul", + "d03824 ferrous sulfate (FeroSul, Iron Supplement)", + "d04040 fexofenadine (Allegra)", + "d01018 Fiberall", + "d00563 finasteride (Propecia, Proscar)", + "d04121 Flomax", + "d04283 Flonase", + "d01296 Flovent", + "d00236 fluoxetine (Prozac)", + "d01296 fluticasone (Flovent)", + "d04283 fluticasone nasal (Flonase, Veramyst)", + "d04611 fluticasone-salmeterol (Advair)", + "d00241 folic acid (Folic Acid)", + "d03849 Fosamax", + "d00070 furosemide (Lasix)", + "d03182 gabapentin (Neurontin)", + "d04750 galantamine (Razadyne, Reminyl)", + "d00246 glipizide (Glucotrol)", + "d03807 Glucophage", + "d04418 glucosamine (Hydrochloride)", + "d00246 Glucotrol", + "d04418 Hydrochloride", + "d00253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "d03052 hydrochlorothiazide-triamterene (Dyazide)", + "d00253 Hyrodiuril", + "d00386 Hytrin", + "d00015 ibuprofen (Advil, Motrin, Nuprin)", + "d03824 Iron Supplement", + "d00022 Jantoven", + "d00345 K-Dur 10", + "d00345 K-Lor", + "d00197 Klonopin", + "d00210 Lanoxin", + "d00070 Lasix", + "d04017 latanoprost ophthalmic (Xalatan)", + "d00278 Levothroid", + "d00278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "d00278 Levoxyl", + "d04812 Lexapro", + "d04105 Lipitor", + "d00732 lisinopril (Prinivil, Zestril)", + "d00134 Lopressor", + "d00023 Lopurin", + "d03050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "d00149 lorazepam (Ativan)", + "d03821 losartan (Cozaar)", + "d00730 Lotensin", + "d00280 lovastatin (Altocor, Mevacor)", + "d00497 Lovaza", + "d04058 Melatonin", + "d04058 melatonin (Melatonin, Melatonin Time Release)", + "d04058 Melatonin Time Release", + "d04532 Meloxicam", + "d04532 meloxicam (Meloxicam, Mobic)", + "d04899 memantine (Namenda)", + "d01018 Metamucil", + "d03807 metformin (Glucophage, Riomet)", + "d00134 metoprolol (Lopressor, Toprol-XL)", + "d00280 Mevacor", + "d05350 Miralax", + "d04025 mirtazapine (Remeron)", + "d04532 Mobic", + "d04289 montelukast (Singulair)", + "d00015 Motrin", + "d03140 multivitamin", + "d03145 multivitamin with minerals", + "d04899 Namenda", + "d00019 Naprosyn", + "d00019 naproxen (Aleve, Anaprox, Naprosyn)", + "d00413 Neuroforte-R", + "d03182 Neurontin", + "d04749 Nexium", + "d00314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "d00314 Niacor", + "d00314 Nico-400", + "d00314 Nicotinic Acid", + "d00051 nifedipine (Adalat, Procardia)", + "d00168 Niravam", + "d00321 Nitro-Bid", + "d00321 Nitro-Dur", + "d00321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "d00321 Nitrostat", + "d00689 Norvasc", + "d00015 Nuprin", + "d03137 O-Cal_D", + "d00497 Omacor", + "d00497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "d00325 omeprazole (Prilosec)", + "d04420 Osteo Bi-Flex", + "d00328 oxybutynin (Ditropan, Urotrol)", + "d04514 pantoprazole (Protonix)", + "d03157 paroxetine (Paxil, Paxil CR, Pexeva)", + "d03157 Paxil", + "d03157 Paxil CR", + "d03157 Pexeva", + "d03689 Phoslo", + "d04258 Plavix", + "d05350 polyethylene glycol 3350 (Miralax)", + "d00345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "d00348 Pravachol", + "d00348 pravastatin (Pravachol)", + "d00541 Premarin", + "d00325 Prilosec", + "d00732 Prinivil", + "d00051 Procardia", + "d00563 Propecia", + "d00563 Proscar", + "d04514 Protonix", + "d00749 Proventil", + "d00236 Prozac", + "d01018 psyllium (Fiberall, Metamucil)", + "d00412 pyroxidine (Vitamin B6)", + "d04220 quetiapine (Seroquel)", + "d00021 ranitidine (Zantac)", + "d04750 Razadyne", + "d04025 Remeron", + "d04750 Reminyl", + "d03129 Replesta", + "d03807 Riomet", + "d04537 rivastigmine (Exelon)", + "d00425 Rolaids", + "d04851 rosuvastatin (Crestor)", + "d03826 Ryzolt", + "d00004 Senormin", + "d04220 Seroquel", + "d00880 sertraline (Zoloft)", + "d00746 simvastatin (Zocor)", + "d03473 Sinemet", + "d04289 Singulair", + "d00345 Slow_K", + "d00278 Synthroid", + "d04121 tamsulosin (Flomax)", + "d03050 Tavist", + "d00049 Tempra", + "d00004 Tenormin", + "d00386 terazosin (Hytrin)", + "d00045 Tiazac", + "d00134 Toprol-XL", + "d03826 tramadol (Ryzolt, Ultram)", + "d00395 trazodone (Desyrel)", + "d00425 Tums", + "d00049 Tylenol", + "d04523 ubiquinone (Co Q-10)", + "d03826 Ultram", + "d00328 Urotrol", + "d04113 valsartan (Diovan)", + "d00013 Vasotec", + "d03181 venlafaxine (Effexor)", + "d00749 Ventolin", + "d04283 Veramyst", + "d03428 Vicodin", + "d00413 Vitamin B12", + "d00412 Vitamin B6", + "d00426 Vitamin C", + "d03128 Vitamin D", + "d03129 Vitamin D3", + "d00405 vitamin E (Aquavite-E, Centrum Singles)", + "d00749 Volmax", + "d00022 warfarin (Coumadin, Jantoven)", + "d00181 Wellbutrin", + "d04017 Xalantan", + "d00168 Xanax", + "d00021 Zantac", + "d00732 Zestril", + "d04824 Zetia", + "d00746 Zocor", + "d00880 Zoloft", + "d00910 zolpidem (Ambien)", + "d00181 Zyban", + "d00023 Zyloprim", + "d03827 Zyrtec", + "d04448 Aciphex", + "d00146 amitriptyline (Elavil, Endep, Vanatrip)", + "d03884 Analgesia Cream", + "d00048 Calan", + "d03819 conj. estrog.-medroxyprogesterone (Prempro)", + "d00350 Deltasone", + "d03833 Depakote", + "d00284 Depo-Provera", + "d04294 Detrol", + "d00248 DiaBeta", + "d00143 Dilantin", + "d03833 divalproex sodium (Depakote)", + "d03128 Drisdol", + "d00146 Elavil", + "d00146 Endep", + "d04261 Evista", + "d00141 famotidine (Mylanta AR, Pepcid)", + "d00248 glyburide (DiaBeta, Glycron, Micronase )", + "d00248 Glycron", + "d00048 Isoptin", + "d03828 lansoprazole (Prevacid)", + "d00284 medroxyprogesterone (Depo_Prevera)", + "d00248 Micronase", + "d00141 Mylanta AR", + "d04050 olanzapine (Zyprexa)", + "d00350 Orasone", + "d00141 Pepcid", + "d00143 phenytoin (Dilantin)", + "d00350 prednisone (Deltasone, Orasone)", + "d03819 Prempro", + "d03828 Prevacid", + "d04448 rabeprazole (Aciphex)", + "d04261 raloxifene (Evista)", + "d00384 Restoril", + "d03180 Risperdal", + "d03180 risperidone (Risperdal)", + "d00384 temazepam (Restoril)", + "d04294 tolterodine (Detrol)", + "d03884 trolamine salicylate topical (Analgesia Cream)", + "d00146 Vanatrip", + "d00048 verapamil (Calan, Isoptin, Verelan)", + "d00048 Verelan", + "d04050 Zyprex" + ] + }, + "not_listed_drugs": { + "title": "If a medication is not listed above, specify the drug or brand name and determine its drugID by using the Lookup Tool on NACC website at NACC online Drug Lookup", + + "type": "object", + "properties": { + "drugid_31": { + "title": "Type a drug ID as given in the look up table.", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_31": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_32": { + "title": "Type a 2nd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_32": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_33": { + "title": "Type a 3rd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_33": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_34": { + "title": "Type a 4th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_34": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_35": { + "title": "Type a 5th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_35": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_36": { + "title": "Type a 6th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_36": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_37": { + "title": "Type a 7th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_37": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_38": { + "title": "Type a 8th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_38": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_39": { + "title": "Type a 9th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_39": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_40": { + "title": "Type a 10th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_40": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_41": { + "title": "Type a 11th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_41": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_42": { + "title": "Type a 12th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_42": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_43": { + "title": "Type a 13th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_43": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_44": { + "title": "Type a 14th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_44": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_45": { + "title": "Type a 15th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_45": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_46": { + "title": "Type a 16th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_46": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_47": { + "title": "Type a 17th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_47": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_48": { + "title": "Type a 18th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_48": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_49": { + "title": "Type a 19th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_49": { + "title": "Type the name of the drug -", + + "type": "string" + }, + "drugid_50": { + "title": "Type a 20th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "drug_name_50": { + "title": "Type the name of the drug -", + + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "anymeds": { + "title": "Is the subject currently taking any medications?" + }, + "drugid_1": { + "title": "Select a medication" + }, + "drugid_2": { + "title": "Select a 2nd medication" + }, + "drugid_3": { + "title": "Select a 3rd medication" + }, + "drugid_4": { + "title": "Select a 4th medication" + }, + "drugid_5": { + "title": "Select a 5th medication" + }, + "drugid_6": { + "title": "Select a 6th medication" + }, + "drugid_7": { + "title": "Select a 7th medication" + }, + "drugid_8": { + "title": "Select a 8th medication" + }, + "drugid_9": { + "title": "Select a 9th medication" + }, + "drugid_10": { + "title": "Select a 10th medication" + }, + "not_listed_drugs.drugid_31": { + "title": "Type a drug ID as given in the look up table." + }, + "not_listed_drugs.drug_name_31": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_32": { + "title": "Type a 2nd drug ID" + }, + "not_listed_drugs.drug_name_32": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_33": { + "title": "Type a 3rd drug ID" + }, + "not_listed_drugs.drug_name_33": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_34": { + "title": "Type a 4th drug ID" + }, + "not_listed_drugs.drug_name_34": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_35": { + "title": "Type a 5th drug ID" + }, + "not_listed_drugs.drug_name_35": { + "title": "Type the name of the drug -" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "anymeds": { + "title": "Is the subject currently taking any medications?" + }, + "drugid_1": { + "title": "Select a medication" + }, + "drugid_2": { + "title": "Select a 2nd medication" + }, + "drugid_3": { + "title": "Select a 3rd medication" + }, + "drugid_4": { + "title": "Select a 4th medication" + }, + "drugid_5": { + "title": "Select a 5th medication" + }, + "drugid_6": { + "title": "Select a 6th medication" + }, + "drugid_7": { + "title": "Select a 7th medication" + }, + "drugid_8": { + "title": "Select a 8th medication" + }, + "drugid_9": { + "title": "Select a 9th medication" + }, + "drugid_10": { + "title": "Select a 10th medication" + }, + "not_listed_drugs.drugid_31": { + "title": "Type a drug ID as given in the look up table." + }, + "not_listed_drugs.drug_name_31": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_32": { + "title": "Type a 2nd drug ID" + }, + "not_listed_drugs.drug_name_32": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_33": { + "title": "Type a 3rd drug ID" + }, + "not_listed_drugs.drug_name_33": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_34": { + "title": "Type a 4th drug ID" + }, + "not_listed_drugs.drug_name_34": { + "title": "Type the name of the drug -" + }, + "not_listed_drugs.drugid_35": { + "title": "Type a 5th drug ID" + }, + "not_listed_drugs.drug_name_35": { + "title": "Type the name of the drug -" + } + }, + "boost_values": { + "patient": 1.0, + "anymeds": 1.0, + "drugid_1": 1.0, + "drugid_2": 1.0, + "drugid_3": 1.0, + "drugid_4": 1.0, + "drugid_5": 1.0, + "drugid_6": 1.0, + "drugid_7": 1.0, + "drugid_8": 1.0, + "drugid_9": 1.0, + "drugid_10": 1.0, + "not_listed_drugs.drugid_31": 1.0, + "not_listed_drugs.drug_name_31": 1.0, + "not_listed_drugs.drugid_32": 1.0, + "not_listed_drugs.drug_name_32": 1.0, + "not_listed_drugs.drugid_33": 1.0, + "not_listed_drugs.drug_name_33": 1.0, + "not_listed_drugs.drugid_34": 1.0, + "not_listed_drugs.drug_name_34": 1.0, + "not_listed_drugs.drugid_35": 1.0, + "not_listed_drugs.drug_name_35": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a4v3.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a5.json b/src/encoded/schemas/ivp_a5.json new file mode 100644 index 0000000000..b4345e7915 --- /dev/null +++ b/src/encoded/schemas/ivp_a5.json @@ -0,0 +1,775 @@ +{ + "title": "uds_ivp_a5", + "description": "Schema for submitting UDS ivp_A5 form information.INSTRUCTIONS: This form is to be completed by the clinician or ADC staff. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A5. Check only one box per question.Link to 'http: //www.alz.washington.edu/NONMEMBER/UDS/DOCS/VER3/UDS3_fvp_guidebook.pdf', NACC Coding Guidebook ", + "comment": "Schema for submitting UDS_ivp_A5 form information.", + "id": "/profiles/ivp_a5.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "patient", + "adcid", + "visdate", + "visitnum", + "initials", + "His_of_cig_alc", + "cardi_dise", + "cere_dise", + "neuro_cond", + "medi_cond", + "sub_abus", + "psych_cond" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "His_of_cig_alc": { + "title": "1. History of cigarette smoking and alcohol use", + "type": "object", + "properties": { + "cig_smok": { + "title": "Cigarette smoking", + "type": "object", + "properties": { + "tobac30": { + "title": "1a. Has subject smoked within last 30 days?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "tobac100": { + "title": "1b. Has subject smoked more than 100 cigarettes in his/her life?", + "description": "(If No or Unknown, SKIP TO QUESTION 1F)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "smokyrs": { + "title": "1c. Total years smoked:", + "description": "(00-87, 99 = Unknown)", + "type": "string", + "pattern": "^[0-7]?[0-9]$|^[8][0-7]$|^99$" + }, + + "quitsmok": { + "title": "1e. If the subject quit smoking, specify the age at which he/she last smoked (i.e., quit) ", + "description": "(008 - 110, 888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0]?[0]?[8-9]|[0]?[0-9][0-9]|[1][0][0-9]|[1][1][0]|888|999$" + } + } + + }, + "alc_use": { + "title": "Alcohol Use", + "type": "object", + "properties": { + "alcoccas": { + "title": "1f. In the past three months, has the subject consumed any alcohol?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 2a)", + "1 Yes", + "9 Unknown (SKIP TO QUESTION 2a)" + ] + }, + "alcfreq": { + "title": "1g. During the past three months, how often did the subject have at least one drink of any alcoholic beverage such as wine, beer, malt liquor, or spirits?", + "type": "string", + "enum": [ + "0 Less than once a month", + "1 About once a month", + "2 About once a week", + "3 A few times a week", + "4 Daily or almost daily", + "9 Unknown" + ] + } + } + + } + } + + }, + "cardi_dise": { + "title": "FOR SECTIONS 2-7, BELOW, record the presence or absence of a history of these conditions at this visit, as determined by the clinician's best judgment following the medical history interview with the subject and co-participant A CONDITION SHOULD BE CONSIDERED ...Absent IF... it is not indicated by information obtained from the subject and copartipant interview.Recent. Active IF... it happened within the last year or still requires active management and is consistent with information obtained from the subject and co-partipant interview.Remote/ Inactive IF ... it existed or occurred in the past (more than one year ago) but was resolved or there is no treatment currently under way.Unknown IF ... there is insufficient information available from the subject and co-partipant interview.\n2. Cardiovascular disease", + "type": "object", + "properties": { + "cvhatt": { + "title": "2a. Heart attack / cardiac arrest ", + "description": "(If absent or unknown, SKIP TO QUESTION 2b)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "hattmult": { + "title": "2a1. More than one heart attack?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hattyear": { + "title": "2a2. Year of most recent heart attack", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "cvafib": { + "title": "2b. Atrial fibrillation", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvangio": { + "title": "2c. Angioplasty / endarterectomy / stent", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvbypass": { + "title": "2d. Cardiac bypass procedure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvpacdef": { + "title": "2e. Pacemaker and/or defibrillator", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvchf": { + "title": "2f. Congestive heart failure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvangina": { + "title": "2g. Angina", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvhvalve": { + "title": "2h. Heart valve replacement or repair", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvothr": { + "title": "2i. Other cardiovascular disease (specify)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvothrx": { + "title": "2i1. Other cardiovascular disease (specify):", + "type": "string" + } + } + + }, + "cere_dise": { + "title": "3. Cerebrovascular disease", + "type": "object", + "properties": { + "cbstroke": { + "title": "3a. Stroke-by history, not exam (imaging is not required)", + "description": "(If absent or unknown, SKIP TO QUESTION 3b)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "strokmul": { + "title": "3a1. More than one stroke?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "strokyr": { + "title": "3a2. Year of most recent stroke", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "cbtia": { + "title": "3b. Transient ischemic attack (TIA)", + "description": "(If absent or unknown, SKIP TO QUESTION 4a)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "tiamult": { + "title": "3b1. More than one TIA?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "tiayear": { + "title": "3b2. Year of most recent TIA", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + } + } + + }, + "neuro_cond": { + "title": "4. Neurologic conditions ", + "type": "object", + "properties": { + "pd": { + "title": "4a. Parkinson's disease (PD)", + "description": "(If absent or unknown, SKIP TO QUESTION 4b)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "pdyr": { + "title": "4a1. Year of PD diagnosis", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "pdothr": { + "title": "4b. Other parkinsonism disorder (e.g., PSP, CBD)", + "description": "(If absent or unknown, SKIP TO QUESTION 4c)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "pdothryr": { + "title": "4b1. Year of parkinsonism disorder diagnosis", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "seizures": { + "title": "4c. Seizures", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "tbi": { + "title": "4d. Traumatic brain injury (TBI)", + "description": "(If Absent or Unknown, SKIP TO QUESTION 5a)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "tbibrief": { + "title": "4d1. TBI with brief loss of consciousness (< 5 minutes)", + "type": "string", + "enum": [ + "0 No", + "1 Single", + "2 Repeated/multiple", + "9 Unknown" + ] + }, + "tbiexten": { + "title": "4d2. TBI with extended loss of consciousness (≥5 minutes)", + "type": "string", + "enum": [ + "0 No", + "1 Single", + "2 Repeated/multiple", + "9 Unknown" + ] + }, + "tbiwolos": { + "title": "4d3. TBI without loss of consciousness (as might result from military detonations or sports injuries)?", + "type": "string", + "enum": [ + "0 No", + "1 Single", + "2 Repeated/multiple", + "9 Unknown" + ] + }, + "tbiyear": { + "title": "4d4. Year of most recent TBI", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + } + } + + }, + "medi_cond": { + "title": "5. Medical conditions", + "description": "If any of the conditions still require active management and/or medications, please select 'Recent/active.'", + "type": "object", + "properties": { + "diabetes": { + "title": "5a. Diabetes", + "description": "(If absent or unknown, SKIP TO QUESTION 5b)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "diabtype": { + "title": "5a1. If Recent/active or Remote/inactive, which type?", + "type": "string", + "enum": [ + "1 Type 1", + "2 Type 2", + "3 Other type (diabetes insipidus, latent autoimmune diabetes/type 1.5, gestational diabetes)", + "9 Unknown" + ] + }, + "hyperten": { + "title": "5b. Hypertension", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "hypercho": { + "title": "5c. Hypercholesterolemia", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "b12def": { + "title": "5d. B12 deficiency", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "thyroid": { + "title": "5e. Thyroid disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "arthrit": { + "title": "5f. Arthritis ", + "description": "(If absent or unknown, SKIP TO QUESTION 5g)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "arthtype": { + "title": "5f1. Type of Arthritis", + "description": "(If both rheumatoid and osteo arthritis are present, select rheumatoid arthritis.)", + "type": "string", + "enum": [ + "1 Rheumatoid", + "2 Osteoarthritis", + "3 Other", + "9 Unknown" + ] + }, + "arthtypx": { + "title": "5f1a. Other Arthritis (specify)", + "type": "string" + }, + "note_a5": { + "title": "5f2. Region(s) affected (check all that apply):", + "type": "object", + "properties": { + "arthupex": { + "title": "5f2a. Region affected: upper extremity", + "type": "string", + "enum": [ + "1 Upper Extremity" + ] + } + + + } + }, + "incontu": { + "title": "5g. Incontinence -- Urinary", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "incontf": { + "title": "5h. Incontinence -- Bowel", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "apnea": { + "title": "5i. Sleep apnea", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "rbd": { + "title": "5j. REM sleep behavior disorder(RBD)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "insomn": { + "title": "5k. Hyposomnia/insomnia", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "othsleep": { + "title": "5l. Other sleep disorder", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "othsleex": { + "title": "5l1. Other sleep disorder (specify)", + "type": "string" + } + } + + }, + "sub_abus": { + "title": "6. Substance abuse ", + "type": "object", + "properties": { + "alcohol": { + "title": "6a. Alcohol abuse: clinically significant impairment occuring over a 12 - month period manifested in one of the following areas: work, driving, legal, or social.", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "abusothr": { + "title": "6b. Other abused substances:Clinically significant impairment occuring over a 12 - month period manifested in one of the following areas: work, driving, legal, or social.", + "description": "(If absent or unkown, SKIP TO QUESTION 7a) ", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "abusx": { + "title": "6b1. If recent/active or remote/inactive, specify abused substance: ", + "type": "string" + } + } + + }, + "psych_cond": { + "title": "7. Psychiatric conditions, diagnosed or treated by a physician", + "type": "object", + "properties": { + "ptsd": { + "title": "7a. Post-traumatic stress disorder (PTSD)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "bipolar": { + "title": "7b. Bipolar disorder", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "schiz": { + "title": "7c. Schizophrenia", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "dep2yrs": { + "title": "7d1. Active depression in the last two years", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "depothr": { + "title": "7d2. Depression episodes more than two years ago", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "anxiety": { + "title": "7e. Anxiety", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "ocd": { + "title": "7f. Obsessive-complusive disorder (OCD)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "npsydev": { + "title": "7g. Developmental neuropsychiatric disorders (e.g.,autism spectrum disorder [ASD], attention-deficit hyperactivity disorder [ADHD], dyslexia)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "psycdis": { + "title": "7h. Other psychiatric disorders (If absent or unknown, END FORM HERE.)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "psycdisx": { + "title": "7h1. If recent/active or remote/inactive, specify disorder:", + "type": "string" + } + } + + } + }, + + "boost_values": { + "patient": 1.0, + "His_of_cig_alc.cig_smok.tobac30": 1.0, + "His_of_cig_alc.cig_smok.tobac100": 1.0, + "His_of_cig_alc.cig_smok.smokyrs": 1.0, + "His_of_cig_alc.cig_smok.quitsmok": 1.0, + "His_of_cig_alc.alc_use.alcoccas": 1.0, + "His_of_cig_alc.alc_use.alcfreq": 1.0, + "cardi_dise.cvhatt": 1.0, + "cardi_dise.hattmult": 1.0, + "cardi_dise.hattyear": 1.0, + "cardi_dise.cvafib": 1.0, + "cardi_dise.cvangio": 1.0, + "cardi_dise.cvbypass": 1.0, + "cardi_dise.cvpacdef": 1.0, + "cardi_dise.cvchf": 1.0, + "cardi_dise.cvangina": 1.0, + "cardi_dise.cvhvalve": 1.0, + "cardi_dise.cvothr": 1.0, + "cardi_dise.cvothrx": 1.0, + "cere_dise.cbstroke": 1.0, + "cere_dise.strokmul": 1.0, + "cere_dise.strokyr": 1.0, + "cere_dise.cbtia": 1.0, + "cere_dise.tiamult": 1.0, + "cere_dise.tiayear": 1.0, + "neuro_cond.pd": 1.0, + "neuro_cond.pdyr": 1.0, + "neuro_cond.pdothr": 1.0, + "neuro_cond.pdothryr": 1.0, + "neuro_cond.seizures": 1.0, + "neuro_cond.tbi": 1.0, + "neuro_cond.tbibrief": 1.0, + "neuro_cond.tbiexten": 1.0, + "neuro_cond.tbiwolos": 1.0, + "neuro_cond.tbiyear": 1.0, + "medi_cond.diabetes": 1.0, + "medi_cond.diabtype": 1.0, + "medi_cond.hyperten": 1.0, + "medi_cond.hypercho": 1.0, + "medi_cond.b12def": 1.0, + "medi_cond.thyroid": 1.0, + "medi_cond.arthrit": 1.0, + "medi_cond.arthtype": 1.0, + "medi_cond.arthtypx": 1.0, + "medi_cond.note_a5": 1.0, + "medi_cond.note_a5.arthupex": 1.0, + + "medi_cond.incontu": 1.0, + "medi_cond.incontf": 1.0, + "medi_cond.apnea": 1.0, + "medi_cond.rbd": 1.0, + "medi_cond.insomn": 1.0, + "medi_cond.othsleep": 1.0, + "medi_cond.othsleex": 1.0, + "sub_abus.alcohol": 1.0, + "sub_abus.abusothr": 1.0, + "sub_abus.abusx": 1.0, + "psych_cond.ptsd": 1.0, + "psych_cond.bipolar": 1.0, + "psych_cond.schiz": 1.0, + "psych_cond.dep2yrs": 1.0, + "psych_cond.depothr": 1.0, + "psych_cond.anxiety": 1.0, + "psych_cond.ocd": 1.0, + "psych_cond.npsydev": 1.0, + "psych_cond.psycdis": 1.0, + "psych_cond.psycdisx": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a5.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a5v1.json b/src/encoded/schemas/ivp_a5v1.json new file mode 100644 index 0000000000..7205d5a8c5 --- /dev/null +++ b/src/encoded/schemas/ivp_a5v1.json @@ -0,0 +1,906 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet: Form A5: Subject Health History", + "description": "NOTE: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A5. Check only one box per question.", + "id": "/profiles/ivp_a5v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "card_dise": { + "title": "1. Cardiovascular disease", + "type": "object", + "properties": { + "CVHATT": { + "title": "1A Heart attack/cardiac arrest", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVAFIB": { + "title": "1B Atrial fibrillation", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVBYPASS": { + "title": "1D Cardiac bypass procedure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVPACE": { + "title": "1E Pacemaker", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVCHF": { + "title": "1F Congestive heart failure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVOTHR": { + "title": "1G Cardiovascular disease, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #1G, CVOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "cere_dise": { + "title": "2. Cerebrovascular disease", + "type": "object", + "properties": { + "CBSTROKE": { + "title": "2A Stroke", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown,Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown, Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown.Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown.Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "CBTIA": { + "title": "2B Transient ischemic attack", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown.Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown.Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "CBOTHR": { + "title": "2C Cerebrovascular disease, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #2C, CBOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "park_dise": { + "title": "3. Parkinsonian features ", + "type": "object", + "properties": { + "PD": { + "title": "3A Parkinson’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis.", + "description": "Between year of birth and date of visit. 9999 = Year unknown, Blank if #3A, PD ≠ 1 (Recent/Active).", + "type": "string" + }, + "PDOTHR": { + "title": "3B Other Parkinsonism disorder", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis.", + "description": "Between year of birth and date of visit.9999 = Year unknown, Blank if #3B, PDOTHR ≠ 1 (Recent/Active).", + "type": "string" + } + } + }, + "other_neur_cond": { + "title": "4. Other neurologic conditions ", + "type": "object", + "properties": { + "SEIZURES": { + "title": "4A Seizures", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "NCOTHR": { + "title": "4C Other neurologic conditions, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #4C, NCOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "medi_cond": { + "title": "5. Medical/metabolic conditions", + "type": "object", + "properties": { + "HYPERTEN": { + "title": "5A Hypertension", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "HYPERCHO": { + "title": "5B Hypercholesterolemia", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "DIABETES": { + "title": "5C Diabetes", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "B12DEF": { + "title": "5D B12 deficiency", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "THYROID": { + "title": "5E Thyroid disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "INCONTU": { + "title": "5F Incontinence – urinary", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "INCONTF": { + "title": "5G Incontinence – bowel", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + } + } + }, + "depr": { + "title": "6. Depression", + "type": "object", + "properties": { + "DEP2YRS": { + "title": "6A Depression, active within the past 2 years", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "sub_abuse_and_psyc": { + "title": "7. Substance abuse and psychiatric disorders", + "type": "object", + "properties": { + "alcohol": { + "title": "a. Substance abuse – alcohol", + "type": "object", + "properties": { + "ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social.", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + } + } + }, + "cigarette": { + "title": "b. Cigarette smoking history", + "type": "object", + "properties": { + "TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SMOKYRS": { + "title": "7B3 Total years smoked", + "description": "00 – 87,88=NA,99=Unknown", + "type": "string" + }, + "PACKSPER": { + "title": "7B4 Average number of packs/day smoked", + "type": "string", + "enum": [ + "1 1 cigarette – < ½ pack", + "2 ½ – < 1 pack", + "3 1 – < 1½ pack", + "4 1½ – < 2 packs", + "5 > 2 packs", + "8 N/A", + "9 Unknown" + ] + }, + "QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)", + "description": "8 to current age,888=N/A,999=Unknown", + "type": "string" + } + } + }, + "other_subs": { + "title": "c. Other abused substances", + "type": "object", + "properties": { + "ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social.", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #7C1, ABUSOTHR ≠ 1 (Recent/Active) or 2 (remote/inactive).", + "type": "string" + } + } + }, + "PSYCDIS": { + "title": "7D Psychiatric disorders", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #7D PSYCDIS ≠ 1 (Recent/Active) or 2 (Remote/Inactive).", + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "card_dise.CVHATT": { + "title": "1A Heart attack/cardiac arrest" + }, + "card_dise.CVAFIB": { + "title": "1B Atrial fibrillation" + }, + "card_dise.CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent" + }, + "card_dise.CVBYPASS": { + "title": "1D Cardiac bypass procedure" + }, + "card_dise.CVPACE": { + "title": "1E Pacemaker" + }, + "card_dise.CVCHF": { + "title": "1F Congestive heart failure" + }, + "card_dise.CVOTHR": { + "title": "1G Cardiovascular disease, other" + }, + "card_dise.CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)" + }, + "cere_dise.CBSTROKE": { + "title": "2A Stroke" + }, + "cere_dise.STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.CBTIA": { + "title": "2B Transient ischemic attack" + }, + "cere_dise.TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.CBOTHR": { + "title": "2C Cerebrovascular disease, other" + }, + "cere_dise.CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)" + }, + "park_dise.PD": { + "title": "3A Parkinson’s disease" + }, + "park_dise.PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis." + }, + "park_dise.PDOTHR": { + "title": "3B Other Parkinsonism disorder" + }, + "park_dise.PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis." + }, + "other_neur_cond.SEIZURES": { + "title": "4A Seizures" + }, + "other_neur_cond.TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)" + }, + "other_neur_cond.TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)" + }, + "other_neur_cond.TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction" + }, + "other_neur_cond.NCOTHR": { + "title": "4C Other neurologic conditions, other" + }, + "other_neur_cond.NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)" + }, + "medi_cond.HYPERTEN": { + "title": "5A Hypertension" + }, + "medi_cond.HYPERCHO": { + "title": "5B Hypercholesterolemia" + }, + "medi_cond.DIABETES": { + "title": "5C Diabetes" + }, + "medi_cond.B12DEF": { + "title": "5D B12 deficiency" + }, + "medi_cond.THYROID": { + "title": "5E Thyroid disease" + }, + "medi_cond.INCONTU": { + "title": "5F Incontinence – urinary" + }, + "medi_cond.INCONTF": { + "title": "5G Incontinence – bowel" + }, + "depr.DEP2YRS": { + "title": "6A Depression, active within the past 2 years" + }, + "depr.DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)" + }, + "sub_abuse_and_psyc.alcohol.ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.cigarette.TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?" + }, + "sub_abuse_and_psyc.cigarette.TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?" + }, + "sub_abuse_and_psyc.cigarette.SMOKYRS": { + "title": "7B3 Total years smoked" + }, + "sub_abuse_and_psyc.cigarette.PACKSPER": { + "title": "7B4 Average number of packs/day smoked" + }, + "sub_abuse_and_psyc.cigarette.QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)" + }, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.other_subs.ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify" + }, + "sub_abuse_and_psyc.PSYCDIS": { + "title": "7D Psychiatric disorders" + }, + "sub_abuse_and_psyc.PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "card_dise.CVHATT": { + "title": "1A Heart attack/cardiac arrest" + }, + "card_dise.CVAFIB": { + "title": "1B Atrial fibrillation" + }, + "card_dise.CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent" + }, + "card_dise.CVBYPASS": { + "title": "1D Cardiac bypass procedure" + }, + "card_dise.CVPACE": { + "title": "1E Pacemaker" + }, + "card_dise.CVCHF": { + "title": "1F Congestive heart failure" + }, + "card_dise.CVOTHR": { + "title": "1G Cardiovascular disease, other" + }, + "card_dise.CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)" + }, + "cere_dise.CBSTROKE": { + "title": "2A Stroke" + }, + "cere_dise.STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.CBTIA": { + "title": "2B Transient ischemic attack" + }, + "cere_dise.TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.CBOTHR": { + "title": "2C Cerebrovascular disease, other" + }, + "cere_dise.CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)" + }, + "park_dise.PD": { + "title": "3A Parkinson’s disease" + }, + "park_dise.PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis." + }, + "park_dise.PDOTHR": { + "title": "3B Other Parkinsonism disorder" + }, + "park_dise.PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis." + }, + "other_neur_cond.SEIZURES": { + "title": "4A Seizures" + }, + "other_neur_cond.TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)" + }, + "other_neur_cond.TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)" + }, + "other_neur_cond.TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction" + }, + "other_neur_cond.NCOTHR": { + "title": "4C Other neurologic conditions, other" + }, + "other_neur_cond.NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)" + }, + "medi_cond.HYPERTEN": { + "title": "5A Hypertension" + }, + "medi_cond.HYPERCHO": { + "title": "5B Hypercholesterolemia" + }, + "medi_cond.DIABETES": { + "title": "5C Diabetes" + }, + "medi_cond.B12DEF": { + "title": "5D B12 deficiency" + }, + "medi_cond.THYROID": { + "title": "5E Thyroid disease" + }, + "medi_cond.INCONTU": { + "title": "5F Incontinence – urinary" + }, + "medi_cond.INCONTF": { + "title": "5G Incontinence – bowel" + }, + "depr.DEP2YRS": { + "title": "6A Depression, active within the past 2 years" + }, + "depr.DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)" + }, + "sub_abuse_and_psyc.alcohol.ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.cigarette.TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?" + }, + "sub_abuse_and_psyc.cigarette.TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?" + }, + "sub_abuse_and_psyc.cigarette.SMOKYRS": { + "title": "7B3 Total years smoked" + }, + "sub_abuse_and_psyc.cigarette.PACKSPER": { + "title": "7B4 Average number of packs/day smoked" + }, + "sub_abuse_and_psyc.cigarette.QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)" + }, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.other_subs.ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify" + }, + "sub_abuse_and_psyc.PSYCDIS": { + "title": "7D Psychiatric disorders" + }, + "sub_abuse_and_psyc.PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify" + } + }, + "boost_values": { + "patient": 1.0, + "card_dise.CVHATT": 1.0, + "card_dise.CVAFIB": 1.0, + "card_dise.CVANGIO": 1.0, + "card_dise.CVBYPASS": 1.0, + "card_dise.CVPACE": 1.0, + "card_dise.CVCHF": 1.0, + "card_dise.CVOTHR": 1.0, + "card_dise.CVOTHRX": 1.0, + "cere_dise.CBSTROKE": 1.0, + "cere_dise.STROK1YR": 1.0, + "cere_dise.STROK2YR": 1.0, + "cere_dise.STROK3YR": 1.0, + "cere_dise.STROK4YR": 1.0, + "cere_dise.STROK5YR": 1.0, + "cere_dise.STROK6YR": 1.0, + "cere_dise.CBTIA": 1.0, + "cere_dise.TIA1YR": 1.0, + "cere_dise.TIA2YR": 1.0, + "cere_dise.TIA3YR": 1.0, + "cere_dise.TIA4YR": 1.0, + "cere_dise.TIA5YR": 1.0, + "cere_dise.TIA6YR": 1.0, + "cere_dise.CBOTHR": 1.0, + "cere_dise.CBOTHRX": 1.0, + "park_dise.PD": 1.0, + "park_dise.PDYR": 1.0, + "park_dise.PDOTHR": 1.0, + "park_dise.PDOTHRYR": 1.0, + "other_neur_cond.SEIZURES": 1.0, + "other_neur_cond.TRAUMBRF": 1.0, + "other_neur_cond.TRAUMEXT": 1.0, + "other_neur_cond.TRAUMCHR": 1.0, + "other_neur_cond.NCOTHR": 1.0, + "other_neur_cond.NCOTHRX": 1.0, + "medi_cond.HYPERTEN": 1.0, + "medi_cond.HYPERCHO": 1.0, + "medi_cond.DIABETES": 1.0, + "medi_cond.B12DEF": 1.0, + "medi_cond.THYROID": 1.0, + "medi_cond.INCONTU": 1.0, + "medi_cond.INCONTF": 1.0, + "depr.DEP2YRS": 1.0, + "depr.DEPOTHR": 1.0, + "sub_abuse_and_psyc.alcohol.ALCOHOL": 1.0, + "sub_abuse_and_psyc.cigarette.TOBAC30": 1.0, + "sub_abuse_and_psyc.cigarette.TOBAC100": 1.0, + "sub_abuse_and_psyc.cigarette.SMOKYRS": 1.0, + "sub_abuse_and_psyc.cigarette.PACKSPER": 1.0, + "sub_abuse_and_psyc.cigarette.QUITSMOK": 1.0, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": 1.0, + "sub_abuse_and_psyc.other_subs.ABUSX": 1.0, + "sub_abuse_and_psyc.PSYCDIS": 1.0, + "sub_abuse_and_psyc.PSYCDISX": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a5v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a5v2.json b/src/encoded/schemas/ivp_a5v2.json new file mode 100644 index 0000000000..2e99d20017 --- /dev/null +++ b/src/encoded/schemas/ivp_a5v2.json @@ -0,0 +1,906 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet: Form A5: Subject Health History", + "description": "NOTE: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A5. Check only one box per question.", + "id": "/profiles/ivp_a5v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "card_dise": { + "title": "1. Cardiovascular disease", + "type": "object", + "properties": { + "CVHATT": { + "title": "1A Heart attack/cardiac arrest", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVAFIB": { + "title": "1B Atrial fibrillation", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVBYPASS": { + "title": "1D Cardiac bypass procedure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVPACE": { + "title": "1E Pacemaker", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVCHF": { + "title": "1F Congestive heart failure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVOTHR": { + "title": "1G Cardiovascular disease, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #1G, CVOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "cere_dise": { + "title": "2. Cerebrovascular disease", + "type": "object", + "properties": { + "CBSTROKE": { + "title": "2A Stroke", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown,Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown, Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown.Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown.Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2A, CBSTROKE = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "CBTIA": { + "title": "2B Transient ischemic attack", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown.Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit.9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown.Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred.", + "description": "Between year of birth and date of visit. 9999 = Year unknown. Blank if #2B, CBTIA = 0 (Absent) or 9 (Unknown).", + "type": "string" + }, + "CBOTHR": { + "title": "2C Cerebrovascular disease, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #2C, CBOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "park_dise": { + "title": "3. Parkinsonian features ", + "type": "object", + "properties": { + "PD": { + "title": "3A Parkinson’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis.", + "description": "Between year of birth and date of visit. 9999 = Year unknown, Blank if #3A, PD ≠ 1 (Recent/Active).", + "type": "string" + }, + "PDOTHR": { + "title": "3B Other Parkinsonism disorder", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis.", + "description": "Between year of birth and date of visit.9999 = Year unknown, Blank if #3B, PDOTHR ≠ 1 (Recent/Active).", + "type": "string" + } + } + }, + "other_neur_cond": { + "title": "4. Other neurologic conditions ", + "type": "object", + "properties": { + "SEIZURES": { + "title": "4A Seizures", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "NCOTHR": { + "title": "4C Other neurologic conditions, other", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #4C, NCOTHR = 0 (Absent) or 9 (Unknown).", + "type": "string" + } + } + }, + "medi_cond": { + "title": "5. Medical/metabolic conditions", + "type": "object", + "properties": { + "HYPERTEN": { + "title": "5A Hypertension", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "HYPERCHO": { + "title": "5B Hypercholesterolemia", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "DIABETES": { + "title": "5C Diabetes", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "B12DEF": { + "title": "5D B12 deficiency", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "THYROID": { + "title": "5E Thyroid disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "INCONTU": { + "title": "5F Incontinence – urinary", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "INCONTF": { + "title": "5G Incontinence – bowel", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + } + } + }, + "depr": { + "title": "6. Depression", + "type": "object", + "properties": { + "DEP2YRS": { + "title": "6A Depression, active within the past 2 years", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "sub_abuse_and_psyc": { + "title": "7. Substance abuse and psychiatric disorders", + "type": "object", + "properties": { + "alcohol": { + "title": "a. Substance abuse – alcohol", + "type": "object", + "properties": { + "ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social.", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + } + } + }, + "cigarette": { + "title": "b. Cigarette smoking history", + "type": "object", + "properties": { + "TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "SMOKYRS": { + "title": "7B3 Total years smoked", + "description": "00 – 87,88=NA,99=Unknown", + "type": "string" + }, + "PACKSPER": { + "title": "7B4 Average number of packs/day smoked", + "type": "string", + "enum": [ + "1 1 cigarette – < ½ pack", + "2 ½ – < 1 pack", + "3 1 – < 1½ pack", + "4 1½ – < 2 packs", + "5 > 2 packs", + "8 N/A", + "9 Unknown" + ] + }, + "QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)", + "description": "8 to current age,888=N/A,999=Unknown", + "type": "string" + } + } + }, + "other_subs": { + "title": "c. Other abused substances", + "type": "object", + "properties": { + "ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social.", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #7C1, ABUSOTHR ≠ 1 (Recent/Active) or 2 (remote/inactive).", + "type": "string" + } + } + }, + "PSYCDIS": { + "title": "7D Psychiatric disorders", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify", + "description": "Any text or numbers, but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #7D PSYCDIS ≠ 1 (Recent/Active) or 2 (Remote/Inactive).", + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "card_dise.CVHATT": { + "title": "1A Heart attack/cardiac arrest" + }, + "card_dise.CVAFIB": { + "title": "1B Atrial fibrillation" + }, + "card_dise.CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent" + }, + "card_dise.CVBYPASS": { + "title": "1D Cardiac bypass procedure" + }, + "card_dise.CVPACE": { + "title": "1E Pacemaker" + }, + "card_dise.CVCHF": { + "title": "1F Congestive heart failure" + }, + "card_dise.CVOTHR": { + "title": "1G Cardiovascular disease, other" + }, + "card_dise.CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)" + }, + "cere_dise.CBSTROKE": { + "title": "2A Stroke" + }, + "cere_dise.STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.CBTIA": { + "title": "2B Transient ischemic attack" + }, + "cere_dise.TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.CBOTHR": { + "title": "2C Cerebrovascular disease, other" + }, + "cere_dise.CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)" + }, + "park_dise.PD": { + "title": "3A Parkinson’s disease" + }, + "park_dise.PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis." + }, + "park_dise.PDOTHR": { + "title": "3B Other Parkinsonism disorder" + }, + "park_dise.PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis." + }, + "other_neur_cond.SEIZURES": { + "title": "4A Seizures" + }, + "other_neur_cond.TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)" + }, + "other_neur_cond.TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)" + }, + "other_neur_cond.TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction" + }, + "other_neur_cond.NCOTHR": { + "title": "4C Other neurologic conditions, other" + }, + "other_neur_cond.NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)" + }, + "medi_cond.HYPERTEN": { + "title": "5A Hypertension" + }, + "medi_cond.HYPERCHO": { + "title": "5B Hypercholesterolemia" + }, + "medi_cond.DIABETES": { + "title": "5C Diabetes" + }, + "medi_cond.B12DEF": { + "title": "5D B12 deficiency" + }, + "medi_cond.THYROID": { + "title": "5E Thyroid disease" + }, + "medi_cond.INCONTU": { + "title": "5F Incontinence – urinary" + }, + "medi_cond.INCONTF": { + "title": "5G Incontinence – bowel" + }, + "depr.DEP2YRS": { + "title": "6A Depression, active within the past 2 years" + }, + "depr.DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)" + }, + "sub_abuse_and_psyc.alcohol.ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.cigarette.TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?" + }, + "sub_abuse_and_psyc.cigarette.TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?" + }, + "sub_abuse_and_psyc.cigarette.SMOKYRS": { + "title": "7B3 Total years smoked" + }, + "sub_abuse_and_psyc.cigarette.PACKSPER": { + "title": "7B4 Average number of packs/day smoked" + }, + "sub_abuse_and_psyc.cigarette.QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)" + }, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.other_subs.ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify" + }, + "sub_abuse_and_psyc.PSYCDIS": { + "title": "7D Psychiatric disorders" + }, + "sub_abuse_and_psyc.PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "card_dise.CVHATT": { + "title": "1A Heart attack/cardiac arrest" + }, + "card_dise.CVAFIB": { + "title": "1B Atrial fibrillation" + }, + "card_dise.CVANGIO": { + "title": "1C Angioplasty/endarterectomy/stent" + }, + "card_dise.CVBYPASS": { + "title": "1D Cardiac bypass procedure" + }, + "card_dise.CVPACE": { + "title": "1E Pacemaker" + }, + "card_dise.CVCHF": { + "title": "1F Congestive heart failure" + }, + "card_dise.CVOTHR": { + "title": "1G Cardiovascular disease, other" + }, + "card_dise.CVOTHRX": { + "title": "1G1 Cardiovascular disease, other (specify)" + }, + "cere_dise.CBSTROKE": { + "title": "2A Stroke" + }, + "cere_dise.STROK1YR": { + "title": "2A1 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK2YR": { + "title": "2A2 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK3YR": { + "title": "2A3 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK4YR": { + "title": "2A4 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK5YR": { + "title": "2A5 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.STROK6YR": { + "title": "2A6 If recent/active or remote/inactive, indicate year in which stroke occurred." + }, + "cere_dise.CBTIA": { + "title": "2B Transient ischemic attack" + }, + "cere_dise.TIA1YR": { + "title": "2B1 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA2YR": { + "title": "2B2 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA3YR": { + "title": "2B3 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA4YR": { + "title": "2B4 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA5YR": { + "title": "2B5 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.TIA6YR": { + "title": "2B6 If recent/active or remote/inactive, indicate year in which transient ischemic attack occurred." + }, + "cere_dise.CBOTHR": { + "title": "2C Cerebrovascular disease, other" + }, + "cere_dise.CBOTHRX": { + "title": "2C1 Cerebrovascular disease, other (specify)" + }, + "park_dise.PD": { + "title": "3A Parkinson’s disease" + }, + "park_dise.PDYR": { + "title": "3A1 If Parkinson’s disease recent/active, indicate year of diagnosis." + }, + "park_dise.PDOTHR": { + "title": "3B Other Parkinsonism disorder" + }, + "park_dise.PDOTHRYR": { + "title": "3B1 If other Parkinson’s disorder recent/active, indicate year of diagnosis." + }, + "other_neur_cond.SEIZURES": { + "title": "4A Seizures" + }, + "other_neur_cond.TRAUMBRF": { + "title": "4B1 Traumatic brain injury with brief loss of consciousness ( < 5 minutes)" + }, + "other_neur_cond.TRAUMEXT": { + "title": "4B2 Traumatic brain injury with extended loss of consciousness ( > 5 minutes)" + }, + "other_neur_cond.TRAUMCHR": { + "title": "4B3 Traumatic brain injury with chronic deficit or dysfunction" + }, + "other_neur_cond.NCOTHR": { + "title": "4C Other neurologic conditions, other" + }, + "other_neur_cond.NCOTHRX": { + "title": "4C1 Other neurologic conditions, other (specify)" + }, + "medi_cond.HYPERTEN": { + "title": "5A Hypertension" + }, + "medi_cond.HYPERCHO": { + "title": "5B Hypercholesterolemia" + }, + "medi_cond.DIABETES": { + "title": "5C Diabetes" + }, + "medi_cond.B12DEF": { + "title": "5D B12 deficiency" + }, + "medi_cond.THYROID": { + "title": "5E Thyroid disease" + }, + "medi_cond.INCONTU": { + "title": "5F Incontinence – urinary" + }, + "medi_cond.INCONTF": { + "title": "5G Incontinence – bowel" + }, + "depr.DEP2YRS": { + "title": "6A Depression, active within the past 2 years" + }, + "depr.DEPOTHR": { + "title": "6B Depression, other episodes (prior to 2 years)" + }, + "sub_abuse_and_psyc.alcohol.ALCOHOL": { + "title": "7A1 Substance abuse – alcohol. Clinically significant impairment occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.cigarette.TOBAC30": { + "title": "7B1 Cigarette smoking history – Has subject smoked within last 30 days?" + }, + "sub_abuse_and_psyc.cigarette.TOBAC100": { + "title": "7B2 Cigarette smoking history - Has subject smoked more than 100 cigarettes in his/her life?" + }, + "sub_abuse_and_psyc.cigarette.SMOKYRS": { + "title": "7B3 Total years smoked" + }, + "sub_abuse_and_psyc.cigarette.PACKSPER": { + "title": "7B4 Average number of packs/day smoked" + }, + "sub_abuse_and_psyc.cigarette.QUITSMOK": { + "title": "7B5 If subject quit smoking, specify age when last smoked (i.e., quit)" + }, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": { + "title": "7C1 Clinically significant impairment, due to other abused substances, occurring over a 12-month period manifested in one of the following: work, driving, legal or social." + }, + "sub_abuse_and_psyc.other_subs.ABUSX": { + "title": "7C2 If other abused substances recent/active or remote/inactive, specify" + }, + "sub_abuse_and_psyc.PSYCDIS": { + "title": "7D Psychiatric disorders" + }, + "sub_abuse_and_psyc.PSYCDISX": { + "title": "7D1 If psychiatric disorders recent/active or remote/inactive, specify" + } + }, + "boost_values": { + "patient": 1.0, + "card_dise.CVHATT": 1.0, + "card_dise.CVAFIB": 1.0, + "card_dise.CVANGIO": 1.0, + "card_dise.CVBYPASS": 1.0, + "card_dise.CVPACE": 1.0, + "card_dise.CVCHF": 1.0, + "card_dise.CVOTHR": 1.0, + "card_dise.CVOTHRX": 1.0, + "cere_dise.CBSTROKE": 1.0, + "cere_dise.STROK1YR": 1.0, + "cere_dise.STROK2YR": 1.0, + "cere_dise.STROK3YR": 1.0, + "cere_dise.STROK4YR": 1.0, + "cere_dise.STROK5YR": 1.0, + "cere_dise.STROK6YR": 1.0, + "cere_dise.CBTIA": 1.0, + "cere_dise.TIA1YR": 1.0, + "cere_dise.TIA2YR": 1.0, + "cere_dise.TIA3YR": 1.0, + "cere_dise.TIA4YR": 1.0, + "cere_dise.TIA5YR": 1.0, + "cere_dise.TIA6YR": 1.0, + "cere_dise.CBOTHR": 1.0, + "cere_dise.CBOTHRX": 1.0, + "park_dise.PD": 1.0, + "park_dise.PDYR": 1.0, + "park_dise.PDOTHR": 1.0, + "park_dise.PDOTHRYR": 1.0, + "other_neur_cond.SEIZURES": 1.0, + "other_neur_cond.TRAUMBRF": 1.0, + "other_neur_cond.TRAUMEXT": 1.0, + "other_neur_cond.TRAUMCHR": 1.0, + "other_neur_cond.NCOTHR": 1.0, + "other_neur_cond.NCOTHRX": 1.0, + "medi_cond.HYPERTEN": 1.0, + "medi_cond.HYPERCHO": 1.0, + "medi_cond.DIABETES": 1.0, + "medi_cond.B12DEF": 1.0, + "medi_cond.THYROID": 1.0, + "medi_cond.INCONTU": 1.0, + "medi_cond.INCONTF": 1.0, + "depr.DEP2YRS": 1.0, + "depr.DEPOTHR": 1.0, + "sub_abuse_and_psyc.alcohol.ALCOHOL": 1.0, + "sub_abuse_and_psyc.cigarette.TOBAC30": 1.0, + "sub_abuse_and_psyc.cigarette.TOBAC100": 1.0, + "sub_abuse_and_psyc.cigarette.SMOKYRS": 1.0, + "sub_abuse_and_psyc.cigarette.PACKSPER": 1.0, + "sub_abuse_and_psyc.cigarette.QUITSMOK": 1.0, + "sub_abuse_and_psyc.other_subs.ABUSOTHR": 1.0, + "sub_abuse_and_psyc.other_subs.ABUSX": 1.0, + "sub_abuse_and_psyc.PSYCDIS": 1.0, + "sub_abuse_and_psyc.PSYCDISX": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a5v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_a5v3.json b/src/encoded/schemas/ivp_a5v3.json new file mode 100644 index 0000000000..5cfcba5211 --- /dev/null +++ b/src/encoded/schemas/ivp_a5v3.json @@ -0,0 +1,1181 @@ +{ + "title": "uds_ivp_a5v3", + "description": "Schema for submitting UDS ivp_A5 form information.INSTRUCTIONS: This form is to be completed by the clinician or ADC staff. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form A5. Check only one box per question.Link to 'http: //www.alz.washington.edu/NONMEMBER/UDS/DOCS/VER3/UDS3_fvp_guidebook.pdf', NACC Coding Guidebook ", + "comment": "Schema for submitting UDS_ivp_A5 form information.", + "id": "/profiles/ivp_a5v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "patient", + "adcid", + "visdate", + "visitnum", + "initials", + "His_of_cig_alc", + "cardi_dise", + "cere_dise", + "neuro_cond", + "medi_cond", + "sub_abus", + "psych_cond" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_a5.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "His_of_cig_alc": { + "title": "1. History of cigarette smoking and alcohol use", + "type": "object", + "properties": { + "cig_smok": { + "title": "Cigarette smoking", + "type": "object", + "properties": { + "tobac30": { + "title": "1a. Has subject smoked within last 30 days?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "tobac100": { + "title": "1b. Has subject smoked more than 100 cigarettes in his/her life?", + "description": "(If No or Unknown, SKIP TO QUESTION 1F)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "smokyrs": { + "title": "1c. Total years smoked:", + "description": "(00-87, 99 = Unknown)", + "type": "string", + "pattern": "^[0-7]?[0-9]$|^[8][0-7]$|^99$" + }, + + "quitsmok": { + "title": "1e. If the subject quit smoking, specify the age at which he/she last smoked (i.e., quit) ", + "description": "(008 - 110, 888 = N/A, 999 = Unknown)", + "type": "string", + "pattern": "^[0]?[0]?[8-9]|[0]?[0-9][0-9]|[1][0][0-9]|[1][1][0]|888|999$" + } + } + + }, + "alc_use": { + "title": "Alcohol Use", + "type": "object", + "properties": { + "alcoccas": { + "title": "1f. In the past three months, has the subject consumed any alcohol?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 2a)", + "1 Yes", + "9 Unknown (SKIP TO QUESTION 2a)" + ] + }, + "alcfreq": { + "title": "1g. During the past three months, how often did the subject have at least one drink of any alcoholic beverage such as wine, beer, malt liquor, or spirits?", + "type": "string", + "enum": [ + "0 Less than once a month", + "1 About once a month", + "2 About once a week", + "3 A few times a week", + "4 Daily or almost daily", + "9 Unknown" + ] + } + } + + } + } + + }, + "cardi_dise": { + "title": "FOR SECTIONS 2-7, BELOW, record the presence or absence of a history of these conditions at this visit, as determined by the clinician's best judgment following the medical history interview with the subject and co-participant A CONDITION SHOULD BE CONSIDERED ...Absent IF... it is not indicated by information obtained from the subject and copartipant interview.Recent. Active IF... it happened within the last year or still requires active management and is consistent with information obtained from the subject and co-partipant interview.Remote/ Inactive IF ... it existed or occurred in the past (more than one year ago) but was resolved or there is no treatment currently under way.Unknown IF ... there is insufficient information available from the subject and co-partipant interview.\n2. Cardiovascular disease", + "type": "object", + "properties": { + "cvhatt": { + "title": "2a. Heart attack / cardiac arrest ", + "description": "(If absent or unknown, SKIP TO QUESTION 2b)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "hattmult": { + "title": "2a1. More than one heart attack?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hattyear": { + "title": "2a2. Year of most recent heart attack", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "cvafib": { + "title": "2b. Atrial fibrillation", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvangio": { + "title": "2c. Angioplasty / endarterectomy / stent", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvbypass": { + "title": "2d. Cardiac bypass procedure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvpacdef": { + "title": "2e. Pacemaker and/or defibrillator", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvchf": { + "title": "2f. Congestive heart failure", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvangina": { + "title": "2g. Angina", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvhvalve": { + "title": "2h. Heart valve replacement or repair", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvothr": { + "title": "2i. Other cardiovascular disease (specify)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "cvothrx": { + "title": "2i1. Other cardiovascular disease (specify):", + "type": "string" + } + } + + }, + "cere_dise": { + "title": "3. Cerebrovascular disease", + "type": "object", + "properties": { + "cbstroke": { + "title": "3a. Stroke-by history, not exam (imaging is not required)", + "description": "(If absent or unknown, SKIP TO QUESTION 3b)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "strokmul": { + "title": "3a1. More than one stroke?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "strokyr": { + "title": "3a2. Year of most recent stroke", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "cbtia": { + "title": "3b. Transient ischemic attack (TIA)", + "description": "(If absent or unknown, SKIP TO QUESTION 4a)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "tiamult": { + "title": "3b1. More than one TIA?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "tiayear": { + "title": "3b2. Year of most recent TIA", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + } + } + + }, + "neuro_cond": { + "title": "4. Neurologic conditions ", + "type": "object", + "properties": { + "pd": { + "title": "4a. Parkinson's disease (PD)", + "description": "(If absent or unknown, SKIP TO QUESTION 4b)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "pdyr": { + "title": "4a1. Year of PD diagnosis", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "pdothr": { + "title": "4b. Other parkinsonism disorder (e.g., PSP, CBD)", + "description": "(If absent or unknown, SKIP TO QUESTION 4c)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "9 Unknown" + ] + }, + "pdothryr": { + "title": "4b1. Year of parkinsonism disorder diagnosis", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "seizures": { + "title": "4c. Seizures", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "tbi": { + "title": "4d. Traumatic brain injury (TBI)", + "description": "(If Absent or Unknown, SKIP TO QUESTION 5a)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "tbibrief": { + "title": "4d1. TBI with brief loss of consciousness (< 5 minutes)", + "type": "string", + "enum": [ + "0 No", + "1 Single", + "2 Repeated/multiple", + "9 Unknown" + ] + }, + "tbiexten": { + "title": "4d2. TBI with extended loss of consciousness (≥5 minutes)", + "type": "string", + "enum": [ + "0 No", + "1 Single", + "2 Repeated/multiple", + "9 Unknown" + ] + }, + "tbiwolos": { + "title": "4d3. TBI without loss of consciousness (as might result from military detonations or sports injuries)?", + "type": "string", + "enum": [ + "0 No", + "1 Single", + "2 Repeated/multiple", + "9 Unknown" + ] + }, + "tbiyear": { + "title": "4d4. Year of most recent TBI", + "description": "(1900 - current year, 9999 = Unknown)", + "type": "string", + "pattern": "^[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + } + } + + }, + "medi_cond": { + "title": "5. Medical conditions", + "description": "If any of the conditions still require active management and/or medications, please select 'Recent/active.'", + "type": "object", + "properties": { + "diabetes": { + "title": "5a. Diabetes", + "description": "(If absent or unknown, SKIP TO QUESTION 5b)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "diabtype": { + "title": "5a1. If Recent/active or Remote/inactive, which type?", + "type": "string", + "enum": [ + "1 Type 1", + "2 Type 2", + "3 Other type (diabetes insipidus, latent autoimmune diabetes/type 1.5, gestational diabetes)", + "9 Unknown" + ] + }, + "hyperten": { + "title": "5b. Hypertension", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "hypercho": { + "title": "5c. Hypercholesterolemia", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "b12def": { + "title": "5d. B12 deficiency", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "thyroid": { + "title": "5e. Thyroid disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "arthrit": { + "title": "5f. Arthritis ", + "description": "(If absent or unknown, SKIP TO QUESTION 5g)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "arthtype": { + "title": "5f1. Type of Arthritis", + "description": "(If both rheumatoid and osteo arthritis are present, select rheumatoid arthritis.)", + "type": "string", + "enum": [ + "1 Rheumatoid", + "2 Osteoarthritis", + "3 Other", + "9 Unknown" + ] + }, + "arthtypx": { + "title": "5f1a. Other Arthritis (specify)", + "type": "string" + }, + "note_a5": { + "title": "5f2. Region(s) affected (check all that apply):", + "type": "object", + "properties": { + "arthupex": { + "title": "5f2a. Region affected: upper extremity", + "type": "string", + "enum": [ + "1 Upper Extremity" + ] + } + + } + }, + "incontu": { + "title": "5g. Incontinence -- Urinary", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "incontf": { + "title": "5h. Incontinence -- Bowel", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "apnea": { + "title": "5i. Sleep apnea", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "rbd": { + "title": "5j. REM sleep behavior disorder(RBD)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "insomn": { + "title": "5k. Hyposomnia/insomnia", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "othsleep": { + "title": "5l. Other sleep disorder", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "othsleex": { + "title": "5l1. Other sleep disorder (specify)", + "type": "string" + } + } + + }, + "sub_abus": { + "title": "6. Substance abuse ", + "type": "object", + "properties": { + "alcohol": { + "title": "6a. Alcohol abuse: clinically significant impairment occuring over a 12 - month period manifested in one of the following areas: work, driving, legal, or social.", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "abusothr": { + "title": "6b. Other abused substances:Clinically significant impairment occuring over a 12 - month period manifested in one of the following areas: work, driving, legal, or social.", + "description": "(If absent or unkown, SKIP TO QUESTION 7a) ", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "abusx": { + "title": "6b1. If recent/active or remote/inactive, specify abused substance: ", + "type": "string" + } + } + + }, + "psych_cond": { + "title": "7. Psychiatric conditions, diagnosed or treated by a physician", + "type": "object", + "properties": { + "ptsd": { + "title": "7a. Post-traumatic stress disorder (PTSD)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "bipolar": { + "title": "7b. Bipolar disorder", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "schiz": { + "title": "7c. Schizophrenia", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "dep2yrs": { + "title": "7d1. Active depression in the last two years", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "depothr": { + "title": "7d2. Depression episodes more than two years ago", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "anxiety": { + "title": "7e. Anxiety", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "ocd": { + "title": "7f. Obsessive-complusive disorder (OCD)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "npsydev": { + "title": "7g. Developmental neuropsychiatric disorders (e.g.,autism spectrum disorder [ASD], attention-deficit hyperactivity disorder [ADHD], dyslexia)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "psycdis": { + "title": "7h. Other psychiatric disorders (If absent or unknown, END FORM HERE.)", + "type": "string", + "enum": [ + "0 Absent", + "1 Recent/Active", + "2 Remote/Inactive", + "9 Unknown" + ] + }, + "psycdisx": { + "title": "7h1. If recent/active or remote/inactive, specify disorder:", + "type": "string" + } + } + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "His_of_cig_alc.cig_smok.tobac30": { + "title": "1a. Has subject smoked within last 30 days?" + }, + "His_of_cig_alc.cig_smok.tobac100": { + "title": "1b. Has subject smoked more than 100 cigarettes in his/her life?" + }, + "His_of_cig_alc.cig_smok.smokyrs": { + "title": "1c. Total years smoked:" + }, + + "His_of_cig_alc.cig_smok.quitsmok": { + "title": "1e. If the subject quit smoking, specify the age at which he/she last smoked (i.e., quit) " + }, + "His_of_cig_alc.alc_use.alcoccas": { + "title": "1f. In the past three months, has the subject consumed any alcohol?" + }, + "His_of_cig_alc.alc_use.alcfreq": { + "title": "1g. During the past three months, how often did the subject have at least one drink of any alcoholic beverage such as wine, beer, malt liquor, or spirits?" + }, + "cardi_dise.cvhatt": { + "title": "2a. Heart attack / cardiac arrest " + }, + "cardi_dise.hattmult": { + "title": "2a1. More than one heart attack?" + }, + "cardi_dise.hattyear": { + "title": "2a2. Year of most recent heart attack" + }, + "cardi_dise.cvafib": { + "title": "2b. Atrial fibrillation" + }, + "cardi_dise.cvangio": { + "title": "2c. Angioplasty / endarterectomy / stent" + }, + "cardi_dise.cvbypass": { + "title": "2d. Cardiac bypass procedure" + }, + "cardi_dise.cvpacdef": { + "title": "2e. Pacemaker and/or defibrillator" + }, + "cardi_dise.cvchf": { + "title": "2f. Congestive heart failure" + }, + "cardi_dise.cvangina": { + "title": "2g. Angina" + }, + "cardi_dise.cvhvalve": { + "title": "2h. Heart valve replacement or repair" + }, + "cardi_dise.cvothr": { + "title": "2i. Other cardiovascular disease (specify)" + }, + "cardi_dise.cvothrx": { + "title": "2i1. Other cardiovascular disease (specify):" + }, + "cere_dise.cbstroke": { + "title": "3a. Stroke-by history, not exam (imaging is not required)" + }, + "cere_dise.strokmul": { + "title": "3a1. More than one stroke?" + }, + "cere_dise.strokyr": { + "title": "3a2. Year of most recent stroke" + }, + "cere_dise.cbtia": { + "title": "3b. Transient ischemic attack (TIA)" + }, + "cere_dise.tiamult": { + "title": "3b1. More than one TIA?" + }, + "cere_dise.tiayear": { + "title": "3b2. Year of most recent TIA" + }, + "neuro_cond.pd": { + "title": "4a. Parkinson's disease (PD)" + }, + "neuro_cond.pdyr": { + "title": "4a1. Year of PD diagnosis" + }, + "neuro_cond.pdothr": { + "title": "4b. Other parkinsonism disorder (e.g., PSP, CBD)" + }, + "neuro_cond.pdothryr": { + "title": "4b1. Year of parkinsonism disorder diagnosis" + }, + "neuro_cond.seizures": { + "title": "4c. Seizures" + }, + "neuro_cond.tbi": { + "title": "4d. Traumatic brain injury (TBI)" + }, + "neuro_cond.tbibrief": { + "title": "4d1. TBI with brief loss of consciousness (< 5 minutes)" + }, + "neuro_cond.tbiexten": { + "title": "4d2. TBI with extended loss of consciousness (≥5 minutes)" + }, + "neuro_cond.tbiwolos": { + "title": "4d3. TBI without loss of consciousness (as might result from military detonations or sports injuries)?" + }, + "neuro_cond.tbiyear": { + "title": "4d4. Year of most recent TBI" + }, + "medi_cond.diabetes": { + "title": "5a. Diabetes" + }, + "medi_cond.diabtype": { + "title": "5a1. If Recent/active or Remote/inactive, which type?" + }, + "medi_cond.hyperten": { + "title": "5b. Hypertension" + }, + "medi_cond.hypercho": { + "title": "5c. Hypercholesterolemia" + }, + "medi_cond.b12def": { + "title": "5d. B12 deficiency" + }, + "medi_cond.thyroid": { + "title": "5e. Thyroid disease" + }, + "medi_cond.arthrit": { + "title": "5f. Arthritis " + }, + "medi_cond.arthtype": { + "title": "5f1. Type of Arthritis" + }, + "medi_cond.arthtypx": { + "title": "5f1a. Other Arthritis (specify)" + }, + "medi_cond.note_a5": { + "title": "5f2. Region(s) affected (check all that apply):" + }, + "medi_cond.note_a5.arthupex": { + "title": "5f2a. Region affected: upper extremity" + }, + + "medi_cond.incontu": { + "title": "5g. Incontinence -- Urinary" + }, + "medi_cond.incontf": { + "title": "5h. Incontinence -- Bowel" + }, + "medi_cond.apnea": { + "title": "5i. Sleep apnea" + }, + "medi_cond.rbd": { + "title": "5j. REM sleep behavior disorder(RBD)" + }, + "medi_cond.insomn": { + "title": "5k. Hyposomnia/insomnia" + }, + "medi_cond.othsleep": { + "title": "5l. Other sleep disorder" + }, + "medi_cond.othsleex": { + "title": "5l1. Other sleep disorder (specify)" + }, + "sub_abus.alcohol": { + "title": "6a. Alcohol abuse: clinically significant impairment occuring over a 12 - month period manifested in one of the following areas: work, driving, legal, or social." + }, + "sub_abus.abusothr": { + "title": "6b. Other abused substances:Clinically significant impairment occuring over a 12 - month period manifested in one of the following areas: work, driving, legal, or social." + }, + "sub_abus.abusx": { + "title": "6b1. If recent/active or remote/inactive, specify abused substance: " + }, + "psych_cond.ptsd": { + "title": "7a. Post-traumatic stress disorder (PTSD)" + }, + "psych_cond.bipolar": { + "title": "7b. Bipolar disorder" + }, + "psych_cond.schiz": { + "title": "7c. Schizophrenia" + }, + "psych_cond.dep2yrs": { + "title": "7d1. Active depression in the last two years" + }, + "psych_cond.depothr": { + "title": "7d2. Depression episodes more than two years ago" + }, + "psych_cond.anxiety": { + "title": "7e. Anxiety" + }, + "psych_cond.ocd": { + "title": "7f. Obsessive-complusive disorder (OCD)" + }, + "psych_cond.npsydev": { + "title": "7g. Developmental neuropsychiatric disorders (e.g.,autism spectrum disorder [ASD], attention-deficit hyperactivity disorder [ADHD], dyslexia)" + }, + "psych_cond.psycdis": { + "title": "7h. Other psychiatric disorders (If absent or unknown, END FORM HERE.)" + }, + "psych_cond.psycdisx": { + "title": "7h1. If recent/active or remote/inactive, specify disorder:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "His_of_cig_alc.cig_smok.tobac30": { + "title": "1a. Has subject smoked within last 30 days?" + }, + "His_of_cig_alc.cig_smok.tobac100": { + "title": "1b. Has subject smoked more than 100 cigarettes in his/her life?" + }, + "His_of_cig_alc.cig_smok.smokyrs": { + "title": "1c. Total years smoked:" + }, + + "His_of_cig_alc.cig_smok.quitsmok": { + "title": "1e. If the subject quit smoking, specify the age at which he/she last smoked (i.e., quit) " + }, + "His_of_cig_alc.alc_use.alcoccas": { + "title": "1f. In the past three months, has the subject consumed any alcohol?" + }, + "His_of_cig_alc.alc_use.alcfreq": { + "title": "1g. During the past three months, how often did the subject have at least one drink of any alcoholic beverage such as wine, beer, malt liquor, or spirits?" + }, + "cardi_dise.cvhatt": { + "title": "2a. Heart attack / cardiac arrest " + }, + "cardi_dise.hattmult": { + "title": "2a1. More than one heart attack?" + }, + "cardi_dise.hattyear": { + "title": "2a2. Year of most recent heart attack" + }, + "cardi_dise.cvafib": { + "title": "2b. Atrial fibrillation" + }, + "cardi_dise.cvangio": { + "title": "2c. Angioplasty / endarterectomy / stent" + }, + "cardi_dise.cvbypass": { + "title": "2d. Cardiac bypass procedure" + }, + "cardi_dise.cvpacdef": { + "title": "2e. Pacemaker and/or defibrillator" + }, + "cardi_dise.cvchf": { + "title": "2f. Congestive heart failure" + }, + "cardi_dise.cvangina": { + "title": "2g. Angina" + }, + "cardi_dise.cvhvalve": { + "title": "2h. Heart valve replacement or repair" + }, + "cardi_dise.cvothr": { + "title": "2i. Other cardiovascular disease (specify)" + }, + "cardi_dise.cvothrx": { + "title": "2i1. Other cardiovascular disease (specify):" + }, + "cere_dise.cbstroke": { + "title": "3a. Stroke-by history, not exam (imaging is not required)" + }, + "cere_dise.strokmul": { + "title": "3a1. More than one stroke?" + }, + "cere_dise.strokyr": { + "title": "3a2. Year of most recent stroke" + }, + "cere_dise.cbtia": { + "title": "3b. Transient ischemic attack (TIA)" + }, + "cere_dise.tiamult": { + "title": "3b1. More than one TIA?" + }, + "cere_dise.tiayear": { + "title": "3b2. Year of most recent TIA" + }, + "neuro_cond.pd": { + "title": "4a. Parkinson's disease (PD)" + }, + "neuro_cond.pdyr": { + "title": "4a1. Year of PD diagnosis" + }, + "neuro_cond.pdothr": { + "title": "4b. Other parkinsonism disorder (e.g., PSP, CBD)" + }, + "neuro_cond.pdothryr": { + "title": "4b1. Year of parkinsonism disorder diagnosis" + }, + "neuro_cond.seizures": { + "title": "4c. Seizures" + }, + "neuro_cond.tbi": { + "title": "4d. Traumatic brain injury (TBI)" + }, + "neuro_cond.tbibrief": { + "title": "4d1. TBI with brief loss of consciousness (< 5 minutes)" + }, + "neuro_cond.tbiexten": { + "title": "4d2. TBI with extended loss of consciousness (≥5 minutes)" + }, + "neuro_cond.tbiwolos": { + "title": "4d3. TBI without loss of consciousness (as might result from military detonations or sports injuries)?" + }, + "neuro_cond.tbiyear": { + "title": "4d4. Year of most recent TBI" + }, + "medi_cond.diabetes": { + "title": "5a. Diabetes" + }, + "medi_cond.diabtype": { + "title": "5a1. If Recent/active or Remote/inactive, which type?" + }, + "medi_cond.hyperten": { + "title": "5b. Hypertension" + }, + "medi_cond.hypercho": { + "title": "5c. Hypercholesterolemia" + }, + "medi_cond.b12def": { + "title": "5d. B12 deficiency" + }, + "medi_cond.thyroid": { + "title": "5e. Thyroid disease" + }, + "medi_cond.arthrit": { + "title": "5f. Arthritis " + }, + "medi_cond.arthtype": { + "title": "5f1. Type of Arthritis" + }, + "medi_cond.arthtypx": { + "title": "5f1a. Other Arthritis (specify)" + }, + "medi_cond.note_a5": { + "title": "5f2. Region(s) affected (check all that apply):" + }, + "medi_cond.note_a5.arthupex": { + "title": "5f2a. Region affected: upper extremity" + }, + + "medi_cond.incontu": { + "title": "5g. Incontinence -- Urinary" + }, + "medi_cond.incontf": { + "title": "5h. Incontinence -- Bowel" + }, + "medi_cond.apnea": { + "title": "5i. Sleep apnea" + }, + "medi_cond.rbd": { + "title": "5j. REM sleep behavior disorder(RBD)" + }, + "medi_cond.insomn": { + "title": "5k. Hyposomnia/insomnia" + }, + "medi_cond.othsleep": { + "title": "5l. Other sleep disorder" + }, + "medi_cond.othsleex": { + "title": "5l1. Other sleep disorder (specify)" + }, + "sub_abus.alcohol": { + "title": "6a. Alcohol abuse: clinically significant impairment occuring over a 12 - month period manifested in one of the following areas: work, driving, legal, or social." + }, + "sub_abus.abusothr": { + "title": "6b. Other abused substances:Clinically significant impairment occuring over a 12 - month period manifested in one of the following areas: work, driving, legal, or social." + }, + "sub_abus.abusx": { + "title": "6b1. If recent/active or remote/inactive, specify abused substance: " + }, + "psych_cond.ptsd": { + "title": "7a. Post-traumatic stress disorder (PTSD)" + }, + "psych_cond.bipolar": { + "title": "7b. Bipolar disorder" + }, + "psych_cond.schiz": { + "title": "7c. Schizophrenia" + }, + "psych_cond.dep2yrs": { + "title": "7d1. Active depression in the last two years" + }, + "psych_cond.depothr": { + "title": "7d2. Depression episodes more than two years ago" + }, + "psych_cond.anxiety": { + "title": "7e. Anxiety" + }, + "psych_cond.ocd": { + "title": "7f. Obsessive-complusive disorder (OCD)" + }, + "psych_cond.npsydev": { + "title": "7g. Developmental neuropsychiatric disorders (e.g.,autism spectrum disorder [ASD], attention-deficit hyperactivity disorder [ADHD], dyslexia)" + }, + "psych_cond.psycdis": { + "title": "7h. Other psychiatric disorders (If absent or unknown, END FORM HERE.)" + }, + "psych_cond.psycdisx": { + "title": "7h1. If recent/active or remote/inactive, specify disorder:" + } + }, + "boost_values": { + "patient": 1.0, + "His_of_cig_alc.cig_smok.tobac30": 1.0, + "His_of_cig_alc.cig_smok.tobac100": 1.0, + "His_of_cig_alc.cig_smok.smokyrs": 1.0, + "His_of_cig_alc.cig_smok.quitsmok": 1.0, + "His_of_cig_alc.alc_use.alcoccas": 1.0, + "His_of_cig_alc.alc_use.alcfreq": 1.0, + "cardi_dise.cvhatt": 1.0, + "cardi_dise.hattmult": 1.0, + "cardi_dise.hattyear": 1.0, + "cardi_dise.cvafib": 1.0, + "cardi_dise.cvangio": 1.0, + "cardi_dise.cvbypass": 1.0, + "cardi_dise.cvpacdef": 1.0, + "cardi_dise.cvchf": 1.0, + "cardi_dise.cvangina": 1.0, + "cardi_dise.cvhvalve": 1.0, + "cardi_dise.cvothr": 1.0, + "cardi_dise.cvothrx": 1.0, + "cere_dise.cbstroke": 1.0, + "cere_dise.strokmul": 1.0, + "cere_dise.strokyr": 1.0, + "cere_dise.cbtia": 1.0, + "cere_dise.tiamult": 1.0, + "cere_dise.tiayear": 1.0, + "neuro_cond.pd": 1.0, + "neuro_cond.pdyr": 1.0, + "neuro_cond.pdothr": 1.0, + "neuro_cond.pdothryr": 1.0, + "neuro_cond.seizures": 1.0, + "neuro_cond.tbi": 1.0, + "neuro_cond.tbibrief": 1.0, + "neuro_cond.tbiexten": 1.0, + "neuro_cond.tbiwolos": 1.0, + "neuro_cond.tbiyear": 1.0, + "medi_cond.diabetes": 1.0, + "medi_cond.diabtype": 1.0, + "medi_cond.hyperten": 1.0, + "medi_cond.hypercho": 1.0, + "medi_cond.b12def": 1.0, + "medi_cond.thyroid": 1.0, + "medi_cond.arthrit": 1.0, + "medi_cond.arthtype": 1.0, + "medi_cond.arthtypx": 1.0, + "medi_cond.note_a5": 1.0, + "medi_cond.note_a5.arthupex": 1.0, + + "medi_cond.incontu": 1.0, + "medi_cond.incontf": 1.0, + "medi_cond.apnea": 1.0, + "medi_cond.rbd": 1.0, + "medi_cond.insomn": 1.0, + "medi_cond.othsleep": 1.0, + "medi_cond.othsleex": 1.0, + "sub_abus.alcohol": 1.0, + "sub_abus.abusothr": 1.0, + "sub_abus.abusx": 1.0, + "psych_cond.ptsd": 1.0, + "psych_cond.bipolar": 1.0, + "psych_cond.schiz": 1.0, + "psych_cond.dep2yrs": 1.0, + "psych_cond.depothr": 1.0, + "psych_cond.anxiety": 1.0, + "psych_cond.ocd": 1.0, + "psych_cond.npsydev": 1.0, + "psych_cond.psycdis": 1.0, + "psych_cond.psycdisx": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_a5v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b1.json b/src/encoded/schemas/ivp_b1.json new file mode 100644 index 0000000000..435ad4dfee --- /dev/null +++ b/src/encoded/schemas/ivp_b1.json @@ -0,0 +1,175 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B1: EVALUATION FORM - PHYSICAL", + "description": "INSTRUCTIONS: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B1. Check only one box per question.\nLink to NACC Coding Guidebook", + "id": "/profiles/uds_ivp_b1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "subj_phys_meas", + "addi_phys_obse" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "subj_phys_meas": { + "title": "Subject physical measurements", + + "type": "object", + "properties": { + "height": { + "title": "1. Subject height (inches)", + "description": "((36.0-87.9; 88.8 = Not Assessed; 99.9 = Unknown))", + "type": "string", + "pattern": "^[3][6-9].?[0-9]?|[4-7][0-9].?[0-9]?|[8][0-7].?[0-9]?|88.8|99.9$" + }, + "weight": { + "title": "2. Subject weight (lbs.)", + "description": "((50-400; 888 = Not Assessed))", + "type": "string", + "pattern": "^[5][0-9]|[6-9][0-9]|[1-3][0-9][0-9]|[4][0][0]|888$" + + }, + "bpsys": { + "title": "3a. Subject blood pressure at initial reading(sitting), systolic", + "description": "((70-230; 888 = Not Assessed))", + "type": "string", + "pattern": "^[7][0-9]|[8-9][0-9]|[1][0-9][0-9]|[2][0-2][0-9]|[2][3][0]|888$" + + }, + "bpdias": { + "title": "3b. Subject blood pressure at initial reading(sitting), diastolic", + "description": "((30-140; 888 = Not Assessed))", + "type": "string", + "pattern": "^[3][0-9]|[4-9][0-9]|[1][0-3][0-9]|[1][4][0]|888$" + + }, + "hrate": { + "title": "4. Subject resting heart rate (pulse)", + "description": "((33-160; 888 = Not Assessed))", + "type": "string", + "pattern": "^[3][3]|[4-9][0-9]|[1][0-5][0-9]|[1][6][0]|888$" + + } + }, + "required": [ + "height", + "weight", + "bpsys", + "bpdias", + "hrate" + ] + }, + "addi_phys_obse": { + "title": "Additional physical observations", + "type": "object", + "properties": { + "vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "viscorr": { + "title": "6. Does the subject usually wear corrective lenses? ", + "description": "(If no or unknown, SKIP TO QUESTION 7)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)?", + "description": "(If no or unknown, END FORM HERE)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + }, + "required": [ + "vision", + "viscorr", + "hearing", + "hearaid" + ] + } + }, + + "boost_values": { + "patient": 1.0, + "subj_phys_meas.height": 1.0, + "subj_phys_meas.weight": 1.0, + "subj_phys_meas.bpsys": 1.0, + "subj_phys_meas.bpdias": 1.0, + "subj_phys_meas.hrate": 1.0, + "addi_phys_obse.vision": 1.0, + "addi_phys_obse.viscorr": 1.0, + "addi_phys_obse.viswcorr": 1.0, + "addi_phys_obse.hearing": 1.0, + "addi_phys_obse.hearaid": 1.0, + "addi_phys_obse.hearwaid": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b1v1.json b/src/encoded/schemas/ivp_b1v1.json new file mode 100644 index 0000000000..34818de38f --- /dev/null +++ b/src/encoded/schemas/ivp_b1v1.json @@ -0,0 +1,252 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B1: EVALUATION FORM - PHYSICAL", + "description": "INSTRUCTIONS: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook page 24, Form B1. Check only one box per question.\nLink to NACC Coding Guidebook", + "id": "/profiles/ivp_b1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "required": [ + "subj_phys_meas", + "addi_phys_obse" + ], + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "subj_phys_meas": { + "title": "Subject physical measurements", + "description": "", + "type": "object", + "properties": { + "height": { + "title": "1. Subject height (inches)", + "description": "((36.0-87.9; 88.8 = Not Assessed; 99.9 = Unknown))", + "type": "string", + "pattern": "^[3][6-9].?[0-9]?|[4-7][0-9].?[0-9]?|[8][0-7].?[0-9]?|88.8|99.9$" + }, + "weight": { + "title": "2. Subject weight (lbs.)", + "description": "((50-400; 888 = Not Assessed))", + "type": "string", + "pattern": "^[5][0-9]|[6-9][0-9]|[1-3][0-9][0-9]|[4][0][0]|888$" + + }, + "bpsys": { + "title": "3a. Subject blood pressure at initial reading(sitting), systolic", + "description": "((70-230; 888 = Not Assessed))", + "type": "string", + "pattern": "^[7][0-9]|[8-9][0-9]|[1][0-9][0-9]|[2][0-2][0-9]|[2][3][0]|888$" + + }, + "bpdias": { + "title": "3b. Subject blood pressure at initial reading(sitting), diastolic", + "description": "((30-140; 888 = Not Assessed))", + "type": "string", + "pattern": "^[3][0-9]|[4-9][0-9]|[1][0-3][0-9]|[1][4][0]|888$" + + }, + "hrate": { + "title": "4. Subject resting heart rate (pulse)", + "description": "((33-160; 888 = Not Assessed))", + "type": "string", + "pattern": "^[3][3]|[4-9][0-9]|[1][0-5][0-9]|[1][6][0]|888$" + + } + }, + "required": [ + "height", + "weight", + "bpsys", + "bpdias", + "hrate" + ] + }, + "addi_phys_obse": { + "title": "Additional physical observations", + "type": "object", + "properties": { + "vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "viscorr": { + "title": "6. Does the subject usually wear corrective lenses? ", + "description": "(If no or unknown, SKIP TO QUESTION 7)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)?", + "description": "(If no or unknown, END FORM HERE)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + }, + "required": [ + "vision", + "viscorr", + "hearing", + "hearaid" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "subj_phys_meas.height": { + "title": "1. Subject height (inches)" + }, + "subj_phys_meas.weight": { + "title": "2. Subject weight (lbs.)" + }, + "subj_phys_meas.bpsys": { + "title": "3a. Subject blood pressure at initial reading(sitting), systolic" + }, + "subj_phys_meas.bpdias": { + "title": "3b. Subject blood pressure at initial reading(sitting), diastolic" + }, + "subj_phys_meas.hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_phys_obse.vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_phys_obse.viscorr": { + "title": "6. Does the subject usually wear corrective lenses? " + }, + "addi_phys_obse.viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_phys_obse.hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_phys_obse.hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)?" + }, + "addi_phys_obse.hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "subj_phys_meas.height": { + "title": "1. Subject height (inches)" + }, + "subj_phys_meas.weight": { + "title": "2. Subject weight (lbs.)" + }, + "subj_phys_meas.bpsys": { + "title": "3a. Subject blood pressure at initial reading(sitting), systolic" + }, + "subj_phys_meas.bpdias": { + "title": "3b. Subject blood pressure at initial reading(sitting), diastolic" + }, + "subj_phys_meas.hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_phys_obse.vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_phys_obse.viscorr": { + "title": "6. Does the subject usually wear corrective lenses?" + }, + "addi_phys_obse.viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_phys_obse.hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_phys_obse.hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)?" + }, + "addi_phys_obse.hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "boost_values": { + "patient": 1.0, + "subj_phys_meas.height": 1.0, + "subj_phys_meas.weight": 1.0, + "subj_phys_meas.bpsys": 1.0, + "subj_phys_meas.bpdias": 1.0, + "subj_phys_meas.hrate": 1.0, + "addi_phys_obse.vision": 1.0, + "addi_phys_obse.viscorr": 1.0, + "addi_phys_obse.viswcorr": 1.0, + "addi_phys_obse.hearing": 1.0, + "addi_phys_obse.hearaid": 1.0, + "addi_phys_obse.hearwaid": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b1v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b1v2.json b/src/encoded/schemas/ivp_b1v2.json new file mode 100644 index 0000000000..9aa6472c32 --- /dev/null +++ b/src/encoded/schemas/ivp_b1v2.json @@ -0,0 +1,252 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B1: EVALUATION FORM - PHYSICAL", + "description": "INSTRUCTIONS: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B1. Check only one box per question.\nLink to NACC Coding Guidebook", + "id": "/profiles/uds_ivp_b1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "required": [ + "subj_phys_meas", + "addi_phys_obse" + ], + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "subj_phys_meas": { + "title": "Subject physical measurements", + + "type": "object", + "properties": { + "height": { + "title": "1. Subject height (inches)", + "description": "((36.0-87.9; 88.8 = Not Assessed; 99.9 = Unknown))", + "type": "string", + "pattern": "^[3][6-9].?[0-9]?|[4-7][0-9].?[0-9]?|[8][0-7].?[0-9]?|88.8|99.9$" + }, + "weight": { + "title": "2. Subject weight (lbs.)", + "description": "((50-400; 888 = Not Assessed))", + "type": "string", + "pattern": "^[5][0-9]|[6-9][0-9]|[1-3][0-9][0-9]|[4][0][0]|888$" + + }, + "bpsys": { + "title": "3a. Subject blood pressure at initial reading(sitting), systolic", + "description": "((70-230; 888 = Not Assessed))", + "type": "string", + "pattern": "^[7][0-9]|[8-9][0-9]|[1][0-9][0-9]|[2][0-2][0-9]|[2][3][0]|888$" + + }, + "bpdias": { + "title": "3b. Subject blood pressure at initial reading(sitting), diastolic", + "description": "((30-140; 888 = Not Assessed))", + "type": "string", + "pattern": "^[3][0-9]|[4-9][0-9]|[1][0-3][0-9]|[1][4][0]|888$" + + }, + "hrate": { + "title": "4. Subject resting heart rate (pulse)", + "description": "((33-160; 888 = Not Assessed))", + "type": "string", + "pattern": "^[3][3]|[4-9][0-9]|[1][0-5][0-9]|[1][6][0]|888$" + + } + }, + "required": [ + "height", + "weight", + "bpsys", + "bpdias", + "hrate" + ] + }, + "addi_phys_obse": { + "title": "Additional physical observations", + "type": "object", + "properties": { + "vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "viscorr": { + "title": "6. Does the subject usually wear corrective lenses? ", + "description": "(If no or unknown, SKIP TO QUESTION 7)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)?", + "description": "(If no or unknown, END FORM HERE)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + }, + "required": [ + "vision", + "viscorr", + "hearing", + "hearaid" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "subj_phys_meas.height": { + "title": "1. Subject height (inches)" + }, + "subj_phys_meas.weight": { + "title": "2. Subject weight (lbs.)" + }, + "subj_phys_meas.bpsys": { + "title": "3a. Subject blood pressure at initial reading(sitting), systolic" + }, + "subj_phys_meas.bpdias": { + "title": "3b. Subject blood pressure at initial reading(sitting), diastolic" + }, + "subj_phys_meas.hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_phys_obse.vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_phys_obse.viscorr": { + "title": "6. Does the subject usually wear corrective lenses? " + }, + "addi_phys_obse.viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_phys_obse.hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_phys_obse.hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)?" + }, + "addi_phys_obse.hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "subj_phys_meas.height": { + "title": "1. Subject height (inches)" + }, + "subj_phys_meas.weight": { + "title": "2. Subject weight (lbs.)" + }, + "subj_phys_meas.bpsys": { + "title": "3a. Subject blood pressure at initial reading(sitting), systolic" + }, + "subj_phys_meas.bpdias": { + "title": "3b. Subject blood pressure at initial reading(sitting), diastolic" + }, + "subj_phys_meas.hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_phys_obse.vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_phys_obse.viscorr": { + "title": "6. Does the subject usually wear corrective lenses?" + }, + "addi_phys_obse.viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_phys_obse.hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_phys_obse.hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)?" + }, + "addi_phys_obse.hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "boost_values": { + "patient": 1.0, + "subj_phys_meas.height": 1.0, + "subj_phys_meas.weight": 1.0, + "subj_phys_meas.bpsys": 1.0, + "subj_phys_meas.bpdias": 1.0, + "subj_phys_meas.hrate": 1.0, + "addi_phys_obse.vision": 1.0, + "addi_phys_obse.viscorr": 1.0, + "addi_phys_obse.viswcorr": 1.0, + "addi_phys_obse.hearing": 1.0, + "addi_phys_obse.hearaid": 1.0, + "addi_phys_obse.hearwaid": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b1v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b1v3.json b/src/encoded/schemas/ivp_b1v3.json new file mode 100644 index 0000000000..794218550b --- /dev/null +++ b/src/encoded/schemas/ivp_b1v3.json @@ -0,0 +1,252 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B1: EVALUATION FORM - PHYSICAL", + "description": "INSTRUCTIONS: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B1. Check only one box per question.\nLink to NACC Coding Guidebook", + "id": "/profiles/uds_ivp_b1v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "subj_phys_meas", + "addi_phys_obse" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "subj_phys_meas": { + "title": "Subject physical measurements", + + "type": "object", + "properties": { + "height": { + "title": "1. Subject height (inches)", + "description": "((36.0-87.9; 88.8 = Not Assessed; 99.9 = Unknown))", + "type": "string", + "pattern": "^[3][6-9].?[0-9]?|[4-7][0-9].?[0-9]?|[8][0-7].?[0-9]?|88.8|99.9$" + }, + "weight": { + "title": "2. Subject weight (lbs.)", + "description": "((50-400; 888 = Not Assessed))", + "type": "string", + "pattern": "^[5][0-9]|[6-9][0-9]|[1-3][0-9][0-9]|[4][0][0]|888$" + + }, + "bpsys": { + "title": "3a. Subject blood pressure at initial reading(sitting), systolic", + "description": "((70-230; 888 = Not Assessed))", + "type": "string", + "pattern": "^[7][0-9]|[8-9][0-9]|[1][0-9][0-9]|[2][0-2][0-9]|[2][3][0]|888$" + + }, + "bpdias": { + "title": "3b. Subject blood pressure at initial reading(sitting), diastolic", + "description": "((30-140; 888 = Not Assessed))", + "type": "string", + "pattern": "^[3][0-9]|[4-9][0-9]|[1][0-3][0-9]|[1][4][0]|888$" + + }, + "hrate": { + "title": "4. Subject resting heart rate (pulse)", + "description": "((33-160; 888 = Not Assessed))", + "type": "string", + "pattern": "^[3][3]|[4-9][0-9]|[1][0-5][0-9]|[1][6][0]|888$" + + } + }, + "required": [ + "height", + "weight", + "bpsys", + "bpdias", + "hrate" + ] + }, + "addi_phys_obse": { + "title": "Additional physical observations", + "type": "object", + "properties": { + "vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "viscorr": { + "title": "6. Does the subject usually wear corrective lenses? ", + "description": "(If no or unknown, SKIP TO QUESTION 7)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)?", + "description": "(If no or unknown, END FORM HERE)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + }, + "required": [ + "vision", + "viscorr", + "hearing", + "hearaid" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "subj_phys_meas.height": { + "title": "1. Subject height (inches)" + }, + "subj_phys_meas.weight": { + "title": "2. Subject weight (lbs.)" + }, + "subj_phys_meas.bpsys": { + "title": "3a. Subject blood pressure at initial reading(sitting), systolic" + }, + "subj_phys_meas.bpdias": { + "title": "3b. Subject blood pressure at initial reading(sitting), diastolic" + }, + "subj_phys_meas.hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_phys_obse.vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_phys_obse.viscorr": { + "title": "6. Does the subject usually wear corrective lenses? " + }, + "addi_phys_obse.viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_phys_obse.hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_phys_obse.hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)?" + }, + "addi_phys_obse.hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "subj_phys_meas.height": { + "title": "1. Subject height (inches)" + }, + "subj_phys_meas.weight": { + "title": "2. Subject weight (lbs.)" + }, + "subj_phys_meas.bpsys": { + "title": "3a. Subject blood pressure at initial reading(sitting), systolic" + }, + "subj_phys_meas.bpdias": { + "title": "3b. Subject blood pressure at initial reading(sitting), diastolic" + }, + "subj_phys_meas.hrate": { + "title": "4. Subject resting heart rate (pulse)" + }, + "addi_phys_obse.vision": { + "title": "5. Without corrective lenses, is the subject's vision functionally normal?" + }, + "addi_phys_obse.viscorr": { + "title": "6. Does the subject usually wear corrective lenses?" + }, + "addi_phys_obse.viswcorr": { + "title": "6a. If yes, is the subject's vision functionally normal with corrective lenses?" + }, + "addi_phys_obse.hearing": { + "title": "7. Without a hearing aid(s), is the subject's hearing functionally normal?" + }, + "addi_phys_obse.hearaid": { + "title": "8. Does the subject usually wear a hearing aid(s)?" + }, + "addi_phys_obse.hearwaid": { + "title": "8a. If yes, is the subject's hearing functionally normal with a hearing aid(s)?" + } + }, + "boost_values": { + "patient": 1.0, + "subj_phys_meas.height": 1.0, + "subj_phys_meas.weight": 1.0, + "subj_phys_meas.bpsys": 1.0, + "subj_phys_meas.bpdias": 1.0, + "subj_phys_meas.hrate": 1.0, + "addi_phys_obse.vision": 1.0, + "addi_phys_obse.viscorr": 1.0, + "addi_phys_obse.viswcorr": 1.0, + "addi_phys_obse.hearing": 1.0, + "addi_phys_obse.hearaid": 1.0, + "addi_phys_obse.hearwaid": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b1v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b2v1.json b/src/encoded/schemas/ivp_b2v1.json new file mode 100644 index 0000000000..3613cbb775 --- /dev/null +++ b/src/encoded/schemas/ivp_b2v1.json @@ -0,0 +1,196 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet, Form B2: Evaluation Form – HIS and CVD", + "description": "NOTE: This form is to be completed by the clinician or other trained healthADC \nprofessional.For additional clarification and examples, see UDS Coding\nGuidebook for Initial Visit Packet, Form B2.\n", + "id": "/profiles/ivp_b2v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "hach_isch_score": { + "title": "HACHINSKI ISCHEMIC SCORE", + "description": "Please complete the following scale using information obtained from\nhistory/physical/neurological exam and/or medical records. Indicate if a\ncharacteristic is present or characteristic of the patient by circling the\nappropriate value.\n", + "type": "object", + "properties": { + "ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SOMATIC": { + "title": "3 Somatic complaints", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "EMOT": { + "title": "4 Emotional incontinence", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HXHYPER": { + "title": "5 History or presence of hypertension", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HXSTROKE": { + "title": "6 History of stroke", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "FOCLSYM": { + "title": "7 Focal neurological symptoms", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "FOCLSIGN": { + "title": "8 Focal neurological signs", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "HACHIN": { + "title": "9 Sum all circled answers for a total score", + "description": "0 – 12", + "type": "string" + } + } + } + + }, + "facets": { + "status": { + "title": "Status" + }, + "hach_isch_score.ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)" + }, + "hach_isch_score.STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)" + }, + "hach_isch_score.SOMATIC": { + "title": "3 Somatic complaints" + }, + "hach_isch_score.EMOT": { + "title": "4 Emotional incontinence" + }, + "hach_isch_score.HXHYPER": { + "title": "5 History or presence of hypertension" + }, + "hach_isch_score.HXSTROKE": { + "title": "6 History of stroke" + }, + "hach_isch_score.FOCLSYM": { + "title": "7 Focal neurological symptoms" + }, + "hach_isch_score.FOCLSIGN": { + "title": "8 Focal neurological signs" + }, + "hach_isch_score.HACHIN": { + "title": "9 Sum all circled answers for a total score" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "hach_isch_score.ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)" + }, + "hach_isch_score.STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)" + }, + "hach_isch_score.SOMATIC": { + "title": "3 Somatic complaints" + }, + "hach_isch_score.EMOT": { + "title": "4 Emotional incontinence" + }, + "hach_isch_score.HXHYPER": { + "title": "5 History or presence of hypertension" + }, + "hach_isch_score.HXSTROKE": { + "title": "6 History of stroke" + }, + "hach_isch_score.FOCLSYM": { + "title": "7 Focal neurological symptoms" + }, + "hach_isch_score.FOCLSIGN": { + "title": "8 Focal neurological signs" + }, + "hach_isch_score.HACHIN": { + "title": "9 Sum all circled answers for a total score" + } + + }, + "boost_values": { + "patient": 1.0, + "hach_isch_score.ABRUPT": 1.0, + "hach_isch_score.STEPWISE": 1.0, + "hach_isch_score.SOMATIC": 1.0, + "hach_isch_score.EMOT": 1.0, + "hach_isch_score.HXHYPER": 1.0, + "hach_isch_score.HXSTROKE": 1.0, + "hach_isch_score.FOCLSYM": 1.0, + "hach_isch_score.FOCLSIGN": 1.0, + "hach_isch_score.HACHIN": 1.0 + + }, + "changelog": "/profiles/changelogs/ivp_b2v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b2v2.json b/src/encoded/schemas/ivp_b2v2.json new file mode 100644 index 0000000000..e348640f93 --- /dev/null +++ b/src/encoded/schemas/ivp_b2v2.json @@ -0,0 +1,330 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet, Form B2: Evaluation Form – HIS and CVD", + "description": "NOTE: This form is to be completed by the clinician or other trained healthADC \nprofessional.For additional clarification and examples, see UDS Coding\nGuidebook for Initial Visit Packet, Form B2.\n", + "id": "/profiles/ivp_b2v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "hach_isch_score": { + "title": "HACHINSKI ISCHEMIC SCORE", + "description": "Please complete the following scale using information obtained from history/physical/neurological\nexam and/or medical records. Circle the appropriate value to indicate if a specific item is present\n(characteristic of the patient) or absent.\n\n", + "type": "object", + "properties": { + "ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SOMATIC": { + "title": "3 Somatic complaints", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "EMOT": { + "title": "4 Emotional incontinence", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HXHYPER": { + "title": "5 History or presence of hypertension", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HXSTROKE": { + "title": "6 History of stroke", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "FOCLSYM": { + "title": "7 Focal neurological symptoms", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "FOCLSIGN": { + "title": "8 Focal neurological signs", + "type": "string", + "enum": [ + "0 Absent", + "2 Present" + ] + }, + "HACHIN": { + "title": "9 Sum all circled answers for a total score", + "description": "0 – 12", + "type": "string" + } + } + }, + "cere_dise": { + "title": "CEREBROVASCULAR DISEASE", + + "type": "object", + "properties": { + "CVDCOG": { + "title": "10 Using your best judgment, do you believe that cerebrovascular disease (CVD) is contributing to the cognitive impairment?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 N/A" + ] + }, + "STROKCOG": { + "title": "11 If there is a stroke, is there a temporal relationship between stroke and onset of cognitive impairment?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 N/A" + ] + }, + "CVDIMAG": { + "title": "12 Is there imaging evidence which supports that CVD is contributing to the cognitive impairment?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 N/A" + ] + }, + "if_yes": { + "title": "12a. If yes, indicate which imaging evidence was found:", + + "type": "object", + "properties": { + "CVDIMAG1": { + "title": "12A1 If yes, was there imaging evidence of single strategic infarct?", + "description": "Blank if #12, CVDIMAG ≠ 1 (Yes).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CVDIMAG2": { + "title": "12A2 If yes, was there imaging evidence of multiple infarcs?", + "description": "Blank if #12, CVDIMAG ≠ 1 (Yes).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CVDIMAG3": { + "title": "12A3 If yes, was there imaging evidence of extensive white matter hyperintensity?", + "description": "Blank if #12, CVDIMAG ≠ 1 (Yes).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CVDIMAG4": { + "title": "12A4 If yes, was there other imaging evidence?", + "description": "Blank if #12, CVDIMAG ≠ 1 (Yes).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CVDIMAGX": { + "title": "12A5 If yes, was there other imaging evidence - specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%). Blank if #12, CVDIMAG ≠ 1 (Yes) or #12A4, CVDIMAG4 =0 (No).", + "type": "string" + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "hach_isch_score.ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)" + }, + "hach_isch_score.STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)" + }, + "hach_isch_score.SOMATIC": { + "title": "3 Somatic complaints" + }, + "hach_isch_score.EMOT": { + "title": "4 Emotional incontinence" + }, + "hach_isch_score.HXHYPER": { + "title": "5 History or presence of hypertension" + }, + "hach_isch_score.HXSTROKE": { + "title": "6 History of stroke" + }, + "hach_isch_score.FOCLSYM": { + "title": "7 Focal neurological symptoms" + }, + "hach_isch_score.FOCLSIGN": { + "title": "8 Focal neurological signs" + }, + "hach_isch_score.HACHIN": { + "title": "9 Sum all circled answers for a total score" + }, + "cere_dise.CVDCOG": { + "title": "10 Using your best judgment, do you believe that cerebrovascular disease (CVD) is contributing to the cognitive impairment?" + }, + "cere_dise.STROKCOG": { + "title": "11 If there is a stroke, is there a temporal relationship between stroke and onset of cognitive impairment?" + }, + "cere_dise.CVDIMAG": { + "title": "12 Is there imaging evidence which supports that CVD is contributing to the cognitive impairment?" + }, + "cere_dise.if_yes.CVDIMAG1": { + "title": "12A1 If yes, was there imaging evidence of single strategic infarct?" + }, + "cere_dise.if_yes.CVDIMAG2": { + "title": "12A2 If yes, was there imaging evidence of multiple infarcs?" + }, + "cere_dise.if_yes.CVDIMAG3": { + "title": "12A3 If yes, was there imaging evidence of extensive white matter hyperintensity?" + }, + "cere_dise.if_yes.CVDIMAG4": { + "title": "12A4 If yes, was there other imaging evidence?" + }, + "cere_dise.if_yes.CVDIMAGX": { + "title": "12A5 If yes, was there other imaging evidence - specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "hach_isch_score.ABRUPT": { + "title": "1 Abrupt onset (re: cognitive status)" + }, + "hach_isch_score.STEPWISE": { + "title": "2 Stepwise deterioration (re: cognitive status)" + }, + "hach_isch_score.SOMATIC": { + "title": "3 Somatic complaints" + }, + "hach_isch_score.EMOT": { + "title": "4 Emotional incontinence" + }, + "hach_isch_score.HXHYPER": { + "title": "5 History or presence of hypertension" + }, + "hach_isch_score.HXSTROKE": { + "title": "6 History of stroke" + }, + "hach_isch_score.FOCLSYM": { + "title": "7 Focal neurological symptoms" + }, + "hach_isch_score.FOCLSIGN": { + "title": "8 Focal neurological signs" + }, + "hach_isch_score.HACHIN": { + "title": "9 Sum all circled answers for a total score" + }, + "cere_dise.CVDCOG": { + "title": "10 Using your best judgment, do you believe that cerebrovascular disease (CVD) is contributing to the cognitive impairment?" + }, + "cere_dise.STROKCOG": { + "title": "11 If there is a stroke, is there a temporal relationship between stroke and onset of cognitive impairment?" + }, + "cere_dise.CVDIMAG": { + "title": "12 Is there imaging evidence which supports that CVD is contributing to the cognitive impairment?" + }, + "cere_dise.if_yes.CVDIMAG1": { + "title": "12A1 If yes, was there imaging evidence of single strategic infarct?" + }, + "cere_dise.if_yes.CVDIMAG2": { + "title": "12A2 If yes, was there imaging evidence of multiple infarcs?" + }, + "cere_dise.if_yes.CVDIMAG3": { + "title": "12A3 If yes, was there imaging evidence of extensive white matter hyperintensity?" + }, + "cere_dise.if_yes.CVDIMAG4": { + "title": "12A4 If yes, was there other imaging evidence?" + }, + "cere_dise.if_yes.CVDIMAGX": { + "title": "12A5 If yes, was there other imaging evidence - specify" + } + }, + "boost_values": { + "patient": 1.0, + "hach_isch_score.ABRUPT": 1.0, + "hach_isch_score.STEPWISE": 1.0, + "hach_isch_score.SOMATIC": 1.0, + "hach_isch_score.EMOT": 1.0, + "hach_isch_score.HXHYPER": 1.0, + "hach_isch_score.HXSTROKE": 1.0, + "hach_isch_score.FOCLSYM": 1.0, + "hach_isch_score.FOCLSIGN": 1.0, + "hach_isch_score.HACHIN": 1.0, + "cere_dise.CVDCOG": 1.0, + "cere_dise.STROKCOG": 1.0, + "cere_dise.CVDIMAG": 1.0, + "cere_dise.if_yes.CVDIMAG1": 1.0, + "cere_dise.if_yes.CVDIMAG2": 1.0, + "cere_dise.if_yes.CVDIMAG3": 1.0, + "cere_dise.if_yes.CVDIMAG4": 1.0, + "cere_dise.if_yes.CVDIMAGX": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b2v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b3v1.json b/src/encoded/schemas/ivp_b3v1.json new file mode 100644 index 0000000000..899de2fc54 --- /dev/null +++ b/src/encoded/schemas/ivp_b3v1.json @@ -0,0 +1,776 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet\nForm B3: Evaluation Form –\nUnified Parkinson’s Disease Rating Scale (UPDRS1) – Motor Exam\n", + "description": "NOTE: This form is to be completed by the clinician.For additional \nclarification and examples, see UDS Coding Guidebook pages 26–31.\nCheck only one box per question.\n", + "id": "/profiles/ivp_b3v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "pdnormal" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "pdnormal": { + "title": "If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here", + "type": "boolean" + }, + "speech": { + "title": "1. Speech", + "type": "string", + "enum": [ + "0 Normal", + "1 Slight loss of expression, diction and/or volume", + "2 Monotone, slurred but understandable; moderately impaired", + "3 Marked impairment, difficult to understand", + "4 Unintelligible" + ] + }, + + "face_exp": { + "title": "2. Facial expression", + "type": "string", + "enum": [ + "0 Normal", + "1 Minimal hypomimia, could be normal \"poker face\"", + "2 Slight but definitely abnormal diminution of facial expression", + "3 Moderate hypomimia; lips parted some of the time", + "4 Masked or fixed facies with severe or complete loss of facial expression; lips parted ¼ inches or more" + ] + }, + + "trem_at_rest": { + "title": "3. Tremor at rest", + "type": "object", + "properties": { + "fac_lip_chin": { + "title": "3a. Face, lips, chin", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time" + ] + }, + "r_hand": { + "title": "3b. Right hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time" + ] + }, + "l_hand": { + "title": "3c. Left hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time" + ] + }, + "r_foot": { + "title": "3d. Right foot", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time" + ] + }, + "l_foot": { + "title": "3e. Left foot", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time" + ] + } + + } + }, + "action_trem_hands": { + "title": "4. Action or postural tremor of hands", + "type": "object", + "properties": { + "act_r_hand": { + "title": "4a. Right hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight; present with action", + "2 Moderate in amplitude, present with action", + "3 Moderate in amplitude with posture holding as well as action", + "4 Marked in amplitude; interferes with feeding" + ] + }, + "act_l_hand": { + "title": "4b. Left hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight; present with action", + "2 Moderate in amplitude, present with action", + "3 Moderate in amplitude with posture holding as well as action", + "4 Marked in amplitude; interferes with feeding" + ] + } + + } + }, + "rigidity": { + "title": "5. Rigidity\n(judged on passive movement of major joints with patient relaxed in sitting position; cogwheeling to be ignored)", + "type": "object", + "properties": { + "rig_neck": { + "title": "5a. Neck", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty" + ] + }, + "r_up": { + "title": "5b. Right upper extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty" + ] + }, + "l_up": { + "title": "5c. Left upper extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty" + ] + }, + "r_low": { + "title": "5d. Right lower extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty" + ] + }, + "l_low": { + "title": "5e. Left lower extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty" + ] + } + + } + }, + "finger_taps": { + "title": "6. Finger taps\n(patient taps thumb with index finger in rapid succession)", + "type": "object", + "properties": { + "taps_r": { + "title": "6a. Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "taps_r_untest": { + "title": "6a1. Right hand\nSpecify reason", + "type": "string" + }, + "taps_l": { + "title": "6b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "taps_l_untest": { + "title": "6b1. Left hand\nSpecify reason", + "type": "string" + } + } + }, + "hand_move": { + "title": "7. Hand movements\n(patient opens and closes hands in rapid succession)", + "type": "object", + "properties": { + "movem_r": { + "title": "7a, Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "movem_r_untest": { + "title": "7a1. Right hand\nSpecify reason", + "type": "string" + }, + "movem_l": { + "title": "7b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "movem_l_untest": { + "title": "7b1. Left hand\nSpecify reason", + "type": "string" + } + } + }, + "move_of_hands": { + "title": "8. Rapid alternating movements of hands\n(pronation-supination movements of hands, vertically and horizontally, with as large an amplitude as possible, both hands simultaneously)", + "type": "object", + "properties": { + "rap_alt_r": { + "title": "8a. Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, "rap_alt_r_untest": { + "title": "8a1. Right hand\nSpecify reason", + "type": "string" + }, + "rap_alt_l": { + "title": "8b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "rap_alt_l_untest": { + "title": "8b1. Left hand\nSpecify reason", + "type": "string" + } + } + }, + "leg_agil": { + "title": "9. Leg agility\n(patient taps heel on the ground in rapid succession, picking up entire leg; amplitude should be at least 3 inches)", + "type": "object", + "properties": { + "leg_agil_r": { + "title": "9a. Right leg", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "leg_agil_r_untest": { + "title": "9a1. Right leg\nSpecify reason", + "type": "string" + }, + "leg_agil_l": { + "title": "9b. Left leg", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "leg_agil_l_untest": { + "title": "9b1. Left leg\nSpecify reason", + "type": "string" + } + } + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)", + "type": "string", + "enum": [ + "0 Normal", + "1 Slow; or may need more than one attempt", + "2 Pushes self up from arms of seat", + "3 Tends to fall back and may have to try more than one time, but can get up without help", + "4 Unable to arise without help.", + "8 Untestable" + ] + }, + "arise_chair_untest": { + "title": "10a. Specify reason", + "type": "string" + }, + "posture": { + "title": "11. Posture", + "type": "string", + "enum": [ + "0 Normal", + "1 Not quite erect, slightly stooped posture; could be normal for older person", + "2 Moderately stooped posture, definitely abnormal; can be slightly leaning to one side", + "3 Severely stooped posture with kyphosis; can be moderately leaning to one side", + "4 Marked flexion with extreme abnormality of posture", + "8 Untestable" + ] + }, + "posture_untest": { + "title": "11a. Specify reason", + "type": "string" + }, + "gait": { + "title": "12. Gait", + "type": "string", + "enum": [ + "0 Normal", + "1 Walks slowly; may shuffle with short steps, but no festination (hastening steps) or propulsion", + "2 Walks with difficulty, but requires little or no assistance; may have some festination, short steps, or propulsion", + "3 Severe disturbance of gait requiring assistance", + "4 Cannot walk at all, even with assistance.", + "8 Untestable" + ] + }, + "gait_untest": { + "title": "12a. Specify reason", + "type": "string" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)", + "type": "string", + "enum": [ + "0 Normal erect", + "1 Retropulsion, but recovers unaided", + "2 Absence of postural response; would fall if not caught by examiner", + "3 Very unstable, tends to lose balance spontaneously", + "4 Unable to stand without assistance", + "8 Untestable" + ] + }, + "post_stab_untest": { + "title": "13a. Specify reason", + "type": "string" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)", + "type": "string", + "enum": [ + "0 None", + "1 Minimal slowness, giving movement a deliberate character; could be normal for some persons; possibly reduced amplitude", + "2 Mild degree of slowness and poverty of movement which is definitely abnormal. Alternatively, some reduced amplitude", + "3 Moderate slowness, poverty or small amplitude of movement", + "4 Marked slowness, poverty or small amplitude of movement" + ] + }, + "bradykin_untest": { + "title": "14a. Specify reason", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here" + }, + "speech": { + "title": "1. Speech" + }, + + "face_exp": { + "title": "2. Facial expression" + }, + + "trem_at_rest.fac_lip_chin": { + "title": "3a. Face, lips, chin" + }, + "trem_at_rest.r_hand": { + "title": "3b. Right hand" + }, + "trem_at_rest.l_hand": { + "title": "3c. Left hand" + }, + "trem_at_rest.r_foot": { + "title": "3d. Right foot" + }, + "trem_at_rest.l_foot": { + "title": "3e. Left foot" + }, + + "action_trem_hands.act_r_hand": { + "title": "4a. Right hand" + }, + "action_trem_hands.act_l_hand": { + "title": "4b. Left hand" + }, + + "rigidity.rig_neck": { + "title": "5a. Neck" + }, + "rigidity.r_up": { + "title": "5b. Right upper extremity" + }, + "rigidity.l_up": { + "title": "5c. Left upper extremity" + }, + "rigidity.r_low": { + "title": "5d. Right lower extremity" + }, + "rigidity.l_low": { + "title": "5e. Left lower extremity" + }, + + "finger_taps.taps_r": { + "title": "6a. Right hand" + }, + "finger_taps.taps_r_untest": { + "title": "6a1. Right hand\nSpecify reason" + }, + "finger_taps.taps_l": { + "title": "6b. Left hand" + }, + + "finger_taps.taps_l_untest": { + "title": "6b1. Left hand\nSpecify reason" + }, + "hand_move.movem_r": { + "title": "7a. Right hand" + }, + "hand_move.movem_r_untest": { + "title": "7a1. Right hand\nSpecify reason" + }, + "hand_move.movem_l": { + "title": "7b. Left hand" + }, + + "hand_move.movem_l_untest": { + "title": "7b1. Left hand\nSpecify reason" + }, + "move_of_hands.rap_alt_r": { + "title": "8a. Right hand" + }, + "move_of_hands.rap_alt_r_untest": { + "title": "8a1. Right hand\nSpecify reason" + }, + "move_of_hands.rap_alt_l": { + "title": "8b. Left hand" + }, + + "move_of_hands.rap_alt_l_untest": { + "title": "8b1. Left hand\nSpecify reason" + }, + "leg_agil.leg_agil_r": { + "title": "9a. Right leg" + }, + "leg_agil.leg_agil_r_untest": { + "title": "9a1. Right leg\nSpecify reason" + }, + "leg_agil.leg_agil_l": { + "title": "9b. Left leg" + }, + + "leg_agil.leg_agil_l_untest": { + "title": "9b1. Left leg\nSpecify reason" + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)" + }, + "arise_chair_untest": { + "title": "10a.Specify reason" + }, + "posture": { + "title": "11. Posture" + }, + "posture_untest": { + "title": "11a. Specify reason" + }, + "gait": { + "title": "12. Gait" + }, + "gait_untest": { + "title": "12a. Specify reason" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)" + }, + "post_stab_untest": { + "title": "13a. Specify reason" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)" + }, + "bradykin_untest": { + "title": "14a. Specify reason" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here" + }, + "speech": { + "title": "1. Speech" + }, + + "face_exp": { + "title": "2. Facial expression" + }, + + "trem_at_rest.fac_lip_chin": { + "title": "3a. Face, lips, chin" + }, + "trem_at_rest.r_hand": { + "title": "3b. Right hand" + }, + "trem_at_rest.l_hand": { + "title": "3c. Left hand" + }, + "trem_at_rest.r_foot": { + "title": "3d. Right foot" + }, + "trem_at_rest.l_foot": { + "title": "3e. Left foot" + }, + + "action_trem_hands.act_r_hand": { + "title": "4a. Right hand" + }, + "action_trem_hands.act_l_hand": { + "title": "4b. Left hand" + }, + + "rigidity.rig_neck": { + "title": "5a. Neck" + }, + "rigidity.r_up": { + "title": "5b. Right upper extremity" + }, + "rigidity.l_up": { + "title": "5c. Left upper extremity" + }, + "rigidity.r_low": { + "title": "5d. Right lower extremity" + }, + "rigidity.l_low": { + "title": "5e. Left lower extremity" + }, + + "finger_taps.taps_r": { + "title": "6a. Right hand" + }, + "finger_taps.taps_r_untest": { + "title": "6a1. Right hand\nSpecify reason" + }, + "finger_taps.taps_l": { + "title": "6b. Left hand" + }, + + "finger_taps.taps_l_untest": { + "title": "6b1. Left hand\nSpecify reason" + }, + "hand_move.movem_r": { + "title": "7a. Right hand" + }, + "hand_move.movem_r_untest": { + "title": "7a1. Right hand\nSpecify reason" + }, + "hand_move.movem_l": { + "title": "7b. Left hand" + }, + + "hand_move.movem_l_untest": { + "title": "7b1. Left hand\nSpecify reason" + }, + "move_of_hands.rap_alt_r": { + "title": "8a. Right hand" + }, + "move_of_hands.rap_alt_r_untest": { + "title": "8a1. Right hand\nSpecify reason" + }, + "move_of_hands.rap_alt_l": { + "title": "8b. Left hand" + }, + + "move_of_hands.rap_alt_l_untest": { + "title": "8b1. Left hand\nSpecify reason" + }, + "leg_agil.leg_agil_r": { + "title": "9a. Right leg" + }, + "leg_agil.leg_agil_r_untest": { + "title": "9a1. Right leg\nSpecify reason" + }, + "leg_agil.leg_agil_l": { + "title": "9b. Left leg" + }, + + "leg_agil.leg_agil_l_untest": { + "title": "9b1. Left leg\nSpecify reason" + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)" + }, + "arise_chair_untest": { + "title": "10a.Specify reason" + }, + "posture": { + "title": "11. Posture" + }, + "posture_untest": { + "title": "11a. Specify reason" + }, + "gait": { + "title": "12. Gait" + }, + "gait_untest": { + "title": "12a. Specify reason" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)" + }, + "post_stab_untest": { + "title": "13a. Specify reason" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)" + }, + "bradykin_untest": { + "title": "14a. Specify reason" + } + }, + "boost_values": { + "patient": 1.0, + "pdnormal": 1.0, + "speech": 1.0, + "face_exp": 1.0, + "trem_at_rest.fac_lip_chin": 1.0, + "trem_at_rest.r_hand": 1.0, + "trem_at_rest.l_hand": 1.0, + "trem_at_rest.r_foot": 1.0, + "trem_at_rest.l_foot": 1.0, + "action_trem_hands.act_r_hand": 1.0, + "action_trem_hands.act_l_hand": 1.0, + "rigidity.rig_neck": 1.0, + "rigidity.r_up": 1.0, + "rigidity.l_up": 1.0, + "rigidity.r_low": 1.0, + "rigidity.l_low": 1.0, + "finger_taps.taps_r": 1.0, + "finger_taps.taps_r_untest": 1.0, + "finger_taps.taps_l": 1.0, + "finger_taps.taps_l_untest": 1.0, + "hand_move.movem_r": 1.0, + "hand_move.movem_r_untest": 1.0, + "hand_move.movem_l": 1.0, + "hand_move.movem_l_untest": 1.0, + "move_of_hands.rap_alt_r": 1.0, + "move_of_hands.rap_alt_r_untest": 1.0, + "move_of_hands.rap_alt_l": 1.0, + "move_of_hands.rap_alt_l_untest": 1.0, + "leg_agil.leg_agil_r": 1.0, + "leg_agil.leg_agil_r_untest": 1.0, + "leg_agil.leg_agil_l": 1.0, + "leg_agil.leg_agil_l_untest": 1.0, + "arise_chair": 1.0, + "arise_chair_untest": 1.0, + "posture": 1.0, + "posture_untest": 1.0, + "gait": 1.0, + "gait_untest": 1.0, + "post_stab": 1.0, + "post_stab_untest": 1.0, + "bradykin": 1.0, + "bradykin_untest": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b3v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b3v2.json b/src/encoded/schemas/ivp_b3v2.json new file mode 100644 index 0000000000..db02a8f182 --- /dev/null +++ b/src/encoded/schemas/ivp_b3v2.json @@ -0,0 +1,930 @@ +{ + "title": "ADC Form B3.1 Unified Parkinson's Disease Rating Scale (UPDRS)-Motor Exam*", + "description": "NOTE: This form is to be completed by the clinician or other trained health professional. For additional clarification and examples, see UDS Coding Guidebook Version 2. Check only ONE box per question. *Fahn S, Elton RL, UPDRS Development Committee. The Unified Parkinson's Disease Rating Scale. In Fahn S,Marsden CD, Caine DB, Goldstein M, eds. Recent developments in Parkinson's disease, Vol. 2. Florham Park, NJ: Macmillan Healthcare Infonnation,1987:153-163,293-304. Reproduced by permission of the author.", + "id": "/profiles/ivp_b3v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "pdnormal" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "pdnormal": { + "title": "[Optional] If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here", + "type": "boolean" + }, + "speech": { + "title": "1. Speech", + "type": "string", + "enum": [ + "0 Normal", + "1 Slight loss of expression, diction and/or volume", + "2 Monotone, slurred but understandable; moderately impaired", + "3 Marked impairment, difficult to understand", + "4 Unintelligible", + "8 Untestable" + ] + }, + "speech_untest": { + "title": "Specify reason", + "type": "string" + }, + "face_exp": { + "title": "2. Facial expression", + "type": "string", + "enum": [ + "0 Normal", + "1 Minimal hypomimia, could be normal \"poker face\"", + "2 Slight but definitely abnormal diminution of facial expression", + "3 Moderate hypomimia; lips parted some of the time", + "4 Masked or fixed facies with severe or complete loss of facial expression; lips parted ¼ inches or more", + "8 Untestable" + ] + }, + "face_exp_untest": { + "title": "Specify reason", + "type": "string" + }, + "trem_at_rest": { + "title": "3. Tremor at rest", + "type": "object", + "properties": { + "fac_lip_chin": { + "title": "3a. Face, lips, chin", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "fac_lip_chin_untest": { + "title": "Face, lips, chin\nSpecify reason", + "type": "string" + }, + "r_hand": { + "title": "3b. Right hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "r_hand_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "l_hand": { + "title": "3c. Left hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "l_hand_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + }, + "r_foot": { + "title": "3d. Right foot", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "r_foot_untest": { + "title": "Right foot\nSpecify reason", + "type": "string" + }, + "l_foot": { + "title": "3e. Left foot", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + + "l_foot_untest": { + "title": "Left foot\nSpecify reason", + "type": "string" + } + } + }, + "action_trem_hands": { + "title": "4. Action or postural tremor of hands", + "type": "object", + "properties": { + "act_r_hand": { + "title": "4a. Right hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight; present with action", + "2 Moderate in amplitude, present with action", + "3 Moderate in amplitude with posture holding as well as action", + "4 Marked in amplitude; interferes with feeding", + "8 Untestable" + ] + }, + "act_r_hand_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "act_l_hand": { + "title": "4b. Left hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight; present with action", + "2 Moderate in amplitude, present with action", + "3 Moderate in amplitude with posture holding as well as action", + "4 Marked in amplitude; interferes with feeding", + "8 Untestable" + ] + }, + + "act_l_hand_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "rigidity": { + "title": "5. Rigidity\n(judged on passive movement of major joints with patient relaxed in sitting position; cogwheeling to be ignored)", + "type": "object", + "properties": { + "rig_neck": { + "title": "5a. Neck", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "rig_neck_untest": { + "title": "Neck\nSpecify reason", + "type": "string" + }, + "r_up": { + "title": "5b. Right upper extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "r_up_untest": { + "title": "Right upper extremity\nSpecify reason", + "type": "string" + }, + "l_up": { + "title": "5c. Left upper extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "l_up_untest": { + "title": "Left upper extremity\nSpecify reason", + "type": "string" + }, + "r_low": { + "title": "5d. Right lower extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "r_low_untest": { + "title": "Right lower extremity\nSpecify reason", + "type": "string" + }, + "l_low": { + "title": "5e. Left lower extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + + + "l_low_untest": { + "title": "Left lower extremity\nSpecify reason", + "type": "string" + } + } + }, + "finger_taps": { + "title": "6. Finger taps\n(patient taps thumb with index finger in rapid succession)", + "type": "object", + "properties": { + "taps_r": { + "title": "6a. Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "taps_r_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "taps_l": { + "title": "6b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "taps_l_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "hand_move": { + "title": "7. Hand movements\n(patient opens and closes hands in rapid succession)", + "type": "object", + "properties": { + "movem_r": { + "title": "7a, Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "movem_r_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "movem_l": { + "title": "7b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "movem_l_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "move_of_hands": { + "title": "8. Rapid alternating movements of hands\n(pronation-supination movements of hands, vertically and horizontally, with as large an amplitude as possible, both hands simultaneously)", + "type": "object", + "properties": { + "rap_alt_r": { + "title": "8a. Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "rap_alt_r_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "rap_alt_l": { + "title": "8b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "rap_alt_l_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "leg_agil": { + "title": "9. Leg agility\n(patient taps heel on the ground in rapid succession, picking up entire leg; amplitude should be at least 3 inches)", + "type": "object", + "properties": { + "leg_agil_r": { + "title": "9a. Right leg", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "leg_agil_r_untest": { + "title": "Right leg\nSpecify reason", + "type": "string" + }, + "leg_agil_l": { + "title": "9b. Left leg", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + + "leg_agil_l_untest": { + "title": "Left leg\nSpecify reason", + "type": "string" + } + } + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)", + "type": "string", + "enum": [ + "0 Normal", + "1 Slow; or may need more than one attempt", + "2 Pushes self up from arms of seat", + "3 Tends to fall back and may have to try more than one time, but can get up without help", + "4 Unable to arise without help.", + "8 Untestable" + ] + }, + "arise_chair_untest": { + "title": "Specify reason", + "type": "string" + }, + "posture": { + "title": "11. Posture", + "type": "string", + "enum": [ + "0 Normal", + "1 Not quite erect, slightly stooped posture; could be normal for older person", + "2 Moderately stooped posture, definitely abnormal; can be slightly leaning to one side", + "3 Severely stooped posture with kyphosis; can be moderately leaning to one side", + "4 Marked flexion with extreme abnormality of posture", + "8 Untestable" + ] + }, + "posture_untest": { + "title": "Specify reason", + "type": "string" + }, + "gait": { + "title": "12. Gait", + "type": "string", + "enum": [ + "0 Normal", + "1 Walks slowly; may shuffle with short steps, but no festination (hastening steps) or propulsion", + "2 Walks with difficulty, but requires little or no assistance; may have some festination, short steps, or propulsion", + "3 Severe disturbance of gait requiring assistance", + "4 Cannot walk at all, even with assistance.", + "8 Untestable" + ] + }, + "gait_untest": { + "title": "Specify reason", + "type": "string" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)", + "type": "string", + "enum": [ + "0 Normal erect", + "1 Retropulsion, but recovers unaided", + "2 Absence of postural response; would fall if not caught by examiner", + "3 Very unstable, tends to lose balance spontaneously", + "4 Unable to stand without assistance", + "8 Untestable" + ] + }, + "post_stab_untest": { + "title": "Specify reason", + "type": "string" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)", + "type": "string", + "enum": [ + "0 None", + "1 Minimal slowness, giving movement a deliberate character; could be normal for some persons; possibly reduced amplitude", + "2 Mild degree of slowness and poverty of movement which is definitely abnormal. Alternatively, some reduced amplitude", + "3 Moderate slowness, poverty or small amplitude of movement", + "4 Marked slowness, poverty or small amplitude of movement", + "8 Untestable" + ] + }, + "bradykin_untest": { + "title": "Specify reason", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here" + }, + "speech": { + "title": "1. Speech" + }, + "speech_untest": { + "title": "Specify reason" + }, + "face_exp": { + "title": "2. Facial expression" + }, + "face_exp_untest": { + "title": "Specify reason" + }, + "trem_at_rest.fac_lip_chin": { + "title": "3a. Face, lips, chin" + }, + "trem_at_rest.fac_lip_chin_untest": { + "title": "Face, lips, chin\nSpecify reason" + }, + "trem_at_rest.r_hand": { + "title": "3b. Right hand" + }, + "trem_at_rest.r_hand_untest": { + "title": "trem_at_rest.right hand\nSpecify reason" + }, + "trem_at_rest.l_hand": { + "title": "3c. Left hand" + }, + "trem_at_rest.l_hand_untest": { + "title": "trem_at_rest.left hand\nSpecify reason" + }, + "trem_at_rest.r_foot": { + "title": "3d. Right foot" + }, + "trem_at_rest.r_foot_untest": { + "title": "trem_at_rest.right foot\nSpecify reason" + }, + "trem_at_rest.l_foot": { + "title": "3e. Left foot" + }, + "trem_at_rest.l_foot_untest": { + "title": "trem_at_rest.left foot\nSpecify reason" + }, + "action_trem_hands.act_r_hand": { + "title": "4a. Right hand" + }, + "action_trem_hands.act_r_hand_untest": { + "title": "Right hand\nSpecify reason" + }, + "action_trem_hands.act_l_hand": { + "title": "4b. Left hand" + }, + "action_trem_hands.act_l_hand_untest": { + "title": "Left hand\nSpecify reason" + }, + "rigidity.rig_neck": { + "title": "5a. Neck" + }, + "rigidity.rig_neck_untest": { + "title": "Neck\nSpecify reason" + }, + "rigidity.r_up": { + "title": "5b. Right upper extremity" + }, + "rigidity.r_up_untest": { + "title": "rigidity.right upper extremity\nSpecify reason" + }, + "rigidity.l_up": { + "title": "5c. Left upper extremity" + }, + "rigidity.l_up_untest": { + "title": "rigidity.left upper extremity\nSpecify reason" + }, + "rigidity.r_low": { + "title": "5d. Right lower extremity" + }, + "rigidity.r_low_untest": { + "title": "rigidity.right lower extremity\nSpecify reason" + }, + "rigidity.l_low": { + "title": "5e. Left lower extremity" + }, + "rigidity.l_low_untest": { + "title": "rigidity.left lower extremity\nSpecify reason" + }, + "finger_taps.taps_r": { + "title": "6a. Right hand" + }, + "finger_taps.taps_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "finger_taps.taps_l": { + "title": "6b. Left hand" + }, + "finger_taps.taps_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "hand_move.movem_r": { + "title": "7a, Right hand" + }, + "hand_move.movem_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "hand_move.movem_l": { + "title": "7b. Left hand" + }, + "hand_move.movem_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "move_of_hands.rap_alt_r": { + "title": "8a. Right hand" + }, + "move_of_hands.rap_alt_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "move_of_hands.rap_alt_l": { + "title": "8b. Left hand" + }, + "move_of_hands.rap_alt_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "leg_agil.leg_agil_r": { + "title": "9a. Right leg" + }, + "leg_agil.leg_agil_r_untest": { + "title": "Right leg\nSpecify reason" + }, + "leg_agil.leg_agil_l": { + "title": "9b. Left leg" + }, + "leg_agil.leg_agil_l_untest": { + "title": "Left leg\nSpecify reason" + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)" + }, + "arise_chair_untest": { + "title": "Specify reason" + }, + "posture": { + "title": "11. Posture" + }, + "posture_untest": { + "title": "Specify reason" + }, + "gait": { + "title": "12. Gait" + }, + "gait_untest": { + "title": "Specify reason" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)" + }, + "post_stab_untest": { + "title": "Specify reason" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)" + }, + "bradykin_untest": { + "title": "Specify reason" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here" + }, + "speech": { + "title": "1. Speech" + }, + "speech_untest": { + "title": "Specify reason" + }, + "face_exp": { + "title": "2. Facial expression" + }, + "face_exp_untest": { + "title": "Specify reason" + }, + "trem_at_rest.fac_lip_chin": { + "title": "3a. Face, lips, chin" + }, + "trem_at_rest.fac_lip_chin_untest": { + "title": "Face, lips, chin\nSpecify reason" + }, + "trem_at_rest.r_hand": { + "title": "3b. Right hand" + }, + "trem_at_rest.r_hand_untest": { + "title": "trem_at_rest.right hand\nSpecify reason" + }, + "trem_at_rest.l_hand": { + "title": "3c. Left hand" + }, + "trem_at_rest.l_hand_untest": { + "title": "trem_at_rest.left hand\nSpecify reason" + }, + "trem_at_rest.r_foot": { + "title": "3d. Right foot" + }, + "trem_at_rest.r_foot_untest": { + "title": "trem_at_rest.right foot\nSpecify reason" + }, + "trem_at_rest.l_foot": { + "title": "3e. Left foot" + }, + "trem_at_rest.l_foot_untest": { + "title": "trem_at_rest.left foot\nSpecify reason" + }, + "action_trem_hands.act_r_hand": { + "title": "4a. Right hand" + }, + "action_trem_hands.act_r_hand_untest": { + "title": "Right hand\nSpecify reason" + }, + "action_trem_hands.act_l_hand": { + "title": "4b. Left hand" + }, + "action_trem_hands.act_l_hand_untest": { + "title": "Left hand\nSpecify reason" + }, + "rigidity.rig_neck": { + "title": "5a. Neck" + }, + "rigidity.rig_neck_untest": { + "title": "Neck\nSpecify reason" + }, + "rigidity.r_up": { + "title": "5b. Right upper extremity" + }, + "rigidity.r_up_untest": { + "title": "rigidity.right upper extremity\nSpecify reason" + }, + "rigidity.l_up": { + "title": "5c. Left upper extremity" + }, + "rigidity.l_up_untest": { + "title": "rigidity.left upper extremity\nSpecify reason" + }, + "rigidity.r_low": { + "title": "5d. Right lower extremity" + }, + "rigidity.r_low_untest": { + "title": "rigidity.right lower extremity\nSpecify reason" + }, + "rigidity.l_low": { + "title": "5e. Left lower extremity" + }, + "rigidity.l_low_untest": { + "title": "rigidity.left lower extremity\nSpecify reason" + }, + "finger_taps.taps_r": { + "title": "6a. Right hand" + }, + "finger_taps.taps_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "finger_taps.taps_l": { + "title": "6b. Left hand" + }, + "finger_taps.taps_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "hand_move.movem_r": { + "title": "7a, Right hand" + }, + "hand_move.movem_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "hand_move.movem_l": { + "title": "7b. Left hand" + }, + "hand_move.movem_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "move_of_hands.rap_alt_r": { + "title": "8a. Right hand" + }, + "move_of_hands.rap_alt_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "move_of_hands.rap_alt_l": { + "title": "8b. Left hand" + }, + "move_of_hands.rap_alt_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "leg_agil.leg_agil_r": { + "title": "9a. Right leg" + }, + "leg_agil.leg_agil_r_untest": { + "title": "Right leg\nSpecify reason" + }, + "leg_agil.leg_agil_l": { + "title": "9b. Left leg" + }, + "leg_agil.leg_agil_l_untest": { + "title": "Left leg\nSpecify reason" + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)" + }, + "arise_chair_untest": { + "title": "Specify reason" + }, + "posture": { + "title": "11. Posture" + }, + "posture_untest": { + "title": "Specify reason" + }, + "gait": { + "title": "12. Gait" + }, + "gait_untest": { + "title": "Specify reason" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)" + }, + "post_stab_untest": { + "title": "Specify reason" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)" + }, + "bradykin_untest": { + "title": "Specify reason" + } + }, + + "boost_values": { + "patient": 1.0, + "status": 1.0, + "pdnormal": 1.0, + "speech": 1.0, + "speech_untest": 1.0, + "face_exp": 1.0, + "face_exp_untest": 1.0, + "trem_at_rest.fac_lip_chin": 1.0, + "trem_at_rest.fac_lip_chin_untest": 1.0, + "trem_at_rest.r_hand": 1.0, + "trem_at_rest.r_hand_untest": 1.0, + "trem_at_rest.l_hand": 1.0, + "trem_at_rest.l_hand_untest": 1.0, + "trem_at_rest.r_foot": 1.0, + "trem_at_rest.r_foot_untest": 1.0, + "trem_at_rest.l_foot": 1.0, + "trem_at_rest.l_foot_untest": 1.0, + "action_trem_hands.act_r_hand": 1.0, + "action_trem_hands.act_r_hand_untest": 1.0, + "action_trem_hands.act_l_hand": 1.0, + "action_trem_hands.act_l_hand_untest": 1.0, + "rigidity.rig_neck": 1.0, + "rigidity.rig_neck_untest": 1.0, + "rigidity.r_up": 1.0, + "rigidity.r_up_untest": 1.0, + "rigidity.l_up": 1.0, + "rigidity.l_up_untest": 1.0, + "rigidity.r_low": 1.0, + "rigidity.r_low_untest": 1.0, + "rigidity.l_low": 1.0, + "rigidity.l_low_untest": 1.0, + "finger_taps.taps_r": 1.0, + "finger_taps.taps_r_untest": 1.0, + "finger_taps.taps_l": 1.0, + "finger_taps.taps_l_untest": 1.0, + "hand_move.movem_r": 1.0, + "hand_move.movem_r_untest": 1.0, + "hand_move.movem_l": 1.0, + "hand_move.movem_l_untest": 1.0, + "move_of_hands.rap_alt_r": 1.0, + "move_of_hands.rap_alt_r_untest": 1.0, + "move_of_hands.rap_alt_l": 1.0, + "move_of_hands.rap_alt_l_untest": 1.0, + "leg_agil.leg_agil_r": 1.0, + "leg_agil.leg_agil_r_untest": 1.0, + "leg_agil.leg_agil_l": 1.0, + "leg_agil.leg_agil_l_untest": 1.0, + "arise_chair": 1.0, + "arise_chair_untest": 1.0, + "posture": 1.0, + "posture_untest": 1.0, + "gait": 1.0, + "gait_untest": 1.0, + "post_stab": 1.0, + "post_stab_untest": 1.0, + "bradykin": 1.0, + "bradykin_untest": 1.0 + + }, + "changelog": "/profiles/changelogs/ivp_b3v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b4.json b/src/encoded/schemas/ivp_b4.json new file mode 100644 index 0000000000..f48fc9d50b --- /dev/null +++ b/src/encoded/schemas/ivp_b4.json @@ -0,0 +1,189 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B4®: Dementia Staging Instrument plus NACC FTLD Behario & Language Domains (CDR® Plus NACC FTLD)", + "description": "INSTRUCTIONS: For information on the required online CDR training, see UDS Coding Guidebook for Initial Visit Packet, Form B4. This form is to be completed by the clinician or other trained health professional, based on co-participant report and behavioral and neurological exam of the subject. In the extremely rare instances when no co-participant is available, the clinician or other trained health professional must complete this form using all other available information and his/her best clinical judgement. Score only as decline from previous level due to cognitive loss, not impairment due to other factors, such as physical disability. For further information, see UDS Coding Guidebook for Initial Visit Packet, Form B4.Link to NACC Coding Guidebook", + "comment": "Schema for submitting UDS ivp_A1 form information. ", + "id": "/profiles/uds_ivp_b4.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "sec1", + "sec2" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "sec1": { + "title": "SECTION 1: CDR® Dementia Staging Instrument1", + + "type": "object", + "properties": { + "memory": { + "title": "1. MEMORY", + "type": "string", + "enum": [ + "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "0.5 Questionable - 0.5 Consistent slight forgetfulness; partial recollection of events; \"benign\" forgetfulness.", + "1 Mild - 1 Moderate memory loss, more marked for recent events; defect interferes with everyday activities.", + "2 Moderate - 2 Severe memory loss; only highly learned material retained; new material rapidly lost.", + "3 Severe - 3 Severe memory loss; only fragments remain." + ] + }, + "orient": { + "title": "2. ORIENTATION", + "type": "string", + "enum": [ + "0 None - 0 Fully oriented", + "0.5 Questionable - 0.5 Fully oriented except for slight difficulty with time relationships.", + "1 Mild - 1 Moderate difficulty with time relationships; oriented for place at examination; may have geographic disorientation elsewhere.", + "2 Moderate - 2 Severe difficulty with time relationships; usually disoriented to time, often to place.", + "3 Severe - 3 Oriented to person only." + ] + }, + "judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING", + "type": "string", + "enum": [ + "0 None - 0 Solves everyday problems, handles business & financial affairs well; judgment good in relation to past performance.", + "0.5 Questionable - 0.5 Slight impairment in solving problems, similarities, and differences.", + "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "2 Moderate - 2 Severely impaired in handling problems, similarities, and differences; social judgment usually impaired.", + "3 Severe - 3 Unable to make judgments or solve problems." + ] + }, + "commun": { + "title": "4. COMMUNITY AFFAIRS", + "type": "string", + "enum": [ + "0 None - 0 Independent function at usual level in job, shopping, volunteer and social groups.", + "0.5 Questionable - 0.5 Slight impairment in these activities.", + "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "2 Moderate - 2 No pretense of independent function outside the home; appears well enough to be taken to functions outside the family home.", + "3 Severe - 3 No pretense of independent function outside the home; appears too ill to be taken to functions outside the family home." + ] + }, + "homehobb": { + "title": "5. HOME & HOBBIES", + "type": "string", + "enum": [ + "0 None - 0 Life at home, hobbies, and intellectual interests well maintained.", + "0.5 Questionable - 0.5 Life at home, hobbies, and intellectual interests slightly impaired.", + "1 Mild - 1 Mild but definite impairment of function at home; more difficult chores abandoned; more complicated hobbies and interests abandoned.", + "2 Moderate - 2 Only simple chores preserved; very restricted interests, poorly maintained.", + "3 Severe - 3 No significant function in the home." + ] + }, + "perscare": { + "title": "6. PERSONAL CARE", + "type": "string", + "enum": [ + "0 None / Questionable - 0Fully capable of self-care (=0).", + "1 Mild - 1 Needs prompting.", + "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "3 Severe - 3 Requires much help with personal care; frequent incontinence." + ] + }, + "cdrsum": { + "title": "7. CDR SUM OF BOXES", + "description": "Link to Global CDR calculation tool: https://www.alz.washington.edu/cdrnacc.html", + "type": "string" + }, + "cdrglob": { + "title": "8. GLOBAL CDR", + "description": "Link to Global CDR calculation tool", + "type": "string", + "enum": [ + "0 0.0 = No Impairment", + "0.5 0.5 = Questionable impariment", + "1 1.0 = Mild impairment", + "2 2.0 = Moderate impairment", + "3 3.0 = Severe impairment" + ] + } + }, + "required": [ + "memory", + "orient", + "judgment", + "commun", + "homehobb", + "perscare", + "cdrsum", + "cdrglob" + ] + }, + "sec2": { + "title": "SECTION 2: NACC FTLD BEHAVIOR & LANGUAGE DOMAINS", + "type": "object", + "properties": { + "comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2", + "type": "string", + "enum": [ + "0 None - 0 Socially appropriate behavior.", + "0.5 Questionable - 0.5 Questionable changes in comportment, empathy, appropriateness of actions.", + "1 Mild - 1 Mild but definite changes in behavior.", + "2 Moderate - 2 Moderate behavioral changes, affecting interpersonal relationships and interactions in a significant manner.", + "3 Severe - 3 Severe behavioral changes, making interpersonal interactions all unidirectional." + ] + }, + "cdrlang": { + "title": "10. LANGUAGE 3", + "type": "string", + "enum": [ + "0 None - 0 No language difficulty or occasional mild tip-of-the-tongue.", + "0.5 Questionable - 0.5 Consistent mild word finding difficulties; simplification of word choice; circumlocution; decreased phrase length; and/or mild comprehension difficulties.", + "1 Mild - 1 Moderate word finding difficulty in speech; cannot name objects in environment; reduced phrase length and/or agrammatical speech; and/or reduced comprehension in conversation and reading.", + "2 Moderate - 2 Moderate to severe impairments in either speech or comprehension; has difficulty communicating thoughts; writing may be slightly more effective.", + "3 Severe - 3 Severe comprehension deficits; no intelligible speech." + ] + } + }, + "required": [ + "comport", + "cdrlang" + ] + } + }, + + "boost_values": { + "patient": 1.0, + "sec1.memory": 1.0, + "sec1.orient": 1.0, + "sec1.judgment": 1.0, + "sec1.commun": 1.0, + "sec1.homehobb": 1.0, + "sec1.perscare": 1.0, + "sec1.cdrsum": 1.0, + "sec1.cdrglob": 1.0, + "sec2.comport": 1.0, + "sec2.cdrlang": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b4.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b4v1.json b/src/encoded/schemas/ivp_b4v1.json new file mode 100644 index 0000000000..13fc4ce703 --- /dev/null +++ b/src/encoded/schemas/ivp_b4v1.json @@ -0,0 +1,196 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B4®: Dementia Staging Instrument plus NACC FTLD Behario & Language Domains (CDR® Plus NACC FTLD)", + "description": "NOTE: This form is to be completed by the clinician, based on informant report and neurological exam of the Examiner’s initials:__ __ __\nsubject. In the extremely rare instances when no informant is available, the clinician must complete the CDRutilizing\nall other available information and his/her best clinical judgment.Score only as decline from previous level due to cognitive loss,\nnot impairment due to other factors. For further information, see UDS Coding Guidebook pages 32–33.\n", + "comment": "Schema for submitting UDS ivp_b4 form information. ", + "id": "/profiles/ivp_b4v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "memory": { + "title": "1. MEMORY", + "type": "string", + "enum": [ + "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "0.5 Questionable - 0.5 Consistent slight forgetfulness; partial recollection of events; \"benign\" forgetfulness.", + "1 Mild - 1 Moderate memory loss, more marked for recent events; defect interferes with everyday activities.", + "2 Moderate - 2 Severe memory loss; only highly learned material retained; new material rapidly lost.", + "3 Severe - 3 Severe memory loss; only fragments remain." + ] + }, + "orient": { + "title": "2. ORIENTATION", + "type": "string", + "enum": [ + "0 None - 0 Fully oriented", + "0.5 Questionable - 0.5 Fully oriented except for slight difficulty with time relationships.", + "1 Mild - 1 Moderate difficulty with time relationships; oriented for place at examination; may have geographic disorientation elsewhere.", + "2 Moderate - 2 Severe difficulty with time relationships; usually disoriented to time, often to place.", + "3 Severe - 3 Oriented to person only." + ] + }, + "judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING", + "type": "string", + "enum": [ + "0 None - 0 Solves everyday problems, handles business & financial affairs well; judgment good in relation to past performance.", + "0.5 Questionable - 0.5 Slight impairment in solving problems, similarities, and differences.", + "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "2 Moderate - 2 Severely impaired in handling problems, similarities, and differences; social judgment usually impaired.", + "3 Severe - 3 Unable to make judgments or solve problems." + ] + }, + "commun": { + "title": "4. COMMUNITY AFFAIRS", + "type": "string", + "enum": [ + "0 None - 0 Independent function at usual level in job, shopping, volunteer and social groups.", + "0.5 Questionable - 0.5 Slight impairment in these activities.", + "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "2 Moderate - 2 No pretense of independent function outside the home; appears well enough to be taken to functions outside the family home.", + "3 Severe - 3 No pretense of independent function outside the home; appears too ill to be taken to functions outside the family home." + ] + }, + "homehobb": { + "title": "5. HOME & HOBBIES", + "type": "string", + "enum": [ + "0 None - 0 Life at home, hobbies, and intellectual interests well maintained.", + "0.5 Questionable - 0.5 Life at home, hobbies, and intellectual interests slightly impaired.", + "1 Mild - 1 Mild but definite impairment of function at home; more difficult chores abandoned; more complicated hobbies and interests abandoned.", + "2 Moderate - 2 Only simple chores preserved; very restricted interests, poorly maintained.", + "3 Severe - 3 No significant function in the home." + ] + }, + "perscare": { + "title": "6. PERSONAL CARE", + "type": "string", + "enum": [ + "0 None / Questionable - 0Fully capable of self-care (=0).", + "1 Mild - 1 Needs prompting.", + "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "3 Severe - 3 Requires much help with personal care; frequent incontinence." + ] + }, + "cdrsum": { + "title": "7. CDR SUM OF BOXES", + "description": "Link to Global CDR calculation tool: https://www.alz.washington.edu/cdrnacc.html", + "type": "string" + }, + "cdrglob": { + "title": "8. GLOBAL CDR", + "description": "Link to Global CDR calculation tool", + "type": "string", + "enum": [ + "0 0.0 = No Impairment", + "0.5 0.5 = Questionable impariment", + "1 1.0 = Mild impairment", + "2 2.0 = Moderate impairment", + "3 3.0 = Severe impairment" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "memory": { + "title": "1. MEMORY" + }, + "orient": { + "title": "2. ORIENTATION" + }, + "judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "homehobb": { + "title": "5. HOME & HOBBIES" + }, + "perscare": { + "title": "6. PERSONAL CARE" + }, + "cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "cdrglob": { + "title": "8. GLOBAL CDR" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "memory": { + "title": "1. MEMORY" + }, + "orient": { + "title": "2. ORIENTATION" + }, + "judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "homehobb": { + "title": "5. HOME & HOBBIES" + }, + "perscare": { + "title": "6. PERSONAL CARE" + }, + "cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "cdrglob": { + "title": "8. GLOBAL CDR" + } + + }, + "boost_values": { + "patient": 1.0, + "memory": 1.0, + "orient": 1.0, + "judgment": 1.0, + "commun": 1.0, + "homehobb": 1.0, + "perscare": 1.0, + "cdrsum": 1.0, + "cdrglob": 1.0 + + }, + "changelog": "/profiles/changelogs/ivp_b4v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b4v2.json b/src/encoded/schemas/ivp_b4v2.json new file mode 100644 index 0000000000..c1eeb8f910 --- /dev/null +++ b/src/encoded/schemas/ivp_b4v2.json @@ -0,0 +1,272 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B4®: Dementia Staging Instrument plus NACC FTLD Behario & Language Domains (CDR® Plus NACC FTLD)", + "description": "INSTRUCTIONS: For information on the required online CDR training, see UDS Coding Guidebook for Initial Visit Packet, Form B4. This form is to be completed by the clinician or other trained health professional, based on co-participant report and behavioral and neurological exam of the subject. In the extremely rare instances when no co-participant is available, the clinician or other trained health professional must complete this form using all other available information and his/her best clinical judgement. Score only as decline from previous level due to cognitive loss, not impairment due to other factors, such as physical disability. For further information, see UDS Coding Guidebook for Initial Visit Packet, Form B4.Link to NACC Coding Guidebook", + "comment": "Schema for submitting UDS ivp_A1 form information. ", + "id": "/profiles/ivp_b4v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "sec1", + "sec2" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "sec1": { + "title": "SECTION 1: CDR® Dementia Staging Instrument1", + + "type": "object", + "properties": { + "memory": { + "title": "1. MEMORY", + "type": "string", + "enum": [ + "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "0.5 Questionable - 0.5 Consistent slight forgetfulness; partial recollection of events; \"benign\" forgetfulness.", + "1 Mild - 1 Moderate memory loss, more marked for recent events; defect interferes with everyday activities.", + "2 Moderate - 2 Severe memory loss; only highly learned material retained; new material rapidly lost.", + "3 Severe - 3 Severe memory loss; only fragments remain." + ] + }, + "orient": { + "title": "2. ORIENTATION", + "type": "string", + "enum": [ + "0 None - 0 Fully oriented", + "0.5 Questionable - 0.5 Fully oriented except for slight difficulty with time relationships.", + "1 Mild - 1 Moderate difficulty with time relationships; oriented for place at examination; may have geographic disorientation elsewhere.", + "2 Moderate - 2 Severe difficulty with time relationships; usually disoriented to time, often to place.", + "3 Severe - 3 Oriented to person only." + ] + }, + "judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING", + "type": "string", + "enum": [ + "0 None - 0 Solves everyday problems, handles business & financial affairs well; judgment good in relation to past performance.", + "0.5 Questionable - 0.5 Slight impairment in solving problems, similarities, and differences.", + "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "2 Moderate - 2 Severely impaired in handling problems, similarities, and differences; social judgment usually impaired.", + "3 Severe - 3 Unable to make judgments or solve problems." + ] + }, + "commun": { + "title": "4. COMMUNITY AFFAIRS", + "type": "string", + "enum": [ + "0 None - 0 Independent function at usual level in job, shopping, volunteer and social groups.", + "0.5 Questionable - 0.5 Slight impairment in these activities.", + "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "2 Moderate - 2 No pretense of independent function outside the home; appears well enough to be taken to functions outside the family home.", + "3 Severe - 3 No pretense of independent function outside the home; appears too ill to be taken to functions outside the family home." + ] + }, + "homehobb": { + "title": "5. HOME & HOBBIES", + "type": "string", + "enum": [ + "0 None - 0 Life at home, hobbies, and intellectual interests well maintained.", + "0.5 Questionable - 0.5 Life at home, hobbies, and intellectual interests slightly impaired.", + "1 Mild - 1 Mild but definite impairment of function at home; more difficult chores abandoned; more complicated hobbies and interests abandoned.", + "2 Moderate - 2 Only simple chores preserved; very restricted interests, poorly maintained.", + "3 Severe - 3 No significant function in the home." + ] + }, + "perscare": { + "title": "6. PERSONAL CARE", + "type": "string", + "enum": [ + "0 None / Questionable - 0Fully capable of self-care (=0).", + "1 Mild - 1 Needs prompting.", + "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "3 Severe - 3 Requires much help with personal care; frequent incontinence." + ] + }, + "cdrsum": { + "title": "7. CDR SUM OF BOXES", + "description": "Link to Global CDR calculation tool: https://www.alz.washington.edu/cdrnacc.html", + "type": "string" + }, + "cdrglob": { + "title": "8. GLOBAL CDR", + "description": "Link to Global CDR calculation tool", + "type": "string", + "enum": [ + "0 0.0 = No Impairment", + "0.5 0.5 = Questionable impariment", + "1 1.0 = Mild impairment", + "2 2.0 = Moderate impairment", + "3 3.0 = Severe impairment" + ] + } + }, + "required": [ + "memory", + "orient", + "judgment", + "commun", + "homehobb", + "perscare", + "cdrsum", + "cdrglob" + ] + }, + "sec2": { + "title": "SECTION 2: NACC FTLD BEHAVIOR & LANGUAGE DOMAINS", + "type": "object", + "properties": { + "comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2", + "type": "string", + "enum": [ + "0 None - 0 Socially appropriate behavior.", + "0.5 Questionable - 0.5 Questionable changes in comportment, empathy, appropriateness of actions.", + "1 Mild - 1 Mild but definite changes in behavior.", + "2 Moderate - 2 Moderate behavioral changes, affecting interpersonal relationships and interactions in a significant manner.", + "3 Severe - 3 Severe behavioral changes, making interpersonal interactions all unidirectional." + ] + }, + "cdrlang": { + "title": "10. LANGUAGE 3", + "type": "string", + "enum": [ + "0 None - 0 No language difficulty or occasional mild tip-of-the-tongue.", + "0.5 Questionable - 0.5 Consistent mild word finding difficulties; simplification of word choice; circumlocution; decreased phrase length; and/or mild comprehension difficulties.", + "1 Mild - 1 Moderate word finding difficulty in speech; cannot name objects in environment; reduced phrase length and/or agrammatical speech; and/or reduced comprehension in conversation and reading.", + "2 Moderate - 2 Moderate to severe impairments in either speech or comprehension; has difficulty communicating thoughts; writing may be slightly more effective.", + "3 Severe - 3 Severe comprehension deficits; no intelligible speech." + ] + } + }, + "required": [ + "comport", + "cdrlang" + ] + }, + "cdrsupp": { + "title": "Supplemental CDR sum", + "description": "Only for version 2", + "type": "number" + + }, + "cdrtot": { + "title": "Standard+ Supp. CDR sum", + "description": "Only for version 2", + "type": "number" + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "sec1.memory": { + "title": "1. MEMORY" + }, + "sec1.orient": { + "title": "2. ORIENTATION" + }, + "sec1.judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "sec1.commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "sec1.homehobb": { + "title": "5. HOME & HOBBIES" + }, + "sec1.perscare": { + "title": "6. PERSONAL CARE" + }, + "sec1.cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "sec1.cdrglob": { + "title": "8. GLOBAL CDR" + }, + "sec2.comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2" + }, + "sec2.cdrlang": { + "title": "10. LANGUAGE 3" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "sec1.memory": { + "title": "1. MEMORY" + }, + "sec1.orient": { + "title": "2. ORIENTATION" + }, + "sec1.judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "sec1.commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "sec1.homehobb": { + "title": "5. HOME & HOBBIES" + }, + "sec1.perscare": { + "title": "6. PERSONAL CARE" + }, + "sec1.cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "sec1.cdrglob": { + "title": "8. GLOBAL CDR" + }, + "sec2.comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2" + }, + "sec2.cdrlang": { + "title": "10. LANGUAGE 3" + } + }, + "boost_values": { + "patient": 1.0, + "sec1.memory": 1.0, + "sec1.orient": 1.0, + "sec1.judgment": 1.0, + "sec1.commun": 1.0, + "sec1.homehobb": 1.0, + "sec1.perscare": 1.0, + "sec1.cdrsum": 1.0, + "sec1.cdrglob": 1.0, + "sec2.comport": 1.0, + "sec2.cdrlang": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b4v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b4v3.json b/src/encoded/schemas/ivp_b4v3.json new file mode 100644 index 0000000000..0fa4217c33 --- /dev/null +++ b/src/encoded/schemas/ivp_b4v3.json @@ -0,0 +1,260 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B4®: Dementia Staging Instrument plus NACC FTLD Behario & Language Domains (CDR® Plus NACC FTLD)", + "description": "INSTRUCTIONS: For information on the required online CDR training, see UDS Coding Guidebook for Initial Visit Packet, Form B4. This form is to be completed by the clinician or other trained health professional, based on co-participant report and behavioral and neurological exam of the subject. In the extremely rare instances when no co-participant is available, the clinician or other trained health professional must complete this form using all other available information and his/her best clinical judgement. Score only as decline from previous level due to cognitive loss, not impairment due to other factors, such as physical disability. For further information, see UDS Coding Guidebook for Initial Visit Packet, Form B4.Link to NACC Coding Guidebook", + "comment": "Schema for submitting UDS ivp_B4 form information. ", + "id": "/profiles/ivp_b4v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "sec1", + "sec2" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "sec1": { + "title": "SECTION 1: CDR® Dementia Staging Instrument1", + + "type": "object", + "properties": { + "memory": { + "title": "1. MEMORY", + "type": "string", + "enum": [ + "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "0.5 Questionable - 0.5 Consistent slight forgetfulness; partial recollection of events; \"benign\" forgetfulness.", + "1 Mild - 1 Moderate memory loss, more marked for recent events; defect interferes with everyday activities.", + "2 Moderate - 2 Severe memory loss; only highly learned material retained; new material rapidly lost.", + "3 Severe - 3 Severe memory loss; only fragments remain." + ] + }, + "orient": { + "title": "2. ORIENTATION", + "type": "string", + "enum": [ + "0 None - 0 Fully oriented", + "0.5 Questionable - 0.5 Fully oriented except for slight difficulty with time relationships.", + "1 Mild - 1 Moderate difficulty with time relationships; oriented for place at examination; may have geographic disorientation elsewhere.", + "2 Moderate - 2 Severe difficulty with time relationships; usually disoriented to time, often to place.", + "3 Severe - 3 Oriented to person only." + ] + }, + "judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING", + "type": "string", + "enum": [ + "0 None - 0 Solves everyday problems, handles business & financial affairs well; judgment good in relation to past performance.", + "0.5 Questionable - 0.5 Slight impairment in solving problems, similarities, and differences.", + "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "2 Moderate - 2 Severely impaired in handling problems, similarities, and differences; social judgment usually impaired.", + "3 Severe - 3 Unable to make judgments or solve problems." + ] + }, + "commun": { + "title": "4. COMMUNITY AFFAIRS", + "type": "string", + "enum": [ + "0 None - 0 Independent function at usual level in job, shopping, volunteer and social groups.", + "0.5 Questionable - 0.5 Slight impairment in these activities.", + "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "2 Moderate - 2 No pretense of independent function outside the home; appears well enough to be taken to functions outside the family home.", + "3 Severe - 3 No pretense of independent function outside the home; appears too ill to be taken to functions outside the family home." + ] + }, + "homehobb": { + "title": "5. HOME & HOBBIES", + "type": "string", + "enum": [ + "0 None - 0 Life at home, hobbies, and intellectual interests well maintained.", + "0.5 Questionable - 0.5 Life at home, hobbies, and intellectual interests slightly impaired.", + "1 Mild - 1 Mild but definite impairment of function at home; more difficult chores abandoned; more complicated hobbies and interests abandoned.", + "2 Moderate - 2 Only simple chores preserved; very restricted interests, poorly maintained.", + "3 Severe - 3 No significant function in the home." + ] + }, + "perscare": { + "title": "6. PERSONAL CARE", + "type": "string", + "enum": [ + "0 None / Questionable - 0Fully capable of self-care (=0).", + "1 Mild - 1 Needs prompting.", + "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "3 Severe - 3 Requires much help with personal care; frequent incontinence." + ] + }, + "cdrsum": { + "title": "7. CDR SUM OF BOXES", + "description": "Link to Global CDR calculation tool: https://www.alz.washington.edu/cdrnacc.html", + "type": "string" + }, + "cdrglob": { + "title": "8. GLOBAL CDR", + "description": "Link to Global CDR calculation tool", + "type": "string", + "enum": [ + "0 0.0 = No Impairment", + "0.5 0.5 = Questionable impariment", + "1 1.0 = Mild impairment", + "2 2.0 = Moderate impairment", + "3 3.0 = Severe impairment" + ] + } + }, + "required": [ + "memory", + "orient", + "judgment", + "commun", + "homehobb", + "perscare", + "cdrsum", + "cdrglob" + ] + }, + "sec2": { + "title": "SECTION 2: NACC FTLD BEHAVIOR & LANGUAGE DOMAINS", + "type": "object", + "properties": { + "comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2", + "type": "string", + "enum": [ + "0 None - 0 Socially appropriate behavior.", + "0.5 Questionable - 0.5 Questionable changes in comportment, empathy, appropriateness of actions.", + "1 Mild - 1 Mild but definite changes in behavior.", + "2 Moderate - 2 Moderate behavioral changes, affecting interpersonal relationships and interactions in a significant manner.", + "3 Severe - 3 Severe behavioral changes, making interpersonal interactions all unidirectional." + ] + }, + "cdrlang": { + "title": "10. LANGUAGE 3", + "type": "string", + "enum": [ + "0 None - 0 No language difficulty or occasional mild tip-of-the-tongue.", + "0.5 Questionable - 0.5 Consistent mild word finding difficulties; simplification of word choice; circumlocution; decreased phrase length; and/or mild comprehension difficulties.", + "1 Mild - 1 Moderate word finding difficulty in speech; cannot name objects in environment; reduced phrase length and/or agrammatical speech; and/or reduced comprehension in conversation and reading.", + "2 Moderate - 2 Moderate to severe impairments in either speech or comprehension; has difficulty communicating thoughts; writing may be slightly more effective.", + "3 Severe - 3 Severe comprehension deficits; no intelligible speech." + ] + } + }, + "required": [ + "comport", + "cdrlang" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "sec1.memory": { + "title": "1. MEMORY" + }, + "sec1.orient": { + "title": "2. ORIENTATION" + }, + "sec1.judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "sec1.commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "sec1.homehobb": { + "title": "5. HOME & HOBBIES" + }, + "sec1.perscare": { + "title": "6. PERSONAL CARE" + }, + "sec1.cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "sec1.cdrglob": { + "title": "8. GLOBAL CDR" + }, + "sec2.comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2" + }, + "sec2.cdrlang": { + "title": "10. LANGUAGE 3" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "sec1.memory": { + "title": "1. MEMORY" + }, + "sec1.orient": { + "title": "2. ORIENTATION" + }, + "sec1.judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "sec1.commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "sec1.homehobb": { + "title": "5. HOME & HOBBIES" + }, + "sec1.perscare": { + "title": "6. PERSONAL CARE" + }, + "sec1.cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "sec1.cdrglob": { + "title": "8. GLOBAL CDR" + }, + "sec2.comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY 2" + }, + "sec2.cdrlang": { + "title": "10. LANGUAGE 3" + } + }, + "boost_values": { + "patient": 1.0, + "sec1.memory": 1.0, + "sec1.orient": 1.0, + "sec1.judgment": 1.0, + "sec1.commun": 1.0, + "sec1.homehobb": 1.0, + "sec1.perscare": 1.0, + "sec1.cdrsum": 1.0, + "sec1.cdrglob": 1.0, + "sec2.comport": 1.0, + "sec2.cdrlang": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b4v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b5.json b/src/encoded/schemas/ivp_b5.json new file mode 100644 index 0000000000..bef679c0fc --- /dev/null +++ b/src/encoded/schemas/ivp_b5.json @@ -0,0 +1,330 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B5: BEHAVIORAL ASSESSMENT Neuropsychiatric Inventory Questionnaire (NPI-Q[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional based on co-participant interview, as described by the training video. (This is not to be completed by the subject as a paper-and-pencil self-report.) For information on NPI-Q Interviewer Certification, see UDS Coding Guidebook for Initial Visit Packet, Form B5. Link to NACC Coding Guidebook", + "comment": " ", + "id": "/profiles/uds_ivp_b5.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "npiqinf", + "del", + "hall", + "agit", + "depd", + "anx", + "elat", + "apa", + "disn", + "irr", + "mot", + "nite", + "app" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:", + + "comment": "", + "type": "string", + "enum": [ + "1 Spouse", + "2 Child", + "3 Other (SPECIFY)" + ] + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "delsev": { + "title": "2b. If Delusions, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity ", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? ", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + } + }, + + "boost_values": { + "patient": 1.0, + "npiqinf": 1.0, + "npiqinfx": 1.0, + "del": 1.0, + "delsev": 1.0, + "hall": 1.0, + "hallsev": 1.0, + "agit": 1.0, + "agitsev": 1.0, + "depd": 1.0, + "depdsev": 1.0, + "anx": 1.0, + "anxsev": 1.0, + "elat": 1.0, + "elatsev": 1.0, + "apa": 1.0, + "apasev": 1.0, + "disn": 1.0, + "disnsev": 1.0, + "irr": 1.0, + "irrsev": 1.0, + "mot": 1.0, + "motsev": 1.0, + "nite": 1.0, + "nitesev": 1.0, + "app": 1.0, + "appsev": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b5.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b5v1.json b/src/encoded/schemas/ivp_b5v1.json new file mode 100644 index 0000000000..0eb49ec941 --- /dev/null +++ b/src/encoded/schemas/ivp_b5v1.json @@ -0,0 +1,499 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B5: BEHAVIORAL ASSESSMENT Neuropsychiatric Inventory Questionnaire (NPI-Q[1])", + "description": "NOTE: This form is to be completed by the clinician per informant interview, as described by the training video.Examiner’sinitials:__ __ __\n(This is not to be completed by the subject as a paper-and-pencil self-report.) For information regarding\nNPI-Q Interviewer Certification, see UDS Coding Guidebook page 34. Check only one box for each category of response.\nPlease ask the following questions based upon changes. Indicate “yes” only if the symptom has been present in the past month; otherwise, indicate “no”.\nFor each item marked “yes”, rate the SEVERITY of the symptom (how it affects the patient):1 = Mild (noticeable, but not a significant change)\n2 = Moderate (significant, but not a dramatic change)\n3 = Severe (very marked or prominent; a dramatic change)\n", + "id": "/profiles/ivp_b5v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "npiqinf", + "del", + "hall", + "agit", + "depd", + "anx", + "elat", + "apa", + "disn", + "irr", + "mot", + "nite", + "app" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:", + "description": "", + "comment": "", + "type": "string", + "enum": [ + "1 Spouse", + "2 Child", + "3 Other (SPECIFY)" + ] + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "delsev": { + "title": "2b. If Delusions, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity ", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? ", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + } + }, + "facets": { + + "status": { + "title": "Status" + }, + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "delsev": { + "title": "2b. If Delusions, rate severity" + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity " + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? " + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?" + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "delsev": { + "title": "2b. If Delusions, rate severity" + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity " + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? " + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?" + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + + }, + "boost_values": { + "patient": 1.0, + "npiqinf": 1.0, + "npiqinfx": 1.0, + "del": 1.0, + "delsev": 1.0, + "hall": 1.0, + "hallsev": 1.0, + "agit": 1.0, + "agitsev": 1.0, + "depd": 1.0, + "depdsev": 1.0, + "anx": 1.0, + "anxsev": 1.0, + "elat": 1.0, + "elatsev": 1.0, + "apa": 1.0, + "apasev": 1.0, + "disn": 1.0, + "disnsev": 1.0, + "irr": 1.0, + "irrsev": 1.0, + "mot": 1.0, + "motsev": 1.0, + "nite": 1.0, + "nitesev": 1.0, + "app": 1.0, + "appsev": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b5v1.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b5v2.json b/src/encoded/schemas/ivp_b5v2.json new file mode 100644 index 0000000000..08b87f3cc6 --- /dev/null +++ b/src/encoded/schemas/ivp_b5v2.json @@ -0,0 +1,499 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B5: BEHAVIORAL ASSESSMENT Neuropsychiatric Inventory Questionnaire (NPI-Q[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional based on co-participant interview, as described by the training video. (This is not to be completed by the subject as a paper-and-pencil self-report.) For information on NPI-Q Interviewer Certification, see UDS Coding Guidebook for Initial Visit Packet, Form B5. Link to NACC Coding Guidebook", + "id": "/profiles/uds_ivp_b5v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "npiqinf", + "del", + "hall", + "agit", + "depd", + "anx", + "elat", + "apa", + "disn", + "irr", + "mot", + "nite", + "app" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:", + + "comment": "", + "type": "string", + "enum": [ + "1 Spouse", + "2 Child", + "3 Other (SPECIFY)" + ] + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "delsev": { + "title": "2b. If Delusions, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity ", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? ", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + } + }, + "facets": { + + "status": { + "title": "Status" + }, + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "delsev": { + "title": "2b. If Delusions, rate severity" + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity " + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? " + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?" + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "delsev": { + "title": "2b. If Delusions, rate severity" + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity " + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? " + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?" + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + + }, + "boost_values": { + "patient": 1.0, + "npiqinf": 1.0, + "npiqinfx": 1.0, + "del": 1.0, + "delsev": 1.0, + "hall": 1.0, + "hallsev": 1.0, + "agit": 1.0, + "agitsev": 1.0, + "depd": 1.0, + "depdsev": 1.0, + "anx": 1.0, + "anxsev": 1.0, + "elat": 1.0, + "elatsev": 1.0, + "apa": 1.0, + "apasev": 1.0, + "disn": 1.0, + "disnsev": 1.0, + "irr": 1.0, + "irrsev": 1.0, + "mot": 1.0, + "motsev": 1.0, + "nite": 1.0, + "nitesev": 1.0, + "app": 1.0, + "appsev": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b5v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b5v3.json b/src/encoded/schemas/ivp_b5v3.json new file mode 100644 index 0000000000..55f9e558f2 --- /dev/null +++ b/src/encoded/schemas/ivp_b5v3.json @@ -0,0 +1,500 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B5: BEHAVIORAL ASSESSMENT Neuropsychiatric Inventory Questionnaire (NPI-Q[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional based on co-participant interview, as described by the training video. (This is not to be completed by the subject as a paper-and-pencil self-report.) For information on NPI-Q Interviewer Certification, see UDS Coding Guidebook for Initial Visit Packet, Form B5. Link to NACC Coding Guidebook", + "comment": " ", + "id": "/profiles/uds_ivp_b5v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "npiqinf", + "del", + "hall", + "agit", + "depd", + "anx", + "elat", + "apa", + "disn", + "irr", + "mot", + "nite", + "app" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:", + + "comment": "", + "type": "string", + "enum": [ + "1 Spouse", + "2 Child", + "3 Other (SPECIFY)" + ] + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "delsev": { + "title": "2b. If Delusions, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity ", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? ", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + } + }, + "facets": { + + "status": { + "title": "Status" + }, + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "delsev": { + "title": "2b. If Delusions, rate severity" + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity " + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? " + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?" + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "delsev": { + "title": "2b. If Delusions, rate severity" + }, + "hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "depdsev": { + "title": "5b. If Depression/dysphoria, rate severity " + }, + "anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy? " + }, + "elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house,handling buttons, wrapping string, or doing other things repeatedly?" + }, + "motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + + }, + "boost_values": { + "patient": 1.0, + "npiqinf": 1.0, + "npiqinfx": 1.0, + "del": 1.0, + "delsev": 1.0, + "hall": 1.0, + "hallsev": 1.0, + "agit": 1.0, + "agitsev": 1.0, + "depd": 1.0, + "depdsev": 1.0, + "anx": 1.0, + "anxsev": 1.0, + "elat": 1.0, + "elatsev": 1.0, + "apa": 1.0, + "apasev": 1.0, + "disn": 1.0, + "disnsev": 1.0, + "irr": 1.0, + "irrsev": 1.0, + "mot": 1.0, + "motsev": 1.0, + "nite": 1.0, + "nitesev": 1.0, + "app": 1.0, + "appsev": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b5v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b6.json b/src/encoded/schemas/ivp_b6.json new file mode 100644 index 0000000000..e236c98f7a --- /dev/null +++ b/src/encoded/schemas/ivp_b6.json @@ -0,0 +1,209 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B6: BEHAVIORAL ASSESSMENT - GERIATRIC DEPRESSION SCALE (GDS[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional, based on subject response. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B6. Link to NACC Coding Guidebook. \nCheck only one answer per question.", + "id": "/profiles/uds_ivp_b6.json", + + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "nogds": { + "title": "Check this box and enter \"88\" below for the Total GDS Score if and only if the subject: 1.) does not attempt the GDS, or 2.) answers fewer than 12 questions.", + "description": "Instruct the subject: \"In the next part of this interview, I will ask you questions about your feelings.\nSome of the questions I will ask you may not apply, and some may make you feel uncomfortable.For each question, please answer \"yes\" or \"no,\" depending on how you have been feeling in past week, including today.\"", + "type": "boolean" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?", + + "comment": "", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "empty": { + "title": "3. Do you feel that your life is empty?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "bored": { + "title": "4. Do you often get bored?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "happy": { + "title": "7. Do you feel happy most of the time?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "helpless": { + "title": "8. Do you often feel helpless?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "energy": { + "title": "13. Do you feel full of energy?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "better": { + "title": "15. Do you think that most people are better off than you are?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score", + "description": "((max score=15; did not complete = 88))", + "type": "string", + "pattern": "^([0-9]|[1][0-5]|88)$" + } + }, + + "boost_values": { + "patient": 1.0, + "satis": 1.0, + "dropact": 1.0, + "empty": 1.0, + "bored": 1.0, + "spirits": 1.0, + "afraid": 1.0, + "happy": 1.0, + "helpless": 1.0, + "stayhome": 1.0, + "memprob": 1.0, + "wondrful": 1.0, + "wrthless": 1.0, + "energy": 1.0, + "hopeless": 1.0, + "better": 1.0, + "gds": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b6.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b6v1.json b/src/encoded/schemas/ivp_b6v1.json new file mode 100644 index 0000000000..136bf066dc --- /dev/null +++ b/src/encoded/schemas/ivp_b6v1.json @@ -0,0 +1,316 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B6: BEHAVIORAL ASSESSMENT - GERIATRIC DEPRESSION SCALE (GDS[1])", +"description": "NOTE: This form is to be completed by the clinician, based on subject response.\nFor additional clarification and examples, see UDS Coding Guidebook page 35.\nCircle only one number per question.\n", + "$schema": "http://json-schema.org/draft-04/schema#", + "id": "/profiles/ivp_b6v1.json", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "nogds": { + "title": "Check this box and enter \"88\" below for the Total GDS Score only if the subject: 1) does not attempt the GDS, or 2) answers fewer than 12 questions.", + "description": "Instruct the subject: \"In the next part of this interview, I will ask you questions about your feelings.\nSome of the questions I will ask you may not apply, and some may make you feel uncomfortable.For each question, please answer \"yes\" or \"no,\" depending on how you have been feeling in past week, including today.\"", + "type": "boolean" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?", + "description": "", + "comment": "", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "empty": { + "title": "3. Do you feel that your life is empty?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "bored": { + "title": "4. Do you often get bored?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "happy": { + "title": "7. Do you feel happy most of the time?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "helpless": { + "title": "8. Do you often feel helpless?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "energy": { + "title": "13. Do you feel full of energy?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "better": { + "title": "15. Do you think that most people are better off than you are?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score", + "description": "((max score=15; did not complete = 88))", + "type": "string", + "pattern": "^([0-9]|[1][0-5]|88)$" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "empty": { + "title": "3. Do you feel that your life is empty?" + }, + "bored": { + "title": "4. Do you often get bored?" + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "happy": { + "title": "7. Do you feel happy most of the time?" + }, + "helpless": { + "title": "8. Do you often feel helpless?" + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "energy": { + "title": "13. Do you feel full of energy?" + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless" + }, + "better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "empty": { + "title": "3. Do you feel that your life is empty?" + }, + "bored": { + "title": "4. Do you often get bored?" + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "happy": { + "title": "7. Do you feel happy most of the time?" + }, + "helpless": { + "title": "8. Do you often feel helpless?" + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "energy": { + "title": "13. Do you feel full of energy?" + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless" + }, + "better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score" + } + + }, + "boost_values": { + "patient": 1.0, + "satis": 1.0, + "dropact": 1.0, + "empty": 1.0, + "bored": 1.0, + "spirits": 1.0, + "afraid": 1.0, + "happy": 1.0, + "helpless": 1.0, + "stayhome": 1.0, + "memprob": 1.0, + "wondrful": 1.0, + "wrthless": 1.0, + "energy": 1.0, + "hopeless": 1.0, + "better": 1.0, + "gds": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b6v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b6v2.json b/src/encoded/schemas/ivp_b6v2.json new file mode 100644 index 0000000000..879d00fe05 --- /dev/null +++ b/src/encoded/schemas/ivp_b6v2.json @@ -0,0 +1,316 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B6: BEHAVIORAL ASSESSMENT - GERIATRIC DEPRESSION SCALE (GDS[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional, based on subject response. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B6. Link to NACC Coding Guidebook. \nCheck only one answer per question.", + "$schema": "http://json-schema.org/draft-04/schema#", + "id": "/profiles/uds_ivp_b6v2.json", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "nogds": { + "title": "Check this box and enter \"88\" below for the Total GDS Score if and only if the subject: 1.) does not attempt the GDS, or 2.) answers fewer than 12 questions.", + "description": "Instruct the subject: \"In the next part of this interview, I will ask you questions about your feelings.\nSome of the questions I will ask you may not apply, and some may make you feel uncomfortable.For each question, please answer \"yes\" or \"no,\" depending on how you have been feeling in past week, including today.\"", + "type": "boolean" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?", + + "comment": "", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "empty": { + "title": "3. Do you feel that your life is empty?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "bored": { + "title": "4. Do you often get bored?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "happy": { + "title": "7. Do you feel happy most of the time?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "helpless": { + "title": "8. Do you often feel helpless?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "energy": { + "title": "13. Do you feel full of energy?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "better": { + "title": "15. Do you think that most people are better off than you are?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score", + "description": "((max score=15; did not complete = 88))", + "type": "string", + "pattern": "^([0-9]|[1][0-5]|88)$" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "empty": { + "title": "3. Do you feel that your life is empty?" + }, + "bored": { + "title": "4. Do you often get bored?" + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "happy": { + "title": "7. Do you feel happy most of the time?" + }, + "helpless": { + "title": "8. Do you often feel helpless?" + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "energy": { + "title": "13. Do you feel full of energy?" + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless" + }, + "better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "empty": { + "title": "3. Do you feel that your life is empty?" + }, + "bored": { + "title": "4. Do you often get bored?" + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "happy": { + "title": "7. Do you feel happy most of the time?" + }, + "helpless": { + "title": "8. Do you often feel helpless?" + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "energy": { + "title": "13. Do you feel full of energy?" + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless" + }, + "better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score" + } + + }, + "boost_values": { + "patient": 1.0, + "satis": 1.0, + "dropact": 1.0, + "empty": 1.0, + "bored": 1.0, + "spirits": 1.0, + "afraid": 1.0, + "happy": 1.0, + "helpless": 1.0, + "stayhome": 1.0, + "memprob": 1.0, + "wondrful": 1.0, + "wrthless": 1.0, + "energy": 1.0, + "hopeless": 1.0, + "better": 1.0, + "gds": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b6v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b6v3.json b/src/encoded/schemas/ivp_b6v3.json new file mode 100644 index 0000000000..35e3b250df --- /dev/null +++ b/src/encoded/schemas/ivp_b6v3.json @@ -0,0 +1,316 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B6: BEHAVIORAL ASSESSMENT - GERIATRIC DEPRESSION SCALE (GDS[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional, based on subject response. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B6. Link to NACC Coding Guidebook. \nCheck only one answer per question.", + "id": "/profiles/uds_ivp_b6v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "nogds": { + "title": "Check this box and enter \"88\" below for the Total GDS Score if and only if the subject: 1.) does not attempt the GDS, or 2.) answers fewer than 12 questions.", + "description": "Instruct the subject: \"In the next part of this interview, I will ask you questions about your feelings.\nSome of the questions I will ask you may not apply, and some may make you feel uncomfortable.For each question, please answer \"yes\" or \"no,\" depending on how you have been feeling in past week, including today.\"", + "type": "boolean" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?", + + "comment": "", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "empty": { + "title": "3. Do you feel that your life is empty?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "bored": { + "title": "4. Do you often get bored?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "happy": { + "title": "7. Do you feel happy most of the time?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "helpless": { + "title": "8. Do you often feel helpless?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "energy": { + "title": "13. Do you feel full of energy?", + "type": "string", + "enum": [ + "0 Yes", + "1 No", + "9 Did not answer" + ] + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "better": { + "title": "15. Do you think that most people are better off than you are?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Did not answer" + ] + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score", + "description": "((max score=15; did not complete = 88))", + "type": "string", + "pattern": "^([0-9]|[1][0-5]|88)$" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "empty": { + "title": "3. Do you feel that your life is empty?" + }, + "bored": { + "title": "4. Do you often get bored?" + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "happy": { + "title": "7. Do you feel happy most of the time?" + }, + "helpless": { + "title": "8. Do you often feel helpless?" + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "energy": { + "title": "13. Do you feel full of energy?" + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless" + }, + "better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "satis": { + "title": "1. Are you basically satisfied with your life?" + }, + "dropact": { + "title": "2. Have you dropped many of your activities and interests?" + }, + "empty": { + "title": "3. Do you feel that your life is empty?" + }, + "bored": { + "title": "4. Do you often get bored?" + }, + "spirits": { + "title": "5. Are you in good spirits most of the time?" + }, + "afraid": { + "title": "6. Are you afraid that something bad is going to happen to you?" + }, + "happy": { + "title": "7. Do you feel happy most of the time?" + }, + "helpless": { + "title": "8. Do you often feel helpless?" + }, + "stayhome": { + "title": "9. Do you prefer to stay at home, rather than going out and doing new things?" + }, + "memprob": { + "title": "10. Do you feel you have more problems with memory than most?" + }, + "wondrful": { + "title": "11. Do you think it is wonderful to be alive now?" + }, + "wrthless": { + "title": "12. Do you feel pretty worthless the way you are now?" + }, + "energy": { + "title": "13. Do you feel full of energy?" + }, + "hopeless": { + "title": "14. Do you feel that your situation is hopeless" + }, + "better": { + "title": "15. Do you think that most people are better off than you are?" + }, + "gds": { + "title": "16. Sum all checked answers for a Total GDS Score" + } + + }, + "boost_values": { + "patient": 1.0, + "satis": 1.0, + "dropact": 1.0, + "empty": 1.0, + "bored": 1.0, + "spirits": 1.0, + "afraid": 1.0, + "happy": 1.0, + "helpless": 1.0, + "stayhome": 1.0, + "memprob": 1.0, + "wondrful": 1.0, + "wrthless": 1.0, + "energy": 1.0, + "hopeless": 1.0, + "better": 1.0, + "gds": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b6v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b7.json b/src/encoded/schemas/ivp_b7.json new file mode 100644 index 0000000000..e52899d865 --- /dev/null +++ b/src/encoded/schemas/ivp_b7.json @@ -0,0 +1,195 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "description": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "comment": " ", + "id": "/profiles/uds_ivp_b7.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "form_description" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "form_description": { + "title": "In the past four weeks, did the subject have difficulty or need help with:", + "type": "object", + "properties": { + "bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "taxes": { + "title": "2. Assembling tax records, business affairs, or other papers", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "mealprep": { + "title": "6. Preparing a balanced meal", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "events": { + "title": "7. Keeping track of current events", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + } + }, + "required": [ + "bills", + "taxes", + "shopping", + "games", + "stove", + "mealprep", + "events", + "payattn", + "remdates", + "travel" + ] + } + }, + + "boost_values": { + "patient": 1.0, + "form_description.bills": 1.0, + "form_description.taxes": 1.0, + "form_description.shopping": 1.0, + "form_description.games": 1.0, + "form_description.stove": 1.0, + "form_description.mealprep": 1.0, + "form_description.events": 1.0, + "form_description.payattn": 1.0, + "form_description.remdates": 1.0, + "form_description.travel": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b7.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b7v1.json b/src/encoded/schemas/ivp_b7v1.json new file mode 100644 index 0000000000..533c95487b --- /dev/null +++ b/src/encoded/schemas/ivp_b7v1.json @@ -0,0 +1,265 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "description": "NOTE: This form is to be completed by the clinician, based on information provided by informant.For additionalExaminer’sinitials:__ __ __\nclarification and examples, see UDS Coding Guidebook page 36. Indicate the level of performance for each\nactivity by circling the one appropriate response.\n", + "id": "/profiles/ivp_b7v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "form_description" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "form_description": { + "title": "In the past four weeks, did the subject have difficulty or need help with:", + "type": "object", + "properties": { + "bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "taxes": { + "title": "2. Assembling tax records, business affairs, or other papers", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "mealprep": { + "title": "6. Preparing a balanced meal", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "events": { + "title": "7. Keeping track of current events", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + } + }, + "required": [ + "bills", + "taxes", + "shopping", + "games", + "stove", + "mealprep", + "events", + "payattn", + "remdates", + "travel" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "form_description.bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "form_description.taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "form_description.shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "form_description.games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "form_description.stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "form_description.mealprep": { + "title": "6. Preparing a balanced meal" + }, + "form_description.events": { + "title": "7. Keeping track of current events" + }, + "form_description.payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "form_description.remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "form_description.travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "form_description.bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "form_description.taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "form_description.shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "form_description.games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "form_description.stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "form_description.mealprep": { + "title": "6. Preparing a balanced meal" + }, + "form_description.events": { + "title": "7. Keeping track of current events" + }, + "form_description.payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "form_description.remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "form_description.travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "boost_values": { + "patient": 1.0, + "form_description.bills": 1.0, + "form_description.taxes": 1.0, + "form_description.shopping": 1.0, + "form_description.games": 1.0, + "form_description.stove": 1.0, + "form_description.mealprep": 1.0, + "form_description.events": 1.0, + "form_description.payattn": 1.0, + "form_description.remdates": 1.0, + "form_description.travel": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b7v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b7v2.json b/src/encoded/schemas/ivp_b7v2.json new file mode 100644 index 0000000000..b310a30caa --- /dev/null +++ b/src/encoded/schemas/ivp_b7v2.json @@ -0,0 +1,266 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "description": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "comment": " ", + "id": "/profiles/uds_ivp_b7v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "form_description" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "form_description": { + "title": "In the past four weeks, did the subject have difficulty or need help with:", + "type": "object", + "properties": { + "bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "taxes": { + "title": "2. Assembling tax records, business affairs, or other papers", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "mealprep": { + "title": "6. Preparing a balanced meal", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "events": { + "title": "7. Keeping track of current events", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + } + }, + "required": [ + "bills", + "taxes", + "shopping", + "games", + "stove", + "mealprep", + "events", + "payattn", + "remdates", + "travel" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "form_description.bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "form_description.taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "form_description.shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "form_description.games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "form_description.stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "form_description.mealprep": { + "title": "6. Preparing a balanced meal" + }, + "form_description.events": { + "title": "7. Keeping track of current events" + }, + "form_description.payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "form_description.remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "form_description.travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "form_description.bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "form_description.taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "form_description.shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "form_description.games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "form_description.stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "form_description.mealprep": { + "title": "6. Preparing a balanced meal" + }, + "form_description.events": { + "title": "7. Keeping track of current events" + }, + "form_description.payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "form_description.remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "form_description.travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "boost_values": { + "patient": 1.0, + "form_description.bills": 1.0, + "form_description.taxes": 1.0, + "form_description.shopping": 1.0, + "form_description.games": 1.0, + "form_description.stove": 1.0, + "form_description.mealprep": 1.0, + "form_description.events": 1.0, + "form_description.payattn": 1.0, + "form_description.remdates": 1.0, + "form_description.travel": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b7v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b7v3.json b/src/encoded/schemas/ivp_b7v3.json new file mode 100644 index 0000000000..4f24354704 --- /dev/null +++ b/src/encoded/schemas/ivp_b7v3.json @@ -0,0 +1,266 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "description": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "comment": " ", + "id": "/profiles/uds_ivp_b7v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "form_description" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "form_description": { + "title": "In the past four weeks, did the subject have difficulty or need help with:", + "type": "object", + "properties": { + "bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "taxes": { + "title": "2. Assembling tax records, business affairs, or other papers", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "mealprep": { + "title": "6. Preparing a balanced meal", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "events": { + "title": "7. Keeping track of current events", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + } + }, + "required": [ + "bills", + "taxes", + "shopping", + "games", + "stove", + "mealprep", + "events", + "payattn", + "remdates", + "travel" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "form_description.bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "form_description.taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "form_description.shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "form_description.games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "form_description.stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "form_description.mealprep": { + "title": "6. Preparing a balanced meal" + }, + "form_description.events": { + "title": "7. Keeping track of current events" + }, + "form_description.payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "form_description.remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "form_description.travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "form_description.bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "form_description.taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "form_description.shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "form_description.games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "form_description.stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "form_description.mealprep": { + "title": "6. Preparing a balanced meal" + }, + "form_description.events": { + "title": "7. Keeping track of current events" + }, + "form_description.payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "form_description.remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "form_description.travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "boost_values": { + "patient": 1.0, + "form_description.bills": 1.0, + "form_description.taxes": 1.0, + "form_description.shopping": 1.0, + "form_description.games": 1.0, + "form_description.stove": 1.0, + "form_description.mealprep": 1.0, + "form_description.events": 1.0, + "form_description.payattn": 1.0, + "form_description.remdates": 1.0, + "form_description.travel": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b7v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b8.json b/src/encoded/schemas/ivp_b8.json new file mode 100644 index 0000000000..78db9a9489 --- /dev/null +++ b/src/encoded/schemas/ivp_b8.json @@ -0,0 +1,504 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B8: NEUROLOGICAL EXAMINATION FINDINGS", + "description": "INSTRUCTIONS: This form must be completed by a clinician with experience in assessing the neurological signs listed below and in attributing the observed findings to a particular syndrome. Please use your best clinical judgment in assigning the syndrome. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B8. Link to NACC Coding Guidebook", + "comment": " ", + "id": "/profiles/uds_ivp_B8.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "normexam": { + "title": "1. Were there abnormal neurological exam findings?", + "type": "string", + "enum": [ + "0 No abnormal findings (END FORM HERE)", + "1 Yes - abnormal findings were consistent with syndromes listed in Questions 2-8", + "2 Yes - abnormal findings were consistent with age-associated changes or irrelevant to dementing disorders (e.g., Bell's palsy) (SKIP TO QUESTION 8)" + ] + }, + "note_b8": { + "title": "INSTRUCTIONS FOR QUESTIONS 2-8", + "description": "Please complete the appropriate sections below, using your best clinical judgment in selecting findings that indicate the likely syndrome(s) that is/are present.\nCHECK ALL OF THE GROUPS OF FINDINGS/SYNDROMES THAT WERE PRESENT:", + "type": "object", + "properties": { + "parksign": { + "title": "2. Parkinsonian signs", + "description": "Findings not marked Yes or Not assessed will default to No in the NACC database.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 3)", + "1 Yes" + ] + }, + "parksign_left": { + "title": "Parkinsonian signs - LEFT. Findings not marked Yes or Not assessed will defalut to No in the NACC database.", + "type": "object", + "properties": { + "resttrl": { + "title": "2a1. Resting tremor - arm", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "slowingl": { + "title": "2b1. Slowing of fine motor movements", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "rigidl": { + "title": "2c1. Rigidity - arm", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "parksign-right": { + "title": "Parkinsonian signs - RIGHT", + "type": "object", + "properties": { + "resttrr": { + "title": "2a2. Resting tremor - arm", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "slowingr": { + "title": "2b2. Slowing of fine motor movements", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "rigidr": { + "title": "2c2. Rigidity - arm", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "parksign_cont": { + "title": "Parkinsonian signs - continued", + "type": "object", + "properties": { + "brady": { + "title": "2d. Bradykinesia", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "parkgait": { + "title": "2e. Parkinsonian gait disorder", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "postinst": { + "title": "2f. Postural instability", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "cvdsigns": { + "title": "3. Neurological signs considered by examiner to be most likely consistent with cerebrovascular disease.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 4)", + "1 Yes" + ] + }, + "neurosign_present": { + "title": "Findings consistent with stroke/cerebrovascular diseas", + "description": "Findings not marked Yes or Not assessed will default to No in the NACC database.", + "type": "object", + "properties": { + "cortdef": { + "title": "3a. Cortical cognitive deficit (e.g., aphasia, apraxia, neglect)", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "sivdfind": { + "title": "3b. Focal or other neurological findings consistent with SIVD(subcortical ischemic vascular dementia)", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "neurosign_left": { + "title": "Neuroplogical signs - LEFT", + "description": "Findings not marked Yes or Not assessed will default to No in the NACC database.", + "type": "object", + "properties": { + "cvdmotl": { + "title": "3c1. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc.)", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "cortvisl": { + "title": "3d1. Cortical visual field loss", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "somatl": { + "title": "3e1. Somatosensory loss", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "neurosign_right": { + "title": "Neurological signs - RIGHT", + "description": "Findings not marked Yes or Not assessed will default to No in the NACC database.", + "type": "object", + "properties": { + "cvdmotr": { + "title": "3c2. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc.)", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "cortvisr": { + "title": "3d2. Cortical visual field loss", + + "comment": "", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "somatr": { + "title": "3e2. Somatosensory loss", + + "comment": "", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "postcort": { + "title": "4. Higher cortical visual problem suggesting posterior cortical atrophy (e.g., prosopagnosia, simultagnosia, Balint's syndrome) or apraxia of gaze", + "description": "Posterior cortical atrophy or apraxia of gaze", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "pspcbs": { + "title": "5. Findings suggestive of progressive supranuclear palsy (PSP), corticobasal syndrome, or other related disorders", + "description": "PSP, corticobasal syndrome or other;", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 6)", + "1 Yes" + ] + }, + "find_present": { + "title": "Findings - Findings not marked Yes or Not assessed will default to No in the NACC database.", + + "type": "object", + "properties": { + "eyepsp": { + "title": "5a. Eye movement changes consistent with PSP", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "dyspsp": { + "title": "5b. Dysarthria consistent with PSP", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "axialpsp": { + "title": "5c. Axial rigidity consistent with PSP", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "gaitpsp": { + "title": "5d. Gait disorder consistent with PSP", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "apraxsp": { + "title": "5e. Apraxia of speech", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "find_left": { + "title": "Findings - LEFT Findings not marked Yes or Not assessed will default to No in the NACC database.", + "type": "object", + "properties": { + "apraxl": { + "title": "5f1. Apraxia consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "cortsenl": { + "title": "5g1. Cortical sensory deficits consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "ataxl": { + "title": "5h1. Ataxia consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "alienlml": { + "title": "5i1. Alien limb consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "dystonl": { + "title": "5j1. Dystonia consistent with CBS, PSP, or related disorder", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "myocllt": { + "title": "5k1. Myoclonus consistent with CBS", + + "comment": "", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "find_right": { + "title": "Findings - RIGHT Findings not marked Yes or Not assessed will default to No in the NACC database.", + + "type": "object", + "properties": { + "apraxr": { + "title": "5f2. Apraxia consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "cortsenr": { + "title": "5g2. Cortical sensory deficits consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "ataxr": { + "title": "5h2. Ataxia consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "alienlmr": { + "title": "5i2. Alien limb consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "dystonr": { + "title": "5j2. Dystonia consistent with CBS, PSP, or related disorder", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "myoclrt": { + "title": "5k2. Myoclonus consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "alsfind": { + "title": "6. Findings suggesting ALS (e.g., muscle wasting, fasciculations, upper motor neuron and/or lower motor neuron signs)", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "gaitnph": { + "title": "7. Normal-pressure hydrocephalus: gait apraxia", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "othneur": { + "title": "8. Other findings (e.g., cerebellar ataxia, chorea, myoclonus)", + "description": "(NOTE: For this question, do not specify symptoms that have already been checked above)", + "type": "string", + "enum": [ + "0 No", + "1 Yes (SPECIFY):" + ] + }, + "othneurx": { + "title": "8a. Other findings from neurological exam, please specify:", + "type": "string" + } + } + } + }, + + "boost_values": { + "patient": 1.0, + "normexam": 1.0, + "note_b8.parksign": 1.0, + "note_b8.parksign_left.resttrl": 1.0, + "note_b8.parksign_left.slowingl": 1.0, + "note_b8.parksign_left.rigidl": 1.0, + "note_b8.parksign-right.resttrr": 1.0, + "note_b8.parksign-right.slowingr": 1.0, + "note_b8.parksign-right.rigidr": 1.0, + "note_b8.parksign_cont.brady": 1.0, + "note_b8.parksign_cont.parkgait": 1.0, + "note_b8.parksign_cont.postinst": 1.0, + "note_b8.cvdsigns": 1.0, + "note_b8.neurosign_present.cortdef": 1.0, + "note_b8.neurosign_present.sivdfind": 1.0, + "note_b8.neurosign_left.cvdmotl": 1.0, + "note_b8.neurosign_left.cortvisl": 1.0, + "note_b8.neurosign_left.somatl": 1.0, + "note_b8.neurosign_right.cvdmotr": 1.0, + "note_b8.neurosign_right.cortvisr": 1.0, + "note_b8.neurosign_right.somatr": 1.0, + "note_b8.postcort": 1.0, + "note_b8.pspcbs": 1.0, + "note_b8.find_present.eyepsp": 1.0, + "note_b8.find_present.dyspsp": 1.0, + "note_b8.find_present.axialpsp": 1.0, + "note_b8.find_present.gaitpsp": 1.0, + "note_b8.find_present.apraxsp": 1.0, + "note_b8.find_left.apraxl": 1.0, + "note_b8.find_left.cortsenl": 1.0, + "note_b8.find_left.ataxl": 1.0, + "note_b8.find_left.alienlml": 1.0, + "note_b8.find_left.dystonl": 1.0, + "note_b8.find_left.myocllt": 1.0, + "note_b8.find_right.apraxr": 1.0, + "note_b8.find_right.cortsenr": 1.0, + "note_b8.find_right.ataxr": 1.0, + "note_b8.find_right.alienlmr": 1.0, + "note_b8.find_right.dystonr": 1.0, + "note_b8.find_right.myoclrt": 1.0, + "note_b8.alsfind": 1.0, + "note_b8.gaitnph": 1.0, + "note_b8.othneur": 1.0, + "note_b8.othneurx": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b8.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b8v1.json b/src/encoded/schemas/ivp_b8v1.json new file mode 100644 index 0000000000..e0e04c981d --- /dev/null +++ b/src/encoded/schemas/ivp_b8v1.json @@ -0,0 +1,121 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B8: NEUROLOGICAL EXAMINATION FINDINGS", + "description": "INSTRUCTIONS: This form must be completed by a clinician with experience in assessing the neurological signs listed below and in attributing the observed findings to a particular syndrome. Please use your best clinical judgment in assigning the syndrome. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B8. Link to NACC Coding Guidebook", + "id": "/profiles/ivp_b8v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?" + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?" + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?" + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?" + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?" + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?" + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?" + } + + }, + "boost_values": { + "patient": 1.0, + "normal": 1.0, + "focldef": 1.0, + "gaitdis": 1.0, + "eyemove": 1.0 + + }, + "changelog": "/profiles/changelogs/ivp_b8v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b8v2.json b/src/encoded/schemas/ivp_b8v2.json new file mode 100644 index 0000000000..b1cd055636 --- /dev/null +++ b/src/encoded/schemas/ivp_b8v2.json @@ -0,0 +1,122 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B8: NEUROLOGICAL EXAMINATION FINDINGS", + "description": "INSTRUCTIONS: This form must be completed by a clinician with experience in assessing the neurological signs listed below and in attributing the observed findings to a particular syndrome. Please use your best clinical judgment in assigning the syndrome. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B8. Link to NACC Coding Guidebook", + "comment": " ", + "id": "/profiles/ivp_b8v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?" + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?" + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?" + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?" + } + + }, + "columns": { + "status": { + "title": "Status" + }, + "normal": { + "title": "1. Are all findings unremarkable (normal or normal for age)?" + }, + "focldef": { + "title": "2. Are focal deficits present indicative of central nervous system disorder?" + }, + "gaitdis": { + "title": "3. Is gait disorder present indicative of central nervous system disorder?" + }, + "eyemove": { + "title": "4. Are there eye movement abnormalities present indicative of central nervous system disorder?" + } + + }, + "boost_values": { + "patient": 1.0, + "normal": 1.0, + "focldef": 1.0, + "gaitdis": 1.0, + "eyemove": 1.0 + + }, + "changelog": "/profiles/changelogs/ivp_b8v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b8v3.json b/src/encoded/schemas/ivp_b8v3.json new file mode 100644 index 0000000000..6ef35db01e --- /dev/null +++ b/src/encoded/schemas/ivp_b8v3.json @@ -0,0 +1,771 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B8: NEUROLOGICAL EXAMINATION FINDINGS", + "description": "INSTRUCTIONS: This form must be completed by a clinician with experience in assessing the neurological signs listed below and in attributing the observed findings to a particular syndrome. Please use your best clinical judgment in assigning the syndrome. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B8. Link to NACC Coding Guidebook", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "normexam": { + "title": "1. Were there abnormal neurological exam findings?", + "type": "string", + "enum": [ + "0 No abnormal findings (END FORM HERE)", + "1 Yes - abnormal findings were consistent with syndromes listed in Questions 2-8", + "2 Yes - abnormal findings were consistent with age-associated changes or irrelevant to dementing disorders (e.g., Bell's palsy) (SKIP TO QUESTION 8)" + ] + }, + "note_b8": { + "title": "INSTRUCTIONS FOR QUESTIONS 2-8", + "description": "Please complete the appropriate sections below, using your best clinical judgment in selecting findings that indicate the likely syndrome(s) that is/are present.\nCHECK ALL OF THE GROUPS OF FINDINGS/SYNDROMES THAT WERE PRESENT:", + "type": "object", + "properties": { + "parksign": { + "title": "2. Parkinsonian signs", + "description": "Findings not marked Yes or Not assessed will default to No in the NACC database.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 3)", + "1 Yes" + ] + }, + "parksign_left": { + "title": "Parkinsonian signs - LEFT. Findings not marked Yes or Not assessed will defalut to No in the NACC database.", + "type": "object", + "properties": { + "resttrl": { + "title": "2a1. Resting tremor - arm", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "slowingl": { + "title": "2b1. Slowing of fine motor movements", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "rigidl": { + "title": "2c1. Rigidity - arm", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "parksign-right": { + "title": "Parkinsonian signs - RIGHT", + "type": "object", + "properties": { + "resttrr": { + "title": "2a2. Resting tremor - arm", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "slowingr": { + "title": "2b2. Slowing of fine motor movements", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "rigidr": { + "title": "2c2. Rigidity - arm", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "parksign_cont": { + "title": "Parkinsonian signs - continued", + "type": "object", + "properties": { + "brady": { + "title": "2d. Bradykinesia", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "parkgait": { + "title": "2e. Parkinsonian gait disorder", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "postinst": { + "title": "2f. Postural instability", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "cvdsigns": { + "title": "3. Neurological signs considered by examiner to be most likely consistent with cerebrovascular disease.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 4)", + "1 Yes" + ] + }, + "neurosign_present": { + "title": "Findings consistent with stroke/cerebrovascular diseas", + "description": "Findings not marked Yes or Not assessed will default to No in the NACC database.", + "type": "object", + "properties": { + "cortdef": { + "title": "3a. Cortical cognitive deficit (e.g., aphasia, apraxia, neglect)", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "sivdfind": { + "title": "3b. Focal or other neurological findings consistent with SIVD(subcortical ischemic vascular dementia)", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "neurosign_left": { + "title": "Neuroplogical signs - LEFT", + "description": "Findings not marked Yes or Not assessed will default to No in the NACC database.", + "type": "object", + "properties": { + "cvdmotl": { + "title": "3c1. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc.)", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "cortvisl": { + "title": "3d1. Cortical visual field loss", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "somatl": { + "title": "3e1. Somatosensory loss", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "neurosign_right": { + "title": "Neurological signs - RIGHT", + "description": "Findings not marked Yes or Not assessed will default to No in the NACC database.", + "type": "object", + "properties": { + "cvdmotr": { + "title": "3c2. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc.)", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "cortvisr": { + "title": "3d2. Cortical visual field loss", + + "comment": "", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "somatr": { + "title": "3e2. Somatosensory loss", + + "comment": "", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "postcort": { + "title": "4. Higher cortical visual problem suggesting posterior cortical atrophy (e.g., prosopagnosia, simultagnosia, Balint's syndrome) or apraxia of gaze", + "description": "Posterior cortical atrophy or apraxia of gaze", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "pspcbs": { + "title": "5. Findings suggestive of progressive supranuclear palsy (PSP), corticobasal syndrome, or other related disorders", + "description": "PSP, corticobasal syndrome or other;", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 6)", + "1 Yes" + ] + }, + "find_present": { + "title": "Findings - Findings not marked Yes or Not assessed will default to No in the NACC database.", + + "type": "object", + "properties": { + "eyepsp": { + "title": "5a. Eye movement changes consistent with PSP", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "dyspsp": { + "title": "5b. Dysarthria consistent with PSP", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "axialpsp": { + "title": "5c. Axial rigidity consistent with PSP", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "gaitpsp": { + "title": "5d. Gait disorder consistent with PSP", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "apraxsp": { + "title": "5e. Apraxia of speech", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "find_left": { + "title": "Findings - LEFT Findings not marked Yes or Not assessed will default to No in the NACC database.", + "type": "object", + "properties": { + "apraxl": { + "title": "5f1. Apraxia consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "cortsenl": { + "title": "5g1. Cortical sensory deficits consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "ataxl": { + "title": "5h1. Ataxia consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "alienlml": { + "title": "5i1. Alien limb consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "dystonl": { + "title": "5j1. Dystonia consistent with CBS, PSP, or related disorder", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "myocllt": { + "title": "5k1. Myoclonus consistent with CBS", + + "comment": "", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "find_right": { + "title": "Findings - RIGHT Findings not marked Yes or Not assessed will default to No in the NACC database.", + + "type": "object", + "properties": { + "apraxr": { + "title": "5f2. Apraxia consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "cortsenr": { + "title": "5g2. Cortical sensory deficits consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "ataxr": { + "title": "5h2. Ataxia consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "alienlmr": { + "title": "5i2. Alien limb consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "dystonr": { + "title": "5j2. Dystonia consistent with CBS, PSP, or related disorder", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + }, + "myoclrt": { + "title": "5k2. Myoclonus consistent with CBS", + "type": "string", + "enum": [ + "1 Yes", + "8 Not assessed" + ] + } + } + }, + "alsfind": { + "title": "6. Findings suggesting ALS (e.g., muscle wasting, fasciculations, upper motor neuron and/or lower motor neuron signs)", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "gaitnph": { + "title": "7. Normal-pressure hydrocephalus: gait apraxia", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "othneur": { + "title": "8. Other findings (e.g., cerebellar ataxia, chorea, myoclonus)", + "description": "(NOTE: For this question, do not specify symptoms that have already been checked above)", + "type": "string", + "enum": [ + "0 No", + "1 Yes (SPECIFY):" + ] + }, + "othneurx": { + "title": "8a. Other findings from neurological exam, please specify:", + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "normexam": { + "title": "1. Were there abnormal neurological exam findings?" + }, + "note_b8.parksign": { + "title": "2. Parkinsonian signs" + }, + "note_b8.parksign_left.resttrl": { + "title": "2a1. Resting tremor - arm" + }, + "note_b8.parksign_left.slowingl": { + "title": "2b1. Slowing of fine motor movements" + }, + "note_b8.parksign_left.rigidl": { + "title": "2c1. Rigidity - arm" + }, + "note_b8.parksign-right.resttrr": { + "title": "2a2. Resting tremor - arm" + }, + "note_b8.parksign-right.slowingr": { + "title": "2b2. Slowing of fine motor movements" + }, + "note_b8.parksign-right.rigidr": { + "title": "2c2. Rigidity - arm" + }, + "note_b8.parksign_cont.brady": { + "title": "2d. Bradykinesia" + }, + "note_b8.parksign_cont.parkgait": { + "title": "2e. Parkinsonian gait disorder" + }, + "note_b8.parksign_cont.postinst": { + "title": "2f. Postural instability" + }, + "note_b8.cvdsigns": { + "title": "3. Neurological signs considered by examiner to be most likely consistent with cerebrovascular disease." + }, + "note_b8.neurosign_present.cortdef": { + "title": "3a. Cortical cognitive deficit (e.g., aphasia, apraxia, neglect)" + }, + "note_b8.neurosign_present.sivdfind": { + "title": "3b. Focal or other neurological findings consistent with SIVD(subcortical ischemic vascular dementia)" + }, + "note_b8.neurosign_left.cvdmotl": { + "title": "3c1. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc.)" + }, + "note_b8.neurosign_left.cortvisl": { + "title": "3d1. Cortical visual field loss" + }, + "note_b8.neurosign_left.somatl": { + "title": "3e1. Somatosensory loss" + }, + "note_b8.neurosign_right.cvdmotr": { + "title": "3c2. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc.)" + }, + "note_b8.neurosign_right.cortvisr": { + "title": "3d2. Cortical visual field loss" + }, + "note_b8.neurosign_right.somatr": { + "title": "3e2. Somatosensory loss" + }, + "note_b8.postcort": { + "title": "4. Higher cortical visual problem suggesting posterior cortical atrophy (e.g., prosopagnosia, simultagnosia, Balint's syndrome) or apraxia of gaze" + }, + "note_b8.pspcbs": { + "title": "5. Findings suggestive of progressive supranuclear palsy (PSP), corticobasal syndrome, or other related disorders" + }, + "note_b8.find_present.eyepsp": { + "title": "5a. Eye movement changes consistent with PSP" + }, + "note_b8.find_present.dyspsp": { + "title": "5b. Dysarthria consistent with PSP" + }, + "note_b8.find_present.axialpsp": { + "title": "5c. Axial rigidity consistent with PSP" + }, + "note_b8.find_present.gaitpsp": { + "title": "5d. Gait disorder consistent with PSP" + }, + "note_b8.find_present.apraxsp": { + "title": "5e. Apraxia of speech" + }, + "note_b8.find_left.apraxl": { + "title": "5f1. Apraxia consistent with CBS" + }, + "note_b8.find_left.cortsenl": { + "title": "5g1. Cortical sensory deficits consistent with CBS" + }, + "note_b8.find_left.ataxl": { + "title": "5h1. Ataxia consistent with CBS" + }, + "note_b8.find_left.alienlml": { + "title": "5i1. Alien limb consistent with CBS" + }, + "note_b8.find_left.dystonl": { + "title": "5j1. Dystonia consistent with CBS, PSP, or related disorder" + }, + "note_b8.find_left.myocllt": { + "title": "5k1. Myoclonus consistent with CBS" + }, + "note_b8.find_right.apraxr": { + "title": "5f2. Apraxia consistent with CBS" + }, + "note_b8.find_right.cortsenr": { + "title": "5g2. Cortical sensory deficits consistent with CBS" + }, + "note_b8.find_right.ataxr": { + "title": "5h2. Ataxia consistent with CBS" + }, + "note_b8.find_right.alienlmr": { + "title": "5i2. Alien limb consistent with CBS" + }, + "note_b8.find_right.dystonr": { + "title": "5j2. Dystonia consistent with CBS, PSP, or related disorder" + }, + "note_b8.find_right.myoclrt": { + "title": "5k2. Myoclonus consistent with CBS" + }, + "note_b8.alsfind": { + "title": "6. Findings suggesting ALS (e.g., muscle wasting, fasciculations, upper motor neuron and/or lower motor neuron signs)" + }, + "note_b8.gaitnph": { + "title": "7. Normal-pressure hydrocephalus: gait apraxia" + }, + "note_b8.othneur": { + "title": "8. Other findings (e.g., cerebellar ataxia, chorea, myoclonus)" + }, + "note_b8.othneurx": { + "title": "8a. Other findings from neurological exam, please specify:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "normexam": { + "title": "1. Were there abnormal neurological exam findings?" + }, + "note_b8.parksign": { + "title": "2. Parkinsonian signs" + }, + "note_b8.parksign_left.resttrl": { + "title": "2a1. Resting tremor - arm" + }, + "note_b8.parksign_left.slowingl": { + "title": "2b1. Slowing of fine motor movements" + }, + "note_b8.parksign_left.rigidl": { + "title": "2c1. Rigidity - arm" + }, + "note_b8.parksign-right.resttrr": { + "title": "2a2. Resting tremor - arm" + }, + "note_b8.parksign-right.slowingr": { + "title": "2b2. Slowing of fine motor movements" + }, + "note_b8.parksign-right.rigidr": { + "title": "2c2. Rigidity - arm" + }, + "note_b8.parksign_cont.brady": { + "title": "2d. Bradykinesia" + }, + "note_b8.parksign_cont.parkgait": { + "title": "2e. Parkinsonian gait disorder" + }, + "note_b8.parksign_cont.postinst": { + "title": "2f. Postural instability" + }, + "note_b8.cvdsigns": { + "title": "3. Neurological signs considered by examiner to be most likely consistent with cerebrovascular disease." + }, + "note_b8.neurosign_present.cortdef": { + "title": "3a. Cortical cognitive deficit (e.g., aphasia, apraxia, neglect)" + }, + "note_b8.neurosign_present.sivdfind": { + "title": "3b. Focal or other neurological findings consistent with SIVD(subcortical ischemic vascular dementia)" + }, + "note_b8.neurosign_left.cvdmotl": { + "title": "3c1. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc.)" + }, + "note_b8.neurosign_left.cortvisl": { + "title": "3d1. Cortical visual field loss" + }, + "note_b8.neurosign_left.somatl": { + "title": "3e1. Somatosensory loss" + }, + "note_b8.neurosign_right.cvdmotr": { + "title": "3c2. Motor (may include weakness of combinations of face, arm, and leg; reflex changes; etc.)" + }, + "note_b8.neurosign_right.cortvisr": { + "title": "3d2. Cortical visual field loss" + }, + "note_b8.neurosign_right.somatr": { + "title": "3e2. Somatosensory loss" + }, + "note_b8.postcort": { + "title": "4. Higher cortical visual problem suggesting posterior cortical atrophy (e.g., prosopagnosia, simultagnosia, Balint's syndrome) or apraxia of gaze" + }, + "note_b8.pspcbs": { + "title": "5. Findings suggestive of progressive supranuclear palsy (PSP), corticobasal syndrome, or other related disorders" + }, + "note_b8.find_present.eyepsp": { + "title": "5a. Eye movement changes consistent with PSP" + }, + "note_b8.find_present.dyspsp": { + "title": "5b. Dysarthria consistent with PSP" + }, + "note_b8.find_present.axialpsp": { + "title": "5c. Axial rigidity consistent with PSP" + }, + "note_b8.find_present.gaitpsp": { + "title": "5d. Gait disorder consistent with PSP" + }, + "note_b8.find_present.apraxsp": { + "title": "5e. Apraxia of speech" + }, + "note_b8.find_left.apraxl": { + "title": "5f1. Apraxia consistent with CBS" + }, + "note_b8.find_left.cortsenl": { + "title": "5g1. Cortical sensory deficits consistent with CBS" + }, + "note_b8.find_left.ataxl": { + "title": "5h1. Ataxia consistent with CBS" + }, + "note_b8.find_left.alienlml": { + "title": "5i1. Alien limb consistent with CBS" + }, + "note_b8.find_left.dystonl": { + "title": "5j1. Dystonia consistent with CBS, PSP, or related disorder" + }, + "note_b8.find_left.myocllt": { + "title": "5k1. Myoclonus consistent with CBS" + }, + "note_b8.find_right.apraxr": { + "title": "5f2. Apraxia consistent with CBS" + }, + "note_b8.find_right.cortsenr": { + "title": "5g2. Cortical sensory deficits consistent with CBS" + }, + "note_b8.find_right.ataxr": { + "title": "5h2. Ataxia consistent with CBS" + }, + "note_b8.find_right.alienlmr": { + "title": "5i2. Alien limb consistent with CBS" + }, + "note_b8.find_right.dystonr": { + "title": "5j2. Dystonia consistent with CBS, PSP, or related disorder" + }, + "note_b8.find_right.myoclrt": { + "title": "5k2. Myoclonus consistent with CBS" + }, + "note_b8.alsfind": { + "title": "6. Findings suggesting ALS (e.g., muscle wasting, fasciculations, upper motor neuron and/or lower motor neuron signs)" + }, + "note_b8.gaitnph": { + "title": "7. Normal-pressure hydrocephalus: gait apraxia" + }, + "note_b8.othneur": { + "title": "8. Other findings (e.g., cerebellar ataxia, chorea, myoclonus)" + }, + "note_b8.othneurx": { + "title": "8a. Other findings from neurological exam, please specify:" + } + }, + "boost_values": { + "patient": 1.0, + "normexam": 1.0, + "note_b8.parksign": 1.0, + "note_b8.parksign_left.resttrl": 1.0, + "note_b8.parksign_left.slowingl": 1.0, + "note_b8.parksign_left.rigidl": 1.0, + "note_b8.parksign-right.resttrr": 1.0, + "note_b8.parksign-right.slowingr": 1.0, + "note_b8.parksign-right.rigidr": 1.0, + "note_b8.parksign_cont.brady": 1.0, + "note_b8.parksign_cont.parkgait": 1.0, + "note_b8.parksign_cont.postinst": 1.0, + "note_b8.cvdsigns": 1.0, + "note_b8.neurosign_present.cortdef": 1.0, + "note_b8.neurosign_present.sivdfind": 1.0, + "note_b8.neurosign_left.cvdmotl": 1.0, + "note_b8.neurosign_left.cortvisl": 1.0, + "note_b8.neurosign_left.somatl": 1.0, + "note_b8.neurosign_right.cvdmotr": 1.0, + "note_b8.neurosign_right.cortvisr": 1.0, + "note_b8.neurosign_right.somatr": 1.0, + "note_b8.postcort": 1.0, + "note_b8.pspcbs": 1.0, + "note_b8.find_present.eyepsp": 1.0, + "note_b8.find_present.dyspsp": 1.0, + "note_b8.find_present.axialpsp": 1.0, + "note_b8.find_present.gaitpsp": 1.0, + "note_b8.find_present.apraxsp": 1.0, + "note_b8.find_left.apraxl": 1.0, + "note_b8.find_left.cortsenl": 1.0, + "note_b8.find_left.ataxl": 1.0, + "note_b8.find_left.alienlml": 1.0, + "note_b8.find_left.dystonl": 1.0, + "note_b8.find_left.myocllt": 1.0, + "note_b8.find_right.apraxr": 1.0, + "note_b8.find_right.cortsenr": 1.0, + "note_b8.find_right.ataxr": 1.0, + "note_b8.find_right.alienlmr": 1.0, + "note_b8.find_right.dystonr": 1.0, + "note_b8.find_right.myoclrt": 1.0, + "note_b8.alsfind": 1.0, + "note_b8.gaitnph": 1.0, + "note_b8.othneur": 1.0, + "note_b8.othneurx": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b8v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b9.json b/src/encoded/schemas/ivp_b9.json new file mode 100644 index 0000000000..238fb1c267 --- /dev/null +++ b/src/encoded/schemas/ivp_b9.json @@ -0,0 +1,661 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B9: CLINICIAN JUDGMENT OF SYMPTOMS", + "description": "INSTRUCTIONS: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B9. Link to NACC Coding Guidebook . Check only one box per question.", + "id": "/profiles/uds_ivp_b9.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "decl_in_memo": { + "title": "Declines in memory reported by subject and co-participant", + "type": "object", + "properties": { + "decsub": { + "title": "1. Does the subject report a decline in memory (relative to previously attained abilities)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Could not be assessed/subject is too impaired" + ] + }, + "decin": { + "title": "2. Does the co-participant report a decline in the subject's memory (relative to previously attained abilities)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 There is no co-participant" + ] + } + + }, + "required": [ + "decsub", + "decin" + ] + }, + "cogn_symp": { + "title": "Cognitive symptoms", + "type": "object", + "properties": { + "decclcog": { + "title": "3. Based on the clinician's judgment, is the subject currently experiencing meaningful impairment in cognition?", + + "comment": "", + "type": "string", + "enum": [ + "0 No (If no, SKIP TO QUESTION 8)", + "1 Yes" + ] + } + } + }, + "meaningful_impair": { + "title": "4. Indicate whether the subject currently is meaningfully impaired, relative to previously attained abilities, in the following cognitive domains, or has fluctuating cognition:", + "type": "object", + "properties": { + "cogmem": { + "title": "4a. Memory: For example, does s/he forget conversations and/or dates, repeat questions and/or statements, misplace things more than usual, forget names of people s/he knows well?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogori": { + "title": "4b. Orientation: For example, does s/he have trouble knowing the day, month, and year, or not recognize familiar locations, or get lost in familiar locations?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogjudg": { + "title": "4c. Executive function - judgment, planning, problem-solving: Does s/he have trouble handling money (e.g., tips), paying bills, preparing meals, shopping, using appliances, handling medications, driving?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "coglang": { + "title": "4d. Language: Does s/he have hesitant speech, have trouble finding words, use inappropriate words without self-correction?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogvis": { + "title": "4e. Visuospatial function: Does s/he have difficulty interpreting visual stimuli and finding his/her way around?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogattn": { + "title": "4f. Attention, concentration: Does the subject have a short attention span or limited ability to concentrate? Is s/he easily distracted?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogfluc": { + "title": "4g. Fluctuating cognition: Does the subject exhibit pronounced variation in attention and alertness, noticeably over hours or days - for example, long lapses or periods of staring into space, or times when his/her ideas have a disorganized flow?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogflago": { + "title": "This is a good place to add piping to display age when fluctuating cognition began from all visits.\n4g1. If yes, at what age did the fluctuating cognition begin? (The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + }, + "cogothr": { + "title": "4h. Other cognitive symptoms, specify:", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogothrx": { + "title": "4h1. If yes, there are other cognitive symptoms, specify:", + "type": "string" + }, + "cogfpred": { + "title": "5. Indicate the predominant symptom that was first recognized as a decline in the subject's cognition:", + "type": "string", + "enum": [ + "1 Memory", + "2 Orientation", + "3 Executive function - judgment, planning,problem-solving", + "4 Language", + "5 Visuospatial function", + "6 Attention/concentration", + "7 Fluctuating cognition", + "8 Other (SPECIFY):", + "99 Unknown" + ] + }, + "cogfprex": { + "title": "5a. If there are other predominant symptoms, specify:", + "type": "string" + }, + "cogmode": { + "title": "6. Mode of onset of cognitive symptoms:", + "type": "string", + "enum": [ + "1 Gradual", + "2 Subacute", + "3 Abrupt", + "4 Other (SPECIFY):", + "88 N/A", + "99 Unknown" + ] + }, + "cogmodex": { + "title": "6a. If there are other mode of onset of cognitive symptoms, specify:", + "type": "string" + }, + "decage": { + "title": "7. Based on the clinician's assessment, at what age did the cognitive decline begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + } + } + }, + "beha_symp": { + "title": "Behavioral symptoms", + "type": "object", + "properties": { + "decclbe": { + "title": "8. Based on the clinician's judgment, is the subject currently experiencing any kind of behavioral symptoms?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 13)", + "1 Yes" + ] + } + } + }, + "chge_in_behv": { + "title": "9. Indicate whether the subject currently manifests meaningful change in behavior in any of the following ways:", + "type": "object", + "properties": { + "beapathy": { + "title": "9a. Apathy, withdrawal: Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "bedep": { + "title": "9b. Depressed mood: Has the subject seemed depressed for more than two weeks at a time, e.g., shown loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "psych": { + "title": "9c. Psychosis", + + "type": "object", + "properties": { + "bevhall": { + "title": "9c1. Visual hallucinations", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "bevwell": { + "title": "9c1a. If Yes, are the hallucinations well formed and detailed?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "bevhago": { + "title": "9c1b. If well formed, clear-cut visual hallucinations, at what age did these visual hallucinations begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110; 888 = NA, not well-formed) )", + "type": "number", + "minimum": 15, + "maximum": 110 + }, + "beahall": { + "title": "9c2. Auditory hallucinations", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "bedel": { + "title": "9c3. Abnormal, false, or delusional beliefs", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "bedisin": { + "title": "9d. Disinhibition: Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beirrit": { + "title": "9e. Irritability: Does the subject overreact, e.g., by shouting at family members or others?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beagit": { + "title": "9f. Agitation: Does the subject have trouble sitting still? Does s/he shout, hit, and/or kick?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beperch": { + "title": "9g. Personality change: Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness (without delusions), unusual dress, or dietary changes? Does the subject fail to take others' feelings into account?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "berem": { + "title": "9h. REM sleep behavior disorder: While sleeping, does the subject appear to act out his/her dreams (e.g., punch or flail their arms, shout, or scream)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beremago": { + "title": "9h1. If yes, at what age did the REM sleep behavior disorder begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + }, + "beanx": { + "title": "9i. Anxiety: For example, does s/he show signs of nervousness (e.g., frequent sighing, anxious facial expressions, or hand-wringing) and/or excessive worrying?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beothr": { + "title": "9j. Other behavioral symptoms, specify:", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beothrx": { + "title": "9j1. If there are other behavioral symptoms, specify:", + "type": "string" + }, + "befpred": { + "title": "10. Indicate the predominant symptom that was first recognized as a decline in the subject's behavior:", + "type": "string", + "enum": [ + "1 Apathy/withdrawal", + "2 Depressed mood", + "3 Psychosis", + "4 Disinhibition", + "5 Irritability", + "6 Agitation", + "7 Personality change", + "8 REM sleep behavior disorder", + "9 Anxiety", + "10 Other (SPECIFY):", + "99 Unknown" + ] + }, + "befpredx": { + "title": "10a. If there are other predominant symptoms, specify:", + "type": "string" + }, + "bemode": { + "title": "11. Mode of onset of behavioral symptoms:", + "type": "string", + "enum": [ + "1 Gradual", + "2 Subacute", + "3 Abrupt", + "4 Other (SPECIFY):", + "88 N/A", + "99 Unknown" + ] + }, + "bemodex": { + "title": "11a. If there are other mode of onset of behavioral symptoms, specify:", + "type": "string" + }, + "beage": { + "title": "12. Based on the clinician's assessment, at what age did the behavioral symptoms begin? \n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + } + } + }, + "moto_symp": { + "title": "Motor symptoms", + "type": "object", + "properties": { + "decclmot": { + "title": "13. Based on the clinician's judgment, is the subject currently experiencing any motor symptoms?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 20)", + "1 Yes" + ] + } + } + }, + "motor_func": { + "title": "14. Indicate whether the subject currently has meaningful change in motor function in any of the following areas:", + "type": "object", + "properties": { + "mogait": { + "title": "14a. Gait disorder: Has the subject's walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little to no arm-swing, or drag a foot?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "mofalls": { + "title": "14b. Falls: Does the subject fall more than usual?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "motrem": { + "title": "14c. Tremor: Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth, or tongue?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "moslow": { + "title": "14d. Slowness: Has the subject noticeably slowed down in walking, moving, or writing by hand, other than due to an injury or illness? Has his/her facial expression changed or become more \"wooden,\" or masked and unexpressive?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "mofrst": { + "title": "15. Indicate the predominant symptom that was first recognized as a decline in the subject's motor function:", + "type": "string", + "enum": [ + "1 Gait disorder", + "2 Falls", + "3 Tremor", + "4 Slowness", + "88 N/A", + "99 Unknown" + ] + }, + "momode": { + "title": "16. Mode of onset of motor symptoms:", + "type": "string", + "enum": [ + "1 Gradual", + "2 Subacute", + "3 Abrupt", + "4 Other (SPECIFY):", + "88 N/A", + "99 Unknown" + ] + }, + "momodex": { + "title": "16a. If there are other mode of onset of motor symptoms, specify:", + "type": "string" + }, + "momopark": { + "title": "17. Were changes in motor function suggestive of parkinsonism?", + "description": "(If No or Unknown, SKIP TO QUESTION 18)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "88 N/A", + "9 Unknown" + ] + }, + "parkage": { + "title": "17a. If Yes, at what age did the motor symptoms suggestive of parkinsonism begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + }, + "momoals": { + "title": "18. Were changes in motor function suggestive of amyotrophic lateral sclerosis?", + "description": "(If No or Unknown, SKIP TO QUESTION 19)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "alsage": { + "title": "18a. If Yes, at what age did the motor symptoms suggestive of ALS begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + }, + "moage": { + "title": "19. Based on the clinician's assessment, at what age did the motor changes begin?\n(The clinician must use his/her best judgment to estimate an age of onset of motor changes.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + } + } + }, + "overall": { + "title": "Overall course of decline and predominant domain", + "type": "object", + "properties": { + "course": { + "title": "20. Overall course of decline of cognitive/behavioral /motor syndrome:", + "type": "string", + "enum": [ + "1 Gradually progressive", + "2 Stepwise", + "3 Static", + "4 Fluctuating", + "5 Improved", + "8 N/A", + "9 Unknown" + ] + }, + "frstchg": { + "title": "21. Indicate the predominant domain that was first recognized as changed in the subject:", + "type": "string", + "enum": [ + "1 Cognition", + "2 Behavior", + "3 Motor function", + "8 N/A", + "9 Unknown" + ] + } + } + }, + "candidate": { + "title": "Candidate for further evaluation for Lewy body disease or frontotemporal lobar degeneration", + "type": "object", + "properties": { + "lbdeval": { + "title": "22. Is the subject a potential candidate for further evaluation for Lewy body disease?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "ftldeval": { + "title": "23. Is the subject a potential candidate for further evaluation for frontotemporal lobar degeneration?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + }, + + "boost_values": { + "patient": 1.0, + "decl_in_memo.decsub": 1.0, + "decl_in_memo.decin": 1.0, + "cogn_symp.decclcog": 1.0, + "meaningful_impair.cogmem": 1.0, + "meaningful_impair.cogori": 1.0, + "meaningful_impair.cogjudg": 1.0, + "meaningful_impair.coglang": 1.0, + "meaningful_impair.cogvis": 1.0, + "meaningful_impair.cogattn": 1.0, + "meaningful_impair.cogfluc": 1.0, + "meaningful_impair.cogflago": 1.0, + "meaningful_impair.cogothr": 1.0, + "meaningful_impair.cogothrx": 1.0, + "meaningful_impair.cogfpred": 1.0, + "meaningful_impair.cogfprex": 1.0, + "meaningful_impair.cogmode": 1.0, + "meaningful_impair.cogmodex": 1.0, + "meaningful_impair.decage": 1.0, + "beha_symp.decclbe": 1.0, + "chge_in_behv.beapathy": 1.0, + "chge_in_behv.bedep": 1.0, + "psych.bevhall": 1.0, + "psych.bevwell": 1.0, + "psych.bevhago": 1.0, + "psych.beahall": 1.0, + "psych.bedel": 1.0, + "psych.bedisin": 1.0, + "psych.beirrit": 1.0, + "psych.beagit": 1.0, + "psych.beperch": 1.0, + "psych.berem": 1.0, + "psych.beremago": 1.0, + "psych.beanx": 1.0, + "psych.beothr": 1.0, + "psych.beothrx": 1.0, + "psych.befpred": 1.0, + "psych.befpredx": 1.0, + "psych.bemode": 1.0, + "psych.bemodex": 1.0, + "psych.beage": 1.0, + "moto_symp.decclmot": 1.0, + "motor_func.mogait": 1.0, + "motor_func.mofalls": 1.0, + "motor_func.motrem": 1.0, + "motor_func.moslow": 1.0, + "motor_func.mofrst": 1.0, + "motor_func.momode": 1.0, + "motor_func.momodex": 1.0, + "motor_func.momopark": 1.0, + "motor_func.parkage": 1.0, + "motor_func.momoals": 1.0, + "motor_func.alsage": 1.0, + "motor_func.moage": 1.0, + "overall.course": 1.0, + "overall.frstchg": 1.0, + "candidate.lbdeval": 1.0, + "candidate.ftldeval": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b9.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b9v1.json b/src/encoded/schemas/ivp_b9v1.json new file mode 100644 index 0000000000..0d5dd50cfb --- /dev/null +++ b/src/encoded/schemas/ivp_b9v1.json @@ -0,0 +1,761 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet, Form B9: Clinician Judgment of Symptoms", + "description": "NOTE: This form is to be completed by the clinician. For additional clarificationADC \nand examples, see UDS Coding Guidebook for Initial Visit Packet, Form B9.\nCheck only one box per question. \n", + "id": "/profiles/ivp_b9v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + + + "memo_comp": { + "title": "MEMORY COMPLAINT/AGE OF ONSET:", + "description": "", + "type": "object", + "properties": { + "DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs?", + "description": "Skips If no, end form here.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECAGE": { + "title": "3B At what age did the decline begin (based upon the clinician’s assessment)?", + "description": "15 – 110,999 Unknown, Blank if #3A, DECCLIN = 0 (No).", + "type": "string" + } + } + }, + "cogn_symp": { + "title": "COGNITIVE SYMPTOMS:", + "type": "object", + "properties": { + "indicate_impair": { + "title": "4.Has there been a meaningful decline in the subject’s usual abilities for any\nof the following?:\n", + "type": "object", + "properties": { + "COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around).", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGOTHR": { + "title": "4F Cognitive symptoms, other", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGOTHRX": { + "title": "4F1 Cognitive symptoms, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).Blank if #3A, DECCLIN = 0 (No), or if #4G, COGOTHR ≠ 1 (Yes).", + "type": "string" + } + } + }, + "COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Memory", + "2 Judgment and problem solving", + "3 Language", + "4 Visuospatial function", + "5 Attention/concentration", + "6 Other", + "88 N/A", + "99 Unknown" + ] + }, + "COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).Blank if #3A, DECCLIN = 0 (No), or if #5, COGFRST ≠ 6 (Other).", + "type": "string" + }, + "COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No) or if #6, COGMODE ≠ 4 (Other).", + "type": "string" + } + } + }, + "beha_symp": { + "title": "BEHAVIOR SYMPTOMS:", + "description": "", + "type": "object", + "properties": { + "indicate_beha_symp": { + "title": "7.Which of the following meaningful changes in behavior have been present during the course of the illness?", + "description": "", + "type": "object", + "properties": { + "BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "psychosis": { + "title": "Psychosis", + "description": "", + "type": "object", + "properties": { + "BEVHALL": { + "title": "7C1 Visual hallucinations", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEAHALL": { + "title": "7C2 Auditory hallucinations", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions], unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEOTHR": { + "title": "7H Behavior symptoms, other", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEOTHRX": { + "title": "7H1 Behavior symptoms, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #7I, BEOTHR ≠ 1 (Yes).", + "type": "string" + } + } + }, + "BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Apathy/withdrawal", + "2 Depression", + "3 Psychosis", + "4 Disinhibition", + "5 Irritability", + "6 Agitation", + "7 Personality change", + "8 Other", + "88 NA", + "99 Unknown" + ] + }, + "BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #8, BEFRST ≠ 8 (Other).", + "type": "string" + }, + "BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #9 BEMODE ≠ 4 (Other).", + "type": "string" + } + } + }, + "motor_symp": { + "title": "MOTOR SYMPTOMS:", + "description": "", + "type": "object", + "properties": { + "indicate_motor_symp": { + "title": "10.Which of the following meaningful changes in motor function have been\npresent during the course of the illness?\n", + "type": "object", + "properties": { + "MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gait disorder", + "2 Falls", + "3 Tremor", + "4 Slowness", + "88 NA", + "99 Unknown" + ] + }, + "MOMODE": { + "title": "12 Mode of onset of motor symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #12 MOMODE ≠ 4 (Other).", + "type": "string" + } + } + }, + "overall": { + "title": "OVERALL SUMMARY OF SYMPTOMS ONSET:", + "description": "", + "type": "object", + "properties": { + "COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual progressive", + "2 Stepwise", + "3 Static", + "4 Fluctuating", + "5 Improved", + "9 Unknown" + ] + }, + "FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Cognition", + "2 Behavior", + "3 Motor function", + "9 Unknown" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "memo_comp.DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?" + }, + "memo_comp.DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?" + }, + "memo_comp.DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs, or have there been motor/movement changes relative to previously attained abilities?" + }, + "memo_comp.DECAGE": { + "title": "3B At what age did the cognitive decline begin (based upon the clinician’s assessment)?" + }, + "cogn_symp.indicate_impair.COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)" + }, + "cogn_symp.indicate_impair.COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)" + }, + "cogn_symp.indicate_impair.COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)" + }, + "cogn_symp.indicate_impair.COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around)." + }, + "cogn_symp.indicate_impair.COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)" + }, + "cogn_symp.indicate_impair.COGOTHR": { + "title": "4F Cognitive symptoms, other" + }, + "cogn_symp.indicate_impair.COGOTHRX": { + "title": "4F1 Cognitive symptoms, other – specify" + }, + "cogn_symp.COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:" + }, + "cogn_symp.COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify" + }, + "cogn_symp.COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:" + }, + "cogn_symp.COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify" + }, + "beha_symp.indicate_beha_symp.BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)" + }, + "beha_symp.indicate_beha_symp.BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": { + "title": "7C1 Visual hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": { + "title": "7C2 Auditory hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs" + }, + "beha_symp.indicate_beha_symp.BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)" + }, + "beha_symp.indicate_beha_symp.BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)" + }, + "beha_symp.indicate_beha_symp.BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)" + }, + "beha_symp.indicate_beha_symp.BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions, unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)" + }, + "beha_symp.indicate_beha_symp.BEOTHR": { + "title": "7H Behavior symptoms, other" + }, + "beha_symp.indicate_beha_symp.BEOTHRX": { + "title": "7H1 Behavior symptoms, other – specify" + }, + "beha_symp.BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:" + }, + "beha_symp.BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify" + }, + "beha_symp.BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:" + }, + "beha_symp.BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify" + }, + "motor_symp.indicate_motor_symp.MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)" + }, + "motor_symp.indicate_motor_symp.MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)" + }, + "motor_symp.indicate_motor_symp.MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)" + }, + "motor_symp.indicate_motor_symp.MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)" + }, + "motor_symp.MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:" + }, + "motor_symp.MOMODE": { + "title": "12 Mode of onset of motor symptoms:" + }, + "motor_symp.MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify" + }, + "overall.COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:" + }, + "overall.FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "memo_comp.DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?" + }, + "memo_comp.DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?" + }, + "memo_comp.DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs, or have there been motor/movement changes relative to previously attained abilities?" + }, + "memo_comp.DECAGE": { + "title": "3B At what age did the cognitive decline begin (based upon the clinician’s assessment)?" + }, + "cogn_symp.indicate_impair.COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)" + }, + "cogn_symp.indicate_impair.COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)" + }, + "cogn_symp.indicate_impair.COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)" + }, + "cogn_symp.indicate_impair.COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around)." + }, + "cogn_symp.indicate_impair.COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)" + }, + "cogn_symp.indicate_impair.COGOTHR": { + "title": "4F Cognitive symptoms, other" + }, + "cogn_symp.indicate_impair.COGOTHRX": { + "title": "4F1 Cognitive symptoms, other – specify" + }, + "cogn_symp.COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:" + }, + "cogn_symp.COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify" + }, + "cogn_symp.COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:" + }, + "cogn_symp.COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify" + }, + "beha_symp.indicate_beha_symp.BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)" + }, + "beha_symp.indicate_beha_symp.BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": { + "title": "7C1 Visual hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": { + "title": "7C2 Auditory hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs" + }, + "beha_symp.indicate_beha_symp.BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)" + }, + "beha_symp.indicate_beha_symp.BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)" + }, + "beha_symp.indicate_beha_symp.BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)" + }, + "beha_symp.indicate_beha_symp.BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions, unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)" + }, + "beha_symp.indicate_beha_symp.BEOTHR": { + "title": "7H Behavior symptoms, other" + }, + "beha_symp.indicate_beha_symp.BEOTHRX": { + "title": "7H1 Behavior symptoms, other – specify" + }, + "beha_symp.BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:" + }, + "beha_symp.BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify" + }, + "beha_symp.BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:" + }, + "beha_symp.BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify" + }, + "motor_symp.indicate_motor_symp.MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)" + }, + "motor_symp.indicate_motor_symp.MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)" + }, + "motor_symp.indicate_motor_symp.MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)" + }, + "motor_symp.indicate_motor_symp.MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)" + }, + "motor_symp.MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:" + }, + "motor_symp.MOMODE": { + "title": "12 Mode of onset of motor symptoms:" + }, + "motor_symp.MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify" + }, + "overall.COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:" + }, + "overall.FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:" + } + }, + "boost_values": { + "patient": 1.0, + "memo_comp.DECSUB": 1.0, + "memo_comp.DECIN": 1.0, + "memo_comp.DECCLIN": 1.0, + "memo_comp.DECAGE": 1.0, + "cogn_symp.indicate_impair.COGMEM": 1.0, + "cogn_symp.indicate_impair.COGJUDG": 1.0, + "cogn_symp.indicate_impair.COGLANG": 1.0, + "cogn_symp.indicate_impair.COGVIS": 1.0, + "cogn_symp.indicate_impair.COGATTN": 1.0, + "cogn_symp.indicate_impair.COGOTHR": 1.0, + "cogn_symp.indicate_impair.COGOTHRX": 1.0, + "cogn_symp.COGFRST": 1.0, + "cogn_symp.COGFRSTX": 1.0, + "cogn_symp.COGMODE": 1.0, + "cogn_symp.COGMODEX": 1.0, + "beha_symp.indicate_beha_symp.BEAPATHY": 1.0, + "beha_symp.indicate_beha_symp.BEDEP": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": 1.0, + "beha_symp.indicate_beha_symp.BEDISIN": 1.0, + "beha_symp.indicate_beha_symp.BEIRRIT": 1.0, + "beha_symp.indicate_beha_symp.BEAGIT": 1.0, + "beha_symp.indicate_beha_symp.BEPERCH": 1.0, + "beha_symp.indicate_beha_symp.BEOTHR": 1.0, + "beha_symp.indicate_beha_symp.BEOTHRX": 1.0, + "beha_symp.BEFRST": 1.0, + "beha_symp.BEFRSTX": 1.0, + "beha_symp.BEMODE": 1.0, + "beha_symp.BEMODEX": 1.0, + "motor_symp.indicate_motor_symp.MOGAIT": 1.0, + "motor_symp.indicate_motor_symp.MOFALLS": 1.0, + "motor_symp.indicate_motor_symp.MOTREM": 1.0, + "motor_symp.indicate_motor_symp.MOSLOW": 1.0, + "motor_symp.MOFRST": 1.0, + "motor_symp.MOMODE": 1.0, + "motor_symp.MOMODEX": 1.0, + "overall.COURSE": 1.0, + "overall.FRSTCHG": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b9v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b9v2.json b/src/encoded/schemas/ivp_b9v2.json new file mode 100644 index 0000000000..9cd93b9346 --- /dev/null +++ b/src/encoded/schemas/ivp_b9v2.json @@ -0,0 +1,832 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet, Form B9: Clinician Judgment of Symptoms", + "description": "NOTE: This form is to be completed by the clinician. For additional clarificationADC \nand examples, see UDS Coding Guidebook for Initial Visit Packet, Form B9.\nCheck only one box per question. \n", + "id": "/profiles/ivp_b9v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "memo_comp": { + "title": "MEMORY COMPLAINT/AGE OF ONSET:", + "description": "Relative to previously attained abilities:", + "type": "object", + "properties": { + "DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs, or have there been motor/movement changes relative to previously attained abilities?", + "description": "Skips If no, end form here.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DECAGE": { + "title": "3B At what age did the cognitive decline begin (based upon the clinician’s assessment)?", + "description": "15 – 110,999 Unknown, 888 N/A. Blank if #3A, DECCLIN = 0 (No).", + "type": "string" + } + } + }, + "cogn_symp": { + "title": "COGNITIVE SYMPTOMS:", + + "type": "object", + "properties": { + "indicate_impair": { + "title": "4. Indicate whether the subject currently is impaired meaningfully, relative to\npreviously attained abilities, in the following cognitive domains or has\nfluctuating cognition:\n", + + "type": "object", + "properties": { + "COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around).", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGFLUC": { + "title": "4F Fluctuating cognition (Does s/he have pronounced variation in attention and alertness, noticeably over hours or days? For example, long periods of staring into space or lapses, or times when his/her ideas have a disorganized flow.)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGOTHR": { + "title": "4G Cognitive symptoms, other", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "COGOTHRX": { + "title": "4G1 Cognitive symptoms, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).Blank if #3A, DECCLIN = 0 (No), or if #4G, COGOTHR ≠ 1 (Yes).", + "type": "string" + } + } + }, + "COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Memory", + "2 Judgment and problem solving", + "3 Language", + "4 Visuospatial function", + "5 Attention/concentration", + "6 Other", + "7 Fluctuating cognition", + "88 N/A", + "99 Unknown" + ] + }, + "COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).Blank if #3A, DECCLIN = 0 (No), or if #5, COGFRST ≠ 6 (Other).", + "type": "string" + }, + "COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No) or if #6, COGMODE ≠ 4 (Other).", + "type": "string" + } + } + }, + "beha_symp": { + "title": "BEHAVIOR SYMPTOMS:", + + "type": "object", + "properties": { + "indicate_beha_symp": { + "title": "7. Indicate whether the subject currently manifests the following behavioral\nsymptoms:\n", + + "type": "object", + "properties": { + "BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "psychosis": { + "title": "Psychosis", + + "type": "object", + "properties": { + "BEVHALL": { + "title": "7C1 Visual hallucinations", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEVWELL": { + "title": "7C1A If having visual hallucinations, are the hallucinations well-formed and detailed", + "description": "Blank if #3A, DECCLIN = 0 (No) or #7C1, BEVHALL ≠ 1 (YES).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEAHALL": { + "title": "7C2 Auditory hallucinations", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions], unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEREM": { + "title": "7H REM sleep behavior disorder (Does the subject appear to act out his/her dreams while sleeping (e.g., punch or flail their arms, shout or scream?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEOTHR": { + "title": "7I Behavior symptoms, other", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "BEOTHRX": { + "title": "7I1 Behavior symptoms, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #7I, BEOTHR ≠ 1 (Yes).", + "type": "string" + } + } + }, + "BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Apathy/withdrawal", + "2 Depression", + "3 Psychosis", + "4 Disinhibition", + "5 Irritability", + "6 Agitation", + "7 Personality change", + "8 Other", + "9 REM sleep behavior disorder", + "88 NA", + "99 Unknown" + ] + }, + "BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #8, BEFRST ≠ 8 (Other).", + "type": "string" + }, + "BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #9 BEMODE ≠ 4 (Other).", + "type": "string" + } + } + }, + "motor_symp": { + "title": "MOTOR SYMPTOMS:", + + "type": "object", + "properties": { + "indicate_motor_symp": { + "title": "10. Indicate whether the subject currently has the following motor symptoms:", + + "type": "object", + "properties": { + "MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gait disorder", + "2 Falls", + "3 Tremor", + "4 Slowness", + "88 NA", + "99 Unknown" + ] + }, + "MOMODE": { + "title": "12 Mode of onset of motor symptoms:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual (> 6 months)", + "2 Subacute (< 6 months)", + "3 Abrupt (within days)", + "4 Other", + "88 NA", + "99 Unknown" + ] + }, + "MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #3A, DECCLIN = 0 (No), or if #12 MOMODE ≠ 4 (Other).", + "type": "string" + }, + "MOMOPARK": { + "title": "12A If there were changes in motor function, were these suggestive of parkinsonism?", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "88 NA" + ] + } + } + }, + "overall": { + "title": "OVERALL SUMMARY OF SYMPTOMS ONSET:", + + "type": "object", + "properties": { + "COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Gradual progressive", + "2 Stepwise", + "3 Static", + "4 Fluctuating", + "5 Improved", + "9 Unknown" + ] + }, + "FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:", + "description": "Blank if #3A, DECCLIN = 0 (No).", + "type": "string", + "enum": [ + "1 Cognition", + "2 Behavior", + "3 Motor function", + "9 Unknown" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "memo_comp.DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?" + }, + "memo_comp.DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?" + }, + "memo_comp.DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs, or have there been motor/movement changes relative to previously attained abilities?" + }, + "memo_comp.DECAGE": { + "title": "3B At what age did the cognitive decline begin (based upon the clinician’s assessment)?" + }, + "cogn_symp.indicate_impair.COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)" + }, + "cogn_symp.indicate_impair.COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)" + }, + "cogn_symp.indicate_impair.COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)" + }, + "cogn_symp.indicate_impair.COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around)." + }, + "cogn_symp.indicate_impair.COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)" + }, + "cogn_symp.indicate_impair.COGFLUC": { + "title": "4F Fluctuating cognition (Does s/he have pronounced variation in attention and alertness, noticeably over hours or days? For example, long periods of staring into space or lapses, or times when his/her ideas have a disorganized flow.)" + }, + "cogn_symp.indicate_impair.COGOTHR": { + "title": "4G Cognitive symptoms, other" + }, + "cogn_symp.indicate_impair.COGOTHRX": { + "title": "4G1 Cognitive symptoms, other – specify" + }, + "cogn_symp.COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:" + }, + "cogn_symp.COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify" + }, + "cogn_symp.COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:" + }, + "cogn_symp.COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify" + }, + "beha_symp.indicate_beha_symp.BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)" + }, + "beha_symp.indicate_beha_symp.BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": { + "title": "7C1 Visual hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVWELL": { + "title": "7C1A If having visual hallucinations, are the hallucinations well-formed and detailed" + }, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": { + "title": "7C2 Auditory hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs" + }, + "beha_symp.indicate_beha_symp.BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)" + }, + "beha_symp.indicate_beha_symp.BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)" + }, + "beha_symp.indicate_beha_symp.BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)" + }, + "beha_symp.indicate_beha_symp.BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions, unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)" + }, + "beha_symp.indicate_beha_symp.BEREM": { + "title": "7H REM sleep behavior disorder (Does the subject appear to act out his/her dreams while sleeping (e.g., punch or flail their arms, shout or scream?)" + }, + "beha_symp.indicate_beha_symp.BEOTHR": { + "title": "7I Behavior symptoms, other" + }, + "beha_symp.indicate_beha_symp.BEOTHRX": { + "title": "7I1 Behavior symptoms, other – specify" + }, + "beha_symp.BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:" + }, + "beha_symp.BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify" + }, + "beha_symp.BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:" + }, + "beha_symp.BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify" + }, + "motor_symp.indicate_motor_symp.MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)" + }, + "motor_symp.indicate_motor_symp.MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)" + }, + "motor_symp.indicate_motor_symp.MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)" + }, + "motor_symp.indicate_motor_symp.MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)" + }, + "motor_symp.MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:" + }, + "motor_symp.MOMODE": { + "title": "12 Mode of onset of motor symptoms:" + }, + "motor_symp.MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify" + }, + "motor_symp.MOMOPARK": { + "title": "12A If there were changes in motor function, were these suggestive of parkinsonism?" + }, + "overall.COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:" + }, + "overall.FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "memo_comp.DECSUB": { + "title": "1 Does the subject report a decline in memory relative to previously attained abilities?" + }, + "memo_comp.DECIN": { + "title": "2 Does the informant report a decline in subject’s memory relative to previously attained abilities?" + }, + "memo_comp.DECCLIN": { + "title": "3A Does the clinician believe there has been a current meaningful decline in the subject’s memory, non-memory cognitive abilities, behavior, or ability to manage his/her affairs, or have there been motor/movement changes relative to previously attained abilities?" + }, + "memo_comp.DECAGE": { + "title": "3B At what age did the cognitive decline begin (based upon the clinician’s assessment)?" + }, + "cogn_symp.indicate_impair.COGMEM": { + "title": "4A Memory (For example, does s/he forget conversations and/or dates; repeat questions and/or statements; misplace more than usual; forget names of people s/he knows well?)" + }, + "cogn_symp.indicate_impair.COGJUDG": { + "title": "4B Judgment and problem-solving (For example, does s/he have trouble handling money (tips); paying bills; shopping; preparing meals; handling appliances; handling medications; driving?)" + }, + "cogn_symp.indicate_impair.COGLANG": { + "title": "4C Language (For example, does s/he have hesitant speech; have trouble finding words; use inappropriate words without self-correction?)" + }, + "cogn_symp.indicate_impair.COGVIS": { + "title": "4D Visuospatial function (Difficulty interpreting visual stimuli and finding his/her way around)." + }, + "cogn_symp.indicate_impair.COGATTN": { + "title": "4E Attention/concentration (For example, does the subject have a short attention span or ability to concentrate? Is s/he easily distracted?)" + }, + "cogn_symp.indicate_impair.COGFLUC": { + "title": "4F Fluctuating cognition (Does s/he have pronounced variation in attention and alertness, noticeably over hours or days? For example, long periods of staring into space or lapses, or times when his/her ideas have a disorganized flow.)" + }, + "cogn_symp.indicate_impair.COGOTHR": { + "title": "4G Cognitive symptoms, other" + }, + "cogn_symp.indicate_impair.COGOTHRX": { + "title": "4G1 Cognitive symptoms, other – specify" + }, + "cogn_symp.COGFRST": { + "title": "5 Indicate the predominant symptom which was first recognized as a decline in the subject’s cognition:" + }, + "cogn_symp.COGFRSTX": { + "title": "5A First predominant cognitive symptom, other – specify" + }, + "cogn_symp.COGMODE": { + "title": "6 Mode of onset of cognitive symptoms:" + }, + "cogn_symp.COGMODEX": { + "title": "6A Cognitive symptoms onset mode, other – specify" + }, + "beha_symp.indicate_beha_symp.BEAPATHY": { + "title": "7A Apathy/withdrawal (Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?)" + }, + "beha_symp.indicate_beha_symp.BEDEP": { + "title": "7B Depression (Has the subject seemed depressed for more than two weeks at a time; e.g., loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?)" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": { + "title": "7C1 Visual hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEVWELL": { + "title": "7C1A If having visual hallucinations, are the hallucinations well-formed and detailed" + }, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": { + "title": "7C2 Auditory hallucinations" + }, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": { + "title": "7C3 Abnormal/false/delusional beliefs" + }, + "beha_symp.indicate_beha_symp.BEDISIN": { + "title": "7D Disinhibition (Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?)" + }, + "beha_symp.indicate_beha_symp.BEIRRIT": { + "title": "7E Irritability (Does the subject overreact, such as shouting at family members or others?)" + }, + "beha_symp.indicate_beha_symp.BEAGIT": { + "title": "7F Agitation (Does the subject have trouble sitting still; does s/he shout, hit, and/or kick?)" + }, + "beha_symp.indicate_beha_symp.BEPERCH": { + "title": "7G Personality change (Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness [without delusions, unusual dress, or dietary changes? Does the subject fail to take other’s feeling into account?)" + }, + "beha_symp.indicate_beha_symp.BEREM": { + "title": "7H REM sleep behavior disorder (Does the subject appear to act out his/her dreams while sleeping (e.g., punch or flail their arms, shout or scream?)" + }, + "beha_symp.indicate_beha_symp.BEOTHR": { + "title": "7I Behavior symptoms, other" + }, + "beha_symp.indicate_beha_symp.BEOTHRX": { + "title": "7I1 Behavior symptoms, other – specify" + }, + "beha_symp.BEFRST": { + "title": "8 Indicate the predominant symptom which was first recognized as a decline in the subject’s behavioral symptoms:" + }, + "beha_symp.BEFRSTX": { + "title": "8A First predominant behavior symptom, other – specify" + }, + "beha_symp.BEMODE": { + "title": "9 Mode of onset of behavioral symptoms:" + }, + "beha_symp.BEMODEX": { + "title": "9A Behavioral symptoms onset mode, other – specify" + }, + "motor_symp.indicate_motor_symp.MOGAIT": { + "title": "10A Gait disorder (Has the subject’s walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little or no arm-swing, or drag a foot?)" + }, + "motor_symp.indicate_motor_symp.MOFALLS": { + "title": "10B Falls (Does the subject fall more than usual?)" + }, + "motor_symp.indicate_motor_symp.MOTREM": { + "title": "10C Tremor (Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth or tongue?)" + }, + "motor_symp.indicate_motor_symp.MOSLOW": { + "title": "10D Slowness (Has the subject noticeably slowed down in walking or moving or handwriting, other than due to an injury or illness? Has his/her facial expression changed, or become more “wooden” or masked and unexpressive?)" + }, + "motor_symp.MOFRST": { + "title": "11 Indicate the predominant symptom which was first recognized as a decline in the subject’s motor symptoms:" + }, + "motor_symp.MOMODE": { + "title": "12 Mode of onset of motor symptoms:" + }, + "motor_symp.MOMODEX": { + "title": "12X Motor symptoms onset mode, other – specify" + }, + "motor_symp.MOMOPARK": { + "title": "12A If there were changes in motor function, were these suggestive of parkinsonism?" + }, + "overall.COURSE": { + "title": "13 Course of overall cognitive/behavioral/motor syndrome:" + }, + "overall.FRSTCHG": { + "title": "14 Indicate the predominant domain which was first recognized as changed in the subject:" + } + }, + "boost_values": { + "patient": 1.0, + "memo_comp.DECSUB": 1.0, + "memo_comp.DECIN": 1.0, + "memo_comp.DECCLIN": 1.0, + "memo_comp.DECAGE": 1.0, + "cogn_symp.indicate_impair.COGMEM": 1.0, + "cogn_symp.indicate_impair.COGJUDG": 1.0, + "cogn_symp.indicate_impair.COGLANG": 1.0, + "cogn_symp.indicate_impair.COGVIS": 1.0, + "cogn_symp.indicate_impair.COGATTN": 1.0, + "cogn_symp.indicate_impair.COGFLUC": 1.0, + "cogn_symp.indicate_impair.COGOTHR": 1.0, + "cogn_symp.indicate_impair.COGOTHRX": 1.0, + "cogn_symp.COGFRST": 1.0, + "cogn_symp.COGFRSTX": 1.0, + "cogn_symp.COGMODE": 1.0, + "cogn_symp.COGMODEX": 1.0, + "beha_symp.indicate_beha_symp.BEAPATHY": 1.0, + "beha_symp.indicate_beha_symp.BEDEP": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEVHALL": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEVWELL": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEAHALL": 1.0, + "beha_symp.indicate_beha_symp.psychosis.BEDEL": 1.0, + "beha_symp.indicate_beha_symp.BEDISIN": 1.0, + "beha_symp.indicate_beha_symp.BEIRRIT": 1.0, + "beha_symp.indicate_beha_symp.BEAGIT": 1.0, + "beha_symp.indicate_beha_symp.BEPERCH": 1.0, + "beha_symp.indicate_beha_symp.BEREM": 1.0, + "beha_symp.indicate_beha_symp.BEOTHR": 1.0, + "beha_symp.indicate_beha_symp.BEOTHRX": 1.0, + "beha_symp.BEFRST": 1.0, + "beha_symp.BEFRSTX": 1.0, + "beha_symp.BEMODE": 1.0, + "beha_symp.BEMODEX": 1.0, + "motor_symp.indicate_motor_symp.MOGAIT": 1.0, + "motor_symp.indicate_motor_symp.MOFALLS": 1.0, + "motor_symp.indicate_motor_symp.MOTREM": 1.0, + "motor_symp.indicate_motor_symp.MOSLOW": 1.0, + "motor_symp.MOFRST": 1.0, + "motor_symp.MOMODE": 1.0, + "motor_symp.MOMODEX": 1.0, + "motor_symp.MOMOPARK": 1.0, + "overall.COURSE": 1.0, + "overall.FRSTCHG": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b9v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_b9v3.json b/src/encoded/schemas/ivp_b9v3.json new file mode 100644 index 0000000000..ce9c502744 --- /dev/null +++ b/src/encoded/schemas/ivp_b9v3.json @@ -0,0 +1,1018 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM B9: CLINICIAN JUDGMENT OF SYMPTOMS", + "description": "INSTRUCTIONS: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form B9. Link to NACC Coding Guidebook . Check only one box per question.", + "id": "/profiles/ivp_b9v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_b9.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "decl_in_memo": { + "title": "Declines in memory reported by subject and co-participant", + "type": "object", + "properties": { + "decsub": { + "title": "1. Does the subject report a decline in memory (relative to previously attained abilities)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Could not be assessed/subject is too impaired" + ] + }, + "decin": { + "title": "2. Does the co-participant report a decline in the subject's memory (relative to previously attained abilities)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 There is no co-participant" + ] + } + + }, + "required": [ + "decsub", + "decin" + ] + }, + "cogn_symp": { + "title": "Cognitive symptoms", + "type": "object", + "properties": { + "decclcog": { + "title": "3. Based on the clinician's judgment, is the subject currently experiencing meaningful impairment in cognition?", + + "comment": "", + "type": "string", + "enum": [ + "0 No (If no, SKIP TO QUESTION 8)", + "1 Yes" + ] + } + } + }, + "meaningful_impair": { + "title": "4. Indicate whether the subject currently is meaningfully impaired, relative to previously attained abilities, in the following cognitive domains, or has fluctuating cognition:", + "type": "object", + "properties": { + "cogmem": { + "title": "4a. Memory: For example, does s/he forget conversations and/or dates, repeat questions and/or statements, misplace things more than usual, forget names of people s/he knows well?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogori": { + "title": "4b. Orientation: For example, does s/he have trouble knowing the day, month, and year, or not recognize familiar locations, or get lost in familiar locations?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogjudg": { + "title": "4c. Executive function - judgment, planning, problem-solving: Does s/he have trouble handling money (e.g., tips), paying bills, preparing meals, shopping, using appliances, handling medications, driving?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "coglang": { + "title": "4d. Language: Does s/he have hesitant speech, have trouble finding words, use inappropriate words without self-correction?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogvis": { + "title": "4e. Visuospatial function: Does s/he have difficulty interpreting visual stimuli and finding his/her way around?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogattn": { + "title": "4f. Attention, concentration: Does the subject have a short attention span or limited ability to concentrate? Is s/he easily distracted?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogfluc": { + "title": "4g. Fluctuating cognition: Does the subject exhibit pronounced variation in attention and alertness, noticeably over hours or days - for example, long lapses or periods of staring into space, or times when his/her ideas have a disorganized flow?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogflago": { + "title": "This is a good place to add piping to display age when fluctuating cognition began from all visits.\n4g1. If yes, at what age did the fluctuating cognition begin? (The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + }, + "cogothr": { + "title": "4h. Other cognitive symptoms, specify:", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "cogothrx": { + "title": "4h1. If yes, there are other cognitive symptoms, specify:", + "type": "string" + }, + "cogfpred": { + "title": "5. Indicate the predominant symptom that was first recognized as a decline in the subject's cognition:", + "type": "string", + "enum": [ + "1 Memory", + "2 Orientation", + "3 Executive function - judgment, planning,problem-solving", + "4 Language", + "5 Visuospatial function", + "6 Attention/concentration", + "7 Fluctuating cognition", + "8 Other (SPECIFY):", + "99 Unknown" + ] + }, + "cogfprex": { + "title": "5a. If there are other predominant symptoms, specify:", + "type": "string" + }, + "cogmode": { + "title": "6. Mode of onset of cognitive symptoms:", + "type": "string", + "enum": [ + "1 Gradual", + "2 Subacute", + "3 Abrupt", + "4 Other (SPECIFY):", + "88 N/A", + "99 Unknown" + ] + }, + "cogmodex": { + "title": "6a. If there are other mode of onset of cognitive symptoms, specify:", + "type": "string" + }, + "decage": { + "title": "7. Based on the clinician's assessment, at what age did the cognitive decline begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + } + } + }, + "beha_symp": { + "title": "Behavioral symptoms", + "type": "object", + "properties": { + "decclbe": { + "title": "8. Based on the clinician's judgment, is the subject currently experiencing any kind of behavioral symptoms?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 13)", + "1 Yes" + ] + } + } + }, + "chge_in_behv": { + "title": "9. Indicate whether the subject currently manifests meaningful change in behavior in any of the following ways:", + "type": "object", + "properties": { + "beapathy": { + "title": "9a. Apathy, withdrawal: Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "bedep": { + "title": "9b. Depressed mood: Has the subject seemed depressed for more than two weeks at a time, e.g., shown loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + } + }, + "psych": { + "title": "9c. Psychosis", + + "type": "object", + "properties": { + "bevhall": { + "title": "9c1. Visual hallucinations", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "bevwell": { + "title": "9c1a. If Yes, are the hallucinations well formed and detailed?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "bevhago": { + "title": "9c1b. If well formed, clear-cut visual hallucinations, at what age did these visual hallucinations begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110; 888 = NA, not well-formed) )", + "type": "number", + "minimum": 15, + "maximum": 110 + }, + "beahall": { + "title": "9c2. Auditory hallucinations", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "bedel": { + "title": "9c3. Abnormal, false, or delusional beliefs", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "bedisin": { + "title": "9d. Disinhibition: Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beirrit": { + "title": "9e. Irritability: Does the subject overreact, e.g., by shouting at family members or others?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beagit": { + "title": "9f. Agitation: Does the subject have trouble sitting still? Does s/he shout, hit, and/or kick?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beperch": { + "title": "9g. Personality change: Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness (without delusions), unusual dress, or dietary changes? Does the subject fail to take others' feelings into account?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "berem": { + "title": "9h. REM sleep behavior disorder: While sleeping, does the subject appear to act out his/her dreams (e.g., punch or flail their arms, shout, or scream)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beremago": { + "title": "9h1. If yes, at what age did the REM sleep behavior disorder begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + }, + "beanx": { + "title": "9i. Anxiety: For example, does s/he show signs of nervousness (e.g., frequent sighing, anxious facial expressions, or hand-wringing) and/or excessive worrying?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beothr": { + "title": "9j. Other behavioral symptoms, specify:", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "beothrx": { + "title": "9j1. If there are other behavioral symptoms, specify:", + "type": "string" + }, + "befpred": { + "title": "10. Indicate the predominant symptom that was first recognized as a decline in the subject's behavior:", + "type": "string", + "enum": [ + "1 Apathy/withdrawal", + "2 Depressed mood", + "3 Psychosis", + "4 Disinhibition", + "5 Irritability", + "6 Agitation", + "7 Personality change", + "8 REM sleep behavior disorder", + "9 Anxiety", + "10 Other (SPECIFY):", + "99 Unknown" + ] + }, + "befpredx": { + "title": "10a. If there are other predominant symptoms, specify:", + "type": "string" + }, + "bemode": { + "title": "11. Mode of onset of behavioral symptoms:", + "type": "string", + "enum": [ + "1 Gradual", + "2 Subacute", + "3 Abrupt", + "4 Other (SPECIFY):", + "88 N/A", + "99 Unknown" + ] + }, + "bemodex": { + "title": "11a. If there are other mode of onset of behavioral symptoms, specify:", + "type": "string" + }, + "beage": { + "title": "12. Based on the clinician's assessment, at what age did the behavioral symptoms begin? \n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + } + } + }, + "moto_symp": { + "title": "Motor symptoms", + "type": "object", + "properties": { + "decclmot": { + "title": "13. Based on the clinician's judgment, is the subject currently experiencing any motor symptoms?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 20)", + "1 Yes" + ] + } + } + }, + "motor_func": { + "title": "14. Indicate whether the subject currently has meaningful change in motor function in any of the following areas:", + "type": "object", + "properties": { + "mogait": { + "title": "14a. Gait disorder: Has the subject's walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little to no arm-swing, or drag a foot?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "mofalls": { + "title": "14b. Falls: Does the subject fall more than usual?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "motrem": { + "title": "14c. Tremor: Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth, or tongue?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "moslow": { + "title": "14d. Slowness: Has the subject noticeably slowed down in walking, moving, or writing by hand, other than due to an injury or illness? Has his/her facial expression changed or become more \"wooden,\" or masked and unexpressive?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "mofrst": { + "title": "15. Indicate the predominant symptom that was first recognized as a decline in the subject's motor function:", + "type": "string", + "enum": [ + "1 Gait disorder", + "2 Falls", + "3 Tremor", + "4 Slowness", + "88 N/A", + "99 Unknown" + ] + }, + "momode": { + "title": "16. Mode of onset of motor symptoms:", + "type": "string", + "enum": [ + "1 Gradual", + "2 Subacute", + "3 Abrupt", + "4 Other (SPECIFY):", + "88 N/A", + "99 Unknown" + ] + }, + "momodex": { + "title": "16a. If there are other mode of onset of motor symptoms, specify:", + "type": "string" + }, + "momopark": { + "title": "17. Were changes in motor function suggestive of parkinsonism?", + "description": "(If No or Unknown, SKIP TO QUESTION 18)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "88 N/A", + "9 Unknown" + ] + }, + "parkage": { + "title": "17a. If Yes, at what age did the motor symptoms suggestive of parkinsonism begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + }, + "momoals": { + "title": "18. Were changes in motor function suggestive of amyotrophic lateral sclerosis?", + "description": "(If No or Unknown, SKIP TO QUESTION 19)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "alsage": { + "title": "18a. If Yes, at what age did the motor symptoms suggestive of ALS begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + }, + "moage": { + "title": "19. Based on the clinician's assessment, at what age did the motor changes begin?\n(The clinician must use his/her best judgment to estimate an age of onset of motor changes.)", + "description": "((15-110))", + "type": "number", + "minimum": 15, + "maximum": 110 + } + } + }, + "overall": { + "title": "Overall course of decline and predominant domain", + "type": "object", + "properties": { + "course": { + "title": "20. Overall course of decline of cognitive/behavioral /motor syndrome:", + "type": "string", + "enum": [ + "1 Gradually progressive", + "2 Stepwise", + "3 Static", + "4 Fluctuating", + "5 Improved", + "8 N/A", + "9 Unknown" + ] + }, + "frstchg": { + "title": "21. Indicate the predominant domain that was first recognized as changed in the subject:", + "type": "string", + "enum": [ + "1 Cognition", + "2 Behavior", + "3 Motor function", + "8 N/A", + "9 Unknown" + ] + } + } + }, + "candidate": { + "title": "Candidate for further evaluation for Lewy body disease or frontotemporal lobar degeneration", + "type": "object", + "properties": { + "lbdeval": { + "title": "22. Is the subject a potential candidate for further evaluation for Lewy body disease?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "ftldeval": { + "title": "23. Is the subject a potential candidate for further evaluation for frontotemporal lobar degeneration?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "decl_in_memo.decsub": { + "title": "1. Does the subject report a decline in memory (relative to previously attained abilities)?" + }, + "decl_in_memo.decin": { + "title": "2. Does the co-participant report a decline in the subject's memory (relative to previously attained abilities)?" + }, + + "cogn_symp.decclcog": { + "title": "3. Based on the clinician's judgment, is the subject currently experiencing meaningful impairment in cognition?" + }, + "meaningful_impair.cogmem": { + "title": "4a. Memory: For example, does s/he forget conversations and/or dates, repeat questions and/or statements, misplace things more than usual, forget names of people s/he knows well?" + }, + "meaningful_impair.cogori": { + "title": "4b. Orientation: For example, does s/he have trouble knowing the day, month, and year, or not recognize familiar locations, or get lost in familiar locations?" + }, + "meaningful_impair.cogjudg": { + "title": "4c. Executive function - judgment, planning, problem-solving: Does s/he have trouble handling money (e.g., tips), paying bills, preparing meals, shopping, using appliances, handling medications, driving?" + }, + "meaningful_impair.coglang": { + "title": "4d. Language: Does s/he have hesitant speech, have trouble finding words, use inappropriate words without self-correction?" + }, + "meaningful_impair.cogvis": { + "title": "4e. Visuospatial function: Does s/he have difficulty interpreting visual stimuli and finding his/her way around?" + }, + "meaningful_impair.cogattn": { + "title": "4f. Attention, concentration: Does the subject have a short attention span or limited ability to concentrate? Is s/he easily distracted?" + }, + "meaningful_impair.cogfluc": { + "title": "4g. Fluctuating cognition: Does the subject exhibit pronounced variation in attention and alertness, noticeably over hours or days - for example, long lapses or periods of staring into space, or times when his/her ideas have a disorganized flow?" + }, + "meaningful_impair.cogflago": { + "title": "This is a good place to add piping to display age when fluctuating cognition began from all visits.\n4g1. If yes, at what age did the fluctuating cognition begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "meaningful_impair.cogothr": { + "title": "4h. Other cognitive symptoms, specify:" + }, + "meaningful_impair.cogothrx": { + "title": "4h1. If yes, there are other cognitive symptoms, specify:" + }, + "meaningful_impair.cogfpred": { + "title": "5. Indicate the predominant symptom that was first recognized as a decline in the subject's cognition:" + }, + "meaningful_impair.cogfprex": { + "title": "5a. If there are other predominant symptoms, specify:" + }, + "meaningful_impair.cogmode": { + "title": "6. Mode of onset of cognitive symptoms:" + }, + "meaningful_impair.cogmodex": { + "title": "6a. If there are other mode of onset of cognitive symptoms, specify:" + }, + "meaningful_impair.decage": { + "title": "7. Based on the clinician's assessment, at what age did the cognitive decline begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "beha_symp.decclbe": { + "title": "8. Based on the clinician's judgment, is the subject currently experiencing any kind of behavioral symptoms?" + }, + "chge_in_behv.beapathy": { + "title": "9a. Apathy, withdrawal: Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?" + }, + "chge_in_behv.bedep": { + "title": "9b. Depressed mood: Has the subject seemed depressed for more than two weeks at a time, e.g., shown loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?" + }, + "psych.bevhall": { + "title": "9c1. Visual hallucinations" + }, + "psych.bevwell": { + "title": "9c1a. If Yes, are the hallucinations well formed and detailed?" + }, + "psych.bevhago": { + "title": "9c1b. If well formed, clear-cut visual hallucinations, at what age did these visual hallucinations begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "psych.beahall": { + "title": "9c2. Auditory hallucinations" + }, + "psych.bedel": { + "title": "9c3. Abnormal, false, or delusional beliefs" + }, + "psych.bedisin": { + "title": "9d. Disinhibition: Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?" + }, + "psych.beirrit": { + "title": "9e. Irritability: Does the subject overreact, e.g., by shouting at family members or others?" + }, + "psych.beagit": { + "title": "9f. Agitation: Does the subject have trouble sitting still? Does s/he shout, hit, and/or kick?" + }, + "psych.beperch": { + "title": "9g. Personality change: Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness (without delusions), unusual dress, or dietary changes? Does the subject fail to take others' feelings into account?" + }, + "psych.berem": { + "title": "9h. REM sleep behavior disorder: While sleeping, does the subject appear to act out his/her dreams (e.g., punch or flail their arms, shout, or scream)?" + }, + "psych.beremago": { + "title": "9h1. If yes, at what age did the REM sleep behavior disorder begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "psych.beanx": { + "title": "9i. Anxiety: For example, does s/he show signs of nervousness (e.g., frequent sighing, anxious facial expressions, or hand-wringing) and/or excessive worrying?" + }, + "psych.beothr": { + "title": "9j. Other behavioral symptoms, specify:" + }, + "psych.beothrx": { + "title": "9j1. If there are other behavioral symptoms, specify:" + }, + "psych.befpred": { + "title": "10. Indicate the predominant symptom that was first recognized as a decline in the subject's behavior:" + }, + "psych.befpredx": { + "title": "10a. If there are other predominant symptoms, specify:" + }, + "psych.bemode": { + "title": "11. Mode of onset of behavioral symptoms:" + }, + "psych.bemodex": { + "title": "11a. If there are other mode of onset of behavioral symptoms, specify:" + }, + "psych.beage": { + "title": "12. Based on the clinician's assessment, at what age did the behavioral symptoms begin? \n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "moto_symp.decclmot": { + "title": "13. Based on the clinician's judgment, is the subject currently experiencing any motor symptoms?" + }, + "motor_func.mogait": { + "title": "14a. Gait disorder: Has the subject's walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little to no arm-swing, or drag a foot?" + }, + "motor_func.mofalls": { + "title": "14b. Falls: Does the subject fall more than usual?" + }, + "motor_func.motrem": { + "title": "14c. Tremor: Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth, or tongue?" + }, + "motor_func.moslow": { + "title": "14d. Slowness: Has the subject noticeably slowed down in walking, moving, or writing by hand, other than due to an injury or illness? Has his/her facial expression changed or become more \"wooden,\" or masked and unexpressive?" + }, + "motor_func.mofrst": { + "title": "15. Indicate the predominant symptom that was first recognized as a decline in the subject's motor function:" + }, + "motor_func.momode": { + "title": "16. Mode of onset of motor symptoms:" + }, + "motor_func.momodex": { + "title": "16a. If there are other mode of onset of motor symptoms, specify:" + }, + "motor_func.momopark": { + "title": "17. Were changes in motor function suggestive of parkinsonism?" + }, + "motor_func.parkage": { + "title": "17a. If Yes, at what age did the motor symptoms suggestive of parkinsonism begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "motor_func.momoals": { + "title": "18. Were changes in motor function suggestive of amyotrophic lateral sclerosis?" + }, + "motor_func.alsage": { + "title": "18a. If Yes, at what age did the motor symptoms suggestive of ALS begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "motor_func.moage": { + "title": "19. Based on the clinician's assessment, at what age did the motor changes begin?\n(The clinician must use his/her best judgment to estimate an age of onset of motor changes.)" + }, + "overall.course": { + "title": "20. Overall course of decline of cognitive/behavioral /motor syndrome:" + }, + "overall.frstchg": { + "title": "21. Indicate the predominant domain that was first recognized as changed in the subject:" + }, + "candidate.lbdeval": { + "title": "22. Is the subject a potential candidate for further evaluation for Lewy body disease?" + }, + "candidate.ftldeval": { + "title": "23. Is the subject a potential candidate for further evaluation for frontotemporal lobar degeneration?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "decl_in_memo.decsub": { + "title": "1. Does the subject report a decline in memory (relative to previously attained abilities)?" + }, + "decl_in_memo.decin": { + "title": "2. Does the co-participant report a decline in the subject's memory (relative to previously attained abilities)?" + }, + + "cogn_symp.decclcog": { + "title": "3. Based on the clinician's judgment, is the subject currently experiencing meaningful impairment in cognition?" + }, + "meaningful_impair.cogmem": { + "title": "4a. Memory: For example, does s/he forget conversations and/or dates, repeat questions and/or statements, misplace things more than usual, forget names of people s/he knows well?" + }, + "meaningful_impair.cogori": { + "title": "4b. Orientation: For example, does s/he have trouble knowing the day, month, and year, or not recognize familiar locations, or get lost in familiar locations?" + }, + "meaningful_impair.cogjudg": { + "title": "4c. Executive function - judgment, planning, problem-solving: Does s/he have trouble handling money (e.g., tips), paying bills, preparing meals, shopping, using appliances, handling medications, driving?" + }, + "meaningful_impair.coglang": { + "title": "4d. Language: Does s/he have hesitant speech, have trouble finding words, use inappropriate words without self-correction?" + }, + "meaningful_impair.cogvis": { + "title": "4e. Visuospatial function: Does s/he have difficulty interpreting visual stimuli and finding his/her way around?" + }, + "meaningful_impair.cogattn": { + "title": "4f. Attention, concentration: Does the subject have a short attention span or limited ability to concentrate? Is s/he easily distracted?" + }, + "meaningful_impair.cogfluc": { + "title": "4g. Fluctuating cognition: Does the subject exhibit pronounced variation in attention and alertness, noticeably over hours or days - for example, long lapses or periods of staring into space, or times when his/her ideas have a disorganized flow?" + }, + "meaningful_impair.cogflago": { + "title": "This is a good place to add piping to display age when fluctuating cognition began from all visits.\n4g1. If yes, at what age did the fluctuating cognition begin? (The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "meaningful_impair.cogothr": { + "title": "4h. Other cognitive symptoms, specify:" + }, + "meaningful_impair.cogothrx": { + "title": "4h1. If yes, there are other cognitive symptoms, specify:" + }, + "meaningful_impair.cogfpred": { + "title": "5. Indicate the predominant symptom that was first recognized as a decline in the subject's cognition:" + }, + "meaningful_impair.cogfprex": { + "title": "5a. If there are other predominant symptoms, specify:" + }, + "meaningful_impair.cogmode": { + "title": "6. Mode of onset of cognitive symptoms:" + }, + "meaningful_impair.cogmodex": { + "title": "6a. If there are other mode of onset of cognitive symptoms, specify:" + }, + "meaningful_impair.decage": { + "title": "7. Based on the clinician's assessment, at what age did the cognitive decline begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "beha_symp.decclbe": { + "title": "8. Based on the clinician's judgment, is the subject currently experiencing any kind of behavioral symptoms?" + }, + "chge_in_behv.beapathy": { + "title": "9a. Apathy, withdrawal: Has the subject lost interest in or displayed a reduced ability to initiate usual activities and social interaction, such as conversing with family and/or friends?" + }, + "chge_in_behv.bedep": { + "title": "9b. Depressed mood: Has the subject seemed depressed for more than two weeks at a time, e.g., shown loss of interest or pleasure in nearly all activities, sadness, hopelessness, loss of appetite, fatigue?" + }, + "psych.bevhall": { + "title": "9c1. Visual hallucinations" + }, + "psych.bevwell": { + "title": "9c1a. If Yes, are the hallucinations well formed and detailed?" + }, + "psych.bevhago": { + "title": "9c1b. If well formed, clear-cut visual hallucinations, at what age did these visual hallucinations begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "psych.beahall": { + "title": "9c2. Auditory hallucinations" + }, + "psych.bedel": { + "title": "9c3. Abnormal, false, or delusional beliefs" + }, + "psych.bedisin": { + "title": "9d. Disinhibition: Does the subject use inappropriate coarse language or exhibit inappropriate speech or behaviors in public or in the home? Does s/he talk personally to strangers or have disregard for personal hygiene?" + }, + "psych.beirrit": { + "title": "9e. Irritability: Does the subject overreact, e.g., by shouting at family members or others?" + }, + "psych.beagit": { + "title": "9f. Agitation: Does the subject have trouble sitting still? Does s/he shout, hit, and/or kick?" + }, + "psych.beperch": { + "title": "9g. Personality change: Does the subject exhibit bizarre behavior or behavior uncharacteristic of the subject, such as unusual collecting, suspiciousness (without delusions), unusual dress, or dietary changes? Does the subject fail to take others' feelings into account?" + }, + "psych.berem": { + "title": "9h. REM sleep behavior disorder: While sleeping, does the subject appear to act out his/her dreams (e.g., punch or flail their arms, shout, or scream)?" + }, + "psych.beremago": { + "title": "9h1. If yes, at what age did the REM sleep behavior disorder begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "psych.beanx": { + "title": "9i. Anxiety: For example, does s/he show signs of nervousness (e.g., frequent sighing, anxious facial expressions, or hand-wringing) and/or excessive worrying?" + }, + "psych.beothr": { + "title": "9j. Other behavioral symptoms, specify:" + }, + "psych.beothrx": { + "title": "9j1. If there are other behavioral symptoms, specify:" + }, + "psych.befpred": { + "title": "10. Indicate the predominant symptom that was first recognized as a decline in the subject's behavior:" + }, + "psych.befpredx": { + "title": "10a. If there are other predominant symptoms, specify:" + }, + "psych.bemode": { + "title": "11. Mode of onset of behavioral symptoms:" + }, + "psych.bemodex": { + "title": "11a. If there are other mode of onset of behavioral symptoms, specify:" + }, + "psych.beage": { + "title": "12. Based on the clinician's assessment, at what age did the behavioral symptoms begin? \n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "moto_symp.decclmot": { + "title": "13. Based on the clinician's judgment, is the subject currently experiencing any motor symptoms?" + }, + "motor_func.mogait": { + "title": "14a. Gait disorder: Has the subject's walking changed, not specifically due to arthritis or an injury? Is s/he unsteady, or does s/he shuffle when walking, have little to no arm-swing, or drag a foot?" + }, + "motor_func.mofalls": { + "title": "14b. Falls: Does the subject fall more than usual?" + }, + "motor_func.motrem": { + "title": "14c. Tremor: Has the subject had rhythmic shaking, especially in the hands, arms, legs, head, mouth, or tongue?" + }, + "motor_func.moslow": { + "title": "14d. Slowness: Has the subject noticeably slowed down in walking, moving, or writing by hand, other than due to an injury or illness? Has his/her facial expression changed or become more \"wooden,\" or masked and unexpressive?" + }, + "motor_func.mofrst": { + "title": "15. Indicate the predominant symptom that was first recognized as a decline in the subject's motor function:" + }, + "motor_func.momode": { + "title": "16. Mode of onset of motor symptoms:" + }, + "motor_func.momodex": { + "title": "16a. If there are other mode of onset of motor symptoms, specify:" + }, + "motor_func.momopark": { + "title": "17. Were changes in motor function suggestive of parkinsonism?" + }, + "motor_func.parkage": { + "title": "17a. If Yes, at what age did the motor symptoms suggestive of parkinsonism begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "motor_func.momoals": { + "title": "18. Were changes in motor function suggestive of amyotrophic lateral sclerosis?" + }, + "motor_func.alsage": { + "title": "18a. If Yes, at what age did the motor symptoms suggestive of ALS begin?\n(The clinician must use his/her best judgment to estimate an age of onset.)" + }, + "motor_func.moage": { + "title": "19. Based on the clinician's assessment, at what age did the motor changes begin?\n(The clinician must use his/her best judgment to estimate an age of onset of motor changes.)" + }, + "overall.course": { + "title": "20. Overall course of decline of cognitive/behavioral /motor syndrome:" + }, + "overall.frstchg": { + "title": "21. Indicate the predominant domain that was first recognized as changed in the subject:" + }, + "candidate.lbdeval": { + "title": "22. Is the subject a potential candidate for further evaluation for Lewy body disease?" + }, + "candidate.ftldeval": { + "title": "23. Is the subject a potential candidate for further evaluation for frontotemporal lobar degeneration?" + } + }, + "boost_values": { + "patient": 1.0, + "decl_in_memo.decsub": 1.0, + "decl_in_memo.decin": 1.0, + "cogn_symp.decclcog": 1.0, + "meaningful_impair.cogmem": 1.0, + "meaningful_impair.cogori": 1.0, + "meaningful_impair.cogjudg": 1.0, + "meaningful_impair.coglang": 1.0, + "meaningful_impair.cogvis": 1.0, + "meaningful_impair.cogattn": 1.0, + "meaningful_impair.cogfluc": 1.0, + "meaningful_impair.cogflago": 1.0, + "meaningful_impair.cogothr": 1.0, + "meaningful_impair.cogothrx": 1.0, + "meaningful_impair.cogfpred": 1.0, + "meaningful_impair.cogfprex": 1.0, + "meaningful_impair.cogmode": 1.0, + "meaningful_impair.cogmodex": 1.0, + "meaningful_impair.decage": 1.0, + "beha_symp.decclbe": 1.0, + "chge_in_behv.beapathy": 1.0, + "chge_in_behv.bedep": 1.0, + "psych.bevhall": 1.0, + "psych.bevwell": 1.0, + "psych.bevhago": 1.0, + "psych.beahall": 1.0, + "psych.bedel": 1.0, + "psych.bedisin": 1.0, + "psych.beirrit": 1.0, + "psych.beagit": 1.0, + "psych.beperch": 1.0, + "psych.berem": 1.0, + "psych.beremago": 1.0, + "psych.beanx": 1.0, + "psych.beothr": 1.0, + "psych.beothrx": 1.0, + "psych.befpred": 1.0, + "psych.befpredx": 1.0, + "psych.bemode": 1.0, + "psych.bemodex": 1.0, + "psych.beage": 1.0, + "moto_symp.decclmot": 1.0, + "motor_func.mogait": 1.0, + "motor_func.mofalls": 1.0, + "motor_func.motrem": 1.0, + "motor_func.moslow": 1.0, + "motor_func.mofrst": 1.0, + "motor_func.momode": 1.0, + "motor_func.momodex": 1.0, + "motor_func.momopark": 1.0, + "motor_func.parkage": 1.0, + "motor_func.momoals": 1.0, + "motor_func.alsage": 1.0, + "motor_func.moage": 1.0, + "overall.course": 1.0, + "overall.frstchg": 1.0, + "candidate.lbdeval": 1.0, + "candidate.ftldeval": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_b9v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_c1v1.json b/src/encoded/schemas/ivp_c1v1.json new file mode 100644 index 0000000000..8a6e4a25aa --- /dev/null +++ b/src/encoded/schemas/ivp_c1v1.json @@ -0,0 +1,474 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet--Form C1: MMSE and Neuropsychological Battery", + "description": "NOTE: This form is to be completed by ADC or clinic staff. For test administrationADC Visit #:__ __ __\nand scoring, see UDS Coding Guidebook for Initial Visit Packet, Form C1.\nKEY: If the subject cannot complete any of the following exams, please use\nthe following codes for test scores (except for the Trail Making Test):\n95 = Physical problem 97 = Other problem\n96 = Cognitive/behavior problem 98 = Verbal refusal\n", + "id": "/profiles/ivp_c1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "c1_1": { + "title": "1. Mini-Mental State Examination", + "type": "object", + "properties": { + "MMSELOC": { + "title": "1A The administration of the MMSE was:", + "description": " ", + "type": "string", + "enum": [ + "1 In ADC/clinic", + "2 In home", + "3 In person-other" + ] + }, + "MMSELAN": { + "title": "1A1 Language of MMSE administration", + "description": " ", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other" + ] + }, + "MMSELANX": { + "title": "1A2 Language of MMSE, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #1A1, MMSELAN ≠ 3 (Other).", + "type": "string" + }, + "MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time", + "description": "(0-5, 95-98), 95/995 = Physical problem 96/996 = Cognitive/behavior problem 97/997 = Other problem 98/998 = Verbal refusal", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place", + "description": "(0-5, 95-98), 95/995 = Physical problem 96/996 = Cognitive/behavior problem 97/997 = Other problem 98/998 = Verbal refusal", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "MMSE": { + "title": "1C Total MMSE score (using D-L-R-O-W)", + "description": "0 – 30 ", + "type": "string", + "anyOf": [ + { + "pattern": "^[0-2]?[0-9]$|^30$||^95$|^96$|^97$|^98$" + }, + { + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + } + ] + } + } + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:", + "description": " ", + "type": "string", + "enum": [ + "1 In ADC/clinic", + "2 In home", + "3 In person-other" + ] + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration", + "description": " ", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other" + ] + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“) ampersands (&), or percentage signs (%). Blank if #2A, NPSYLAN ≠ 3 (Other). ", + "type": "string" + }, + "c1_3": { + "title": "3.Logical Memory IA – Immediate", + "type": "object", + "properties": { + "LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered", + "description": "Date can be submitted as YYYY-MM-DD,(Current Year or Previous Year)", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "LOGIPREV": { + "title": "3B Total score from the previous test administration:", + "description": "(0-25, 88 = N/A)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$" + }, + "LOGIMEM": { + "title": "3C Total number of story units recalled from this current test administration: ", + "description": "(0-25, 88 = N/A)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_4": { + "title": "4.Digit Span Forward", + "type": "object", + "properties": { + "DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: ", + "description": "(0-12, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-2]$|^95$|^96$|^97$|^98$" + }, + "DIGIFLEN": { + "title": "4B Digit span forward length:", + "description": " (0 – 8,95-98) ", + "type": "string", + "pattern": "^[0-8]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_5": { + "title": "5.Digit Span Backward", + "type": "object", + "properties": { + "DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:", + "description": "(0-12, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-2]$|^95$|^96$|^97$|^98$" + }, + "DIGIBLEN": { + "title": "5B Digit span backward length:", + "description": "(0 – 7,95-98) ", + "type": "string", + "pattern": "^[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_6": { + "title": "6.Category Fluency", + "type": "object", + "properties": { + "ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:", + "type": "string", + "description": "(0-77, 95-98)", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + }, + "VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:", + "description": "(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_7": { + "title": "7. Trail Making Test", + "type": "object", + "properties": { + "TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):", + "description": "(0-150, 995-998)(if not finished by 150 seconds, enter 150):(If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^1[0-4][0-9]$|^150$|^995$|^996$|^997$|^998$" + }, + "TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):", + "description": "(0-300, 995-998)(if not finished by 300 seconds, enter 300): (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a)", + "type": "string", + "pattern": "^[1-2]?[0-9]?[0-9]$|^300$|^995$|^996$|^997$|^998$" + } + } + }, + "c1_8": { + "title": "8. WAIS-R Digit Symbo", + "type": "object", + "properties": { + "WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:", + "description": " 0 – 93, 95-98", + "type": "string", + "pattern": "^[0-8]?[0-9]$|^9[0-3]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_9": { + "title": "9.Logical Memory IIA – Delayed", + "type": "object", + "properties": { + "MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:", + "description": "0 – 25,95-98 ", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^95$|^96$|^97$|^98$" + }, + "MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)", + "description": "0 – 85, 88 N/A,99 Unknown", + "type": "string", + "pattern": "^[0-7]?[0-9]$|^8[0-5]$|^88$|^99$" + } + } + }, + "c1_10": { + "title": "10.Boston Naming Test (30 Odd-numbered items)", + "type": "object", + "properties": { + "BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:", + "description": " 0 – 30,95-98 ", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^30$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_11": { + "title": "11.Overall Appraisal", + "type": "object", + "properties": { + "COGSTAT": { + "title": "11A Based on the neuropsychological examination, the subject’s cognitive status is deemed: ", + "description": " ", + "type": "string", + "enum": [ + "1 Better than normal for age", + "2 Normal for age", + "3 One or two test scores abnormal", + "4 Most test scores are abnormal or lower than expected", + "0 Clinician unable to render opinion" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "c1_1.MMSELOC": { + "title": "1A The administration of the MMSE was:" + }, + "c1_1.MMSELAN": { + "title": "1A1 Language of MMSE administration" + }, + "c1_1.MMSELANX": { + "title": "1A2 Language of MMSE, other – specify" + }, + "c1_1.MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time" + }, + "c1_1.MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place" + }, + "c1_1.MMSE": { + "title": "1C Total MMSE score (using D-L-R-O-W)" + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:" + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration" + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify" + }, + "c1_3.LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered" + }, + "c1_3.LOGIPREV": { + "title": "3B Total score from the previous test administration:" + }, + "c1_3.LOGIMEM": { + "title": "3C Total number of story units recalled from this current test administration: " + }, + "c1_4.DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: " + }, + "c1_4.DIGIFLEN": { + "title": "4B Digit span forward length:" + }, + "c1_5.DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:" + }, + "c1_5.DIGIBLEN": { + "title": "5B Digit span backward length:" + }, + "c1_6.ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:" + }, + "c1_6.VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:" + }, + "c1_7.TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):" + }, + "c1_7.TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):" + }, + "c1_8.WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:" + }, + "c1_9.MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:" + }, + "c1_9.MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)" + }, + "c1_10.BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:" + }, + "c1_11.COGSTAT": { + "title": "11A Based on the UDS neuropsychological examination, the subject’s cognitive status is deemed: " + } + }, + "columns": { + "status": { + "title": "Status" + }, + "c1_1.MMSELOC": { + "title": "1A The administration of the MMSE was:" + }, + "c1_1.MMSELAN": { + "title": "1A1 Language of MMSE administration" + }, + "c1_1.MMSELANX": { + "title": "1A2 Language of MMSE, other – specify" + }, + "c1_1.MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time" + }, + "c1_1.MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place" + }, + "c1_1.MMSE": { + "title": "1C Total MMSE score (using D-L-R-O-W)" + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:" + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration" + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify" + }, + "c1_3.LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered" + }, + "c1_3.LOGIPREV": { + "title": "3B Total score from the previous test administration:" + }, + "c1_3.LOGIMEM": { + "title": "3C Total number of story units recalled from this current test administration: " + }, + "c1_4.DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: " + }, + "c1_4.DIGIFLEN": { + "title": "4B Digit span forward length:" + }, + "c1_5.DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:" + }, + "c1_5.DIGIBLEN": { + "title": "5B Digit span backward length:" + }, + "c1_6.ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:" + }, + "c1_6.VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:" + }, + "c1_7.TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):" + }, + "c1_7.TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):" + }, + "c1_8.WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:" + }, + "c1_9.MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:" + }, + "c1_9.MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)" + }, + "c1_10.BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:" + }, + "c1_11.COGSTAT": { + "title": "11A Based on the UDS neuropsychological examination, the subject’s cognitive status is deemed: " + } + }, + "boost_values": { + "patient": 1.0, + "c1_1.MMSELOC": 1.0, + "c1_1.MMSELAN": 1.0, + "c1_1.MMSELANX": 1.0, + "c1_1.MMSEORDA": 1.0, + "c1_1.MMSEORLO": 1.0, + "c1_1.MMSE": 1.0, + "NPSYCLOC": 1.0, + "NPSYLAN": 1.0, + "NPSYLANX": 1.0, + "c1_3.LOGIMO": 1.0, + "c1_3.LOGIPREV": 1.0, + "c1_3.LOGIMEM": 1.0, + "c1_4.DIGIF": 1.0, + "c1_4.DIGIFLEN": 1.0, + "c1_5.DIGIB": 1.0, + "c1_5.DIGIBLEN": 1.0, + "c1_6.ANIMALS": 1.0, + "c1_6.VEG": 1.0, + "c1_7.TRAILA": 1.0, + "c1_7.TRAILB": 1.0, + "c1_8.WAIS": 1.0, + "c1_9.MEMUNITS": 1.0, + "c1_9.MEMTIME": 1.0, + "c1_10.BOSTON": 1.0, + "c1_11.COGSTAT": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_c1v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_c1v2.json b/src/encoded/schemas/ivp_c1v2.json new file mode 100644 index 0000000000..96a3302c15 --- /dev/null +++ b/src/encoded/schemas/ivp_c1v2.json @@ -0,0 +1,535 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet--Form C1: MMSE and Neuropsychological Battery", + "description": "NOTE: This form is to be completed by ADC or clinic staff. For test administration\nand scoring, see UDS Coding Guidebook for Initial Visit Packet, Form C1.\nKEY: If the subject cannot complete any of the following exams, please use\nthe following codes for test scores (except for the Trail Making Test):\n95 = Physical problem 97 = Other problem\n96 = Cognitive/behavior problem 98 = Verbal refusal\n", + "id": "/profiles/ivp_c1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "c1_1": { + "title": "1. Mini-Mental State Examination", + "type": "object", + "properties": { + "MMSELOC": { + "title": "1A The administration of the MMSE was:", + "type": "string", + "enum": [ + "1 In ADC/clinic", + "2 In home", + "3 In person-other" + ] + }, + "MMSELAN": { + "title": "1A1 Language of MMSE administration", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other" + ] + }, + "MMSELANX": { + "title": "1A2 Language of MMSE, other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%). Blank if #1A1, MMSELAN ≠ 3 (Other).", + "type": "string" + }, + "MMSE_score": { + "title": "Orientation subscale score", + "type": "object", + "properties": { + "MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time", + "description": "(0-5, 95-98), 95 = Physical problem 96 = Cognitive/behavior problem 97 = Other problem 98 = Verbal refusal", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place", + "description": "(0-5, 95-98), 95 = Physical problem 96 = Cognitive/behavior problem 97 = Other problem 98 = Verbal refusal", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + } + } + }, + "PENTAGON": { + "title": "1C Intersecting pentagon subscale score", + "description": "(0-1, 95-98)", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "MMSE": { + "title": "1D Total MMSE score (using D-L-R-O-W)", + "description": "(0 – 30,95-98)", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^30$|^95$|^96$|^97$|^98$" + } + } + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:", + "type": "string", + "enum": [ + "1 In ADC/clinic", + "2 In home", + "3 In person-other" + ] + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other" + ] + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“) ampersands (&), or percentage signs (%). Blank if #2A, NPSYLAN ≠ 3 (Other). ", + "type": "string" + }, + "c1_3": { + "title": "3.Logical Memory IA – Immediate", + "type": "object", + "properties": { + "LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered", + "description": "Date can be submitted as YYYY-MM-DD,(Current Year or Previous Year, 8888-88-88 = N/A)", + "type": "string", + "anyOf": [ + { + "format": "date" + }, + + { + "pattern": "^8888-88-88$" + + } + + ] + }, + "LOGIPREV": { + "title": "3A1 Total score from the previous test administration:", + "description": "(0-25, 88 = N/A)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^88$" + }, + "LOGIMEM": { + "title": "3B Total number of story units recalled from this current test administration: ", + "description": "(0-25, 95-98), 95 = Physical problem 96 = Cognitive/behavior problem 97 = Other problem 98 = Verbal refusal", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_4": { + "title": "4.Digit Span Forward", + "type": "object", + "properties": { + "DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: ", + "description": "(0-12, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-2]$|^95$|^96$|^97$|^98$" + }, + "DIGIFLEN": { + "title": "4B Digit span forward length:", + "description": " (0 – 8,95-98) ", + "type": "string", + "pattern": "^[0-8]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_5": { + "title": "5.Digit Span Backward", + "type": "object", + "properties": { + "DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:", + "description": "(0-12, 95-98)", + "type": "string", + "pattern": "^[0-9]$|^1[0-2]$|^95$|^96$|^97$|^98$" + }, + "DIGIBLEN": { + "title": "5B Digit span backward length:", + "description": "(0 – 7,95-98) ", + "type": "string", + "pattern": "^[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_6": { + "title": "6.Category Fluency", + "type": "object", + "properties": { + "ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:", + "type": "string", + "description": "(0-77, 95-98)", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + }, + "VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:", + "description": "(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^7[0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_7": { + "title": "7. Trail Making Test", + "type": "object", + "description": "KEY 2: If necessary, use the following codes for the Trail Making Test only:\n995 = Physical problem 997 = Other problem\n996 = Cognitive/behavior problem 998 = Verbal refusal\n", + "properties": { + "TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):", + "description": "(0-150, 995-998)(if not finished by 150 seconds, enter 150):(If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^1[0-4][0-9]$|^150$|^995$|^996$|^997$|^998$" + }, + "TRAILARR": { + "title": "7A1 Number of commission errors", + "description": "(0-40,88 = N/A)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^88$" + }, + "TRAILALI": { + "title": "7A2 Number of correct lines", + "description": "(0-24,88= N/A)", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-4]$|^88$" + }, + "TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):", + "description": "(0-300, 995-998)(if not finished by 300 seconds, enter 300): (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a)", + "type": "string", + "pattern": "^[1-2]?[0-9]?[0-9]$|^300$|^995$|^996$|^997$|^998$" + }, + "TRAILBRR": { + "title": "7B1 Number of commission errors", + "description": "(0 – 40,88 N/A),Blank if #7B, TRAILB = 995,996,997 or 998.", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^88$" + }, + "TRAILBLI": { + "title": "7B2 Number of correct lines", + "description": "(0 – 24, 88 N/A), Blank if #7B, TRAILB = 995,996,997 or 998.", + "type": "string", + "pattern": "^[1]?[0-9]$|^2[0-4]$|^88$" + } + } + }, + "c1_8": { + "title": "8. WAIS-R Digit Symbo", + "type": "object", + "properties": { + "WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:", + "description": " (0 – 93, 95-98)", + "type": "string", + "pattern": "^[0-8]?[0-9]$|^9[0-3]$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_9": { + "title": "9.Logical Memory IIA – Delayed", + "type": "object", + "properties": { + "MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:", + "description": "(0 – 25,95-98)", + "type": "string", + "pattern": "^[0-1]?[0-9]$|^2[0-5]$|^95$|^96$|^97$|^98$" + }, + "MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)", + "description": "(0 – 85, 88 N/A,99 Unknown)", + "type": "string", + "pattern": "^[0-7]?[0-9]$|^8[0-5]$|^88$|^99$" + } + } + }, + "c1_10": { + "title": "10.Boston Naming Test (30 Odd-numbered items)", + "type": "object", + "properties": { + "BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:", + "description": " (0 – 30,95-98)", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^30$|^95$|^96$|^97$|^98$" + } + } + }, + "c1_11": { + "title": "11.Overall Appraisal", + "type": "object", + "properties": { + "COGSTAT": { + "title": "11A Based on the UDS neuropsychological examination, the subject’s cognitive status is deemed: ", + "type": "string", + "enum": [ + "1 Better than normal for age", + "2 Normal for age", + "3 One or two test scores abnormal", + "4 Three or more scores are abnormal or lower than expected", + "0 Clinician unable to render opinion" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "c1_1.MMSELOC": { + "title": "1A The administration of the MMSE was:" + }, + "c1_1.MMSELAN": { + "title": "1A1 Language of MMSE administration" + }, + "c1_1.MMSELANX": { + "title": "1A2 Language of MMSE, other – specify" + }, + "c1_1.MMSE_score.MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time" + }, + "c1_1.MMSE_score.MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place" + }, + "c1_1.PENTAGON": { + "title": "1C Intersecting pentagon subscale score" + }, + "c1_1.MMSE": { + "title": "1D Total MMSE score (using D-L-R-O-W)" + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:" + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration" + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify" + }, + "c1_3.LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered" + }, + "c1_3.LOGIPREV": { + "title": "3A1 Total score from the previous test administration:" + }, + "c1_3.LOGIMEM": { + "title": "3B Total number of story units recalled from this current test administration: " + }, + "c1_4.DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: " + }, + "c1_4.DIGIFLEN": { + "title": "4B Digit span forward length:" + }, + "c1_5.DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:" + }, + "c1_5.DIGIBLEN": { + "title": "5B Digit span backward length:" + }, + "c1_6.ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:" + }, + "c1_6.VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:" + }, + "c1_7.TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):" + }, + "c1_7.TRAILARR": { + "title": "7A1 Number of commission errors" + }, + "c1_7.TRAILALI": { + "title": "7A2 Number of correct lines" + }, + "c1_7.TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):" + }, + "c1_7.TRAILBRR": { + "title": "7B1 Number of commission errors" + }, + "c1_7.TRAILBLI": { + "title": "7B2 Number of correct lines" + }, + "c1_8.WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:" + }, + "c1_9.MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:" + }, + "c1_9.MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)" + }, + "c1_10.BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:" + }, + "c1_11.COGSTAT": { + "title": "11A Based on the UDS neuropsychological examination, the subject’s cognitive status is deemed: " + } + }, + "columns": { + "status": { + "title": "Status" + }, + "c1_1.MMSELOC": { + "title": "1A The administration of the MMSE was:" + }, + "c1_1.MMSELAN": { + "title": "1A1 Language of MMSE administration" + }, + "c1_1.MMSELANX": { + "title": "1A2 Language of MMSE, other – specify" + }, + "c1_1.MMSE_score.MMSEORDA": { + "title": "1B1 MMSE orientation subscale score, time" + }, + "c1_1.MMSE_score.MMSEORLO": { + "title": "1B2 MMSE orientation subscale score, place" + }, + "c1_1.PENTAGON": { + "title": "1C Intersecting pentagon subscale score" + }, + "c1_1.MMSE": { + "title": "1D Total MMSE score (using D-L-R-O-W)" + }, + "NPSYCLOC": { + "title": "2 The remainder of the battery was administered:" + }, + "NPSYLAN": { + "title": "2A Language of test (neuropsychological battery) administration" + }, + "NPSYLANX": { + "title": "2A1 Language of test (neuropsychological battery), other – specify" + }, + "c1_3.LOGIMO": { + "title": "3a. If this test has been administered to the subject within the past three months, specify the date previously administered" + }, + "c1_3.LOGIPREV": { + "title": "3A1 Total score from the previous test administration:" + }, + "c1_3.LOGIMEM": { + "title": "3B Total number of story units recalled from this current test administration: " + }, + "c1_4.DIGIF": { + "title": "4A Total number of trials correct prior to two consecutive errors at the same digit length: " + }, + "c1_4.DIGIFLEN": { + "title": "4B Digit span forward length:" + }, + "c1_5.DIGIB": { + "title": "5A Total number of trials correct prior to two consecutive errors at the same digit length:" + }, + "c1_5.DIGIBLEN": { + "title": "5B Digit span backward length:" + }, + "c1_6.ANIMALS": { + "title": "6A Category fluency, Animals – Total number of animals named in 60 seconds:" + }, + "c1_6.VEG": { + "title": "6B Category fluency, Vegetables – Total number of vegetables named in 60 seconds:" + }, + "c1_7.TRAILA": { + "title": "7A Part A – Total number of seconds to complete (if not finished by 150 seconds, enter 150):" + }, + "c1_7.TRAILARR": { + "title": "7A1 Number of commission errors" + }, + "c1_7.TRAILALI": { + "title": "7A2 Number of correct lines" + }, + "c1_7.TRAILB": { + "title": "7B Part B – Total number of seconds to complete (if not finished by 300 seconds, enter 300):" + }, + "c1_7.TRAILBRR": { + "title": "7B1 Number of commission errors" + }, + "c1_7.TRAILBLI": { + "title": "7B2 Number of correct lines" + }, + "c1_8.WAIS": { + "title": "8A Total number of items correctly completed in 90 seconds:" + }, + "c1_9.MEMUNITS": { + "title": "9A Logical Memory IIA – Delayed: Total number of story units recalled:" + }, + "c1_9.MEMTIME": { + "title": "9B Logical Memory IIA – Delayed: Time elapsed since Logical Memory IA –Immediate: (minutes)" + }, + "c1_10.BOSTON": { + "title": "10A Boston Naming Test – (30 Odd-numbered items) total score:" + }, + "c1_11.COGSTAT": { + "title": "11A Based on the UDS neuropsychological examination, the subject’s cognitive status is deemed: " + } + }, + "boost_values": { + "patient": 1.0, + "c1_1.MMSELOC": 1.0, + "c1_1.MMSELAN": 1.0, + "c1_1.MMSELANX": 1.0, + "c1_1.MMSE_score.MMSEORDA": 1.0, + "c1_1.MMSE_score.MMSEORLO": 1.0, + "c1_1.PENTAGON": 1.0, + "c1_1.MMSE": 1.0, + "NPSYCLOC": 1.0, + "NPSYLAN": 1.0, + "NPSYLANX": 1.0, + "c1_3.LOGIMO": 1.0, + "c1_3.LOGIPREV": 1.0, + "c1_3.LOGIMEM": 1.0, + "c1_4.DIGIF": 1.0, + "c1_4.DIGIFLEN": 1.0, + "c1_5.DIGIB": 1.0, + "c1_5.DIGIBLEN": 1.0, + "c1_6.ANIMALS": 1.0, + "c1_6.VEG": 1.0, + "c1_7.TRAILA": 1.0, + "c1_7.TRAILARR": 1.0, + "c1_7.TRAILALI": 1.0, + "c1_7.TRAILB": 1.0, + "c1_7.TRAILBRR": 1.0, + "c1_7.TRAILBLI": 1.0, + "c1_8.WAIS": 1.0, + "c1_9.MEMUNITS": 1.0, + "c1_9.MEMTIME": 1.0, + "c1_10.BOSTON": 1.0, + "c1_11.COGSTAT": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_c1v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_c2.json b/src/encoded/schemas/ivp_c2.json new file mode 100644 index 0000000000..da344b832a --- /dev/null +++ b/src/encoded/schemas/ivp_c2.json @@ -0,0 +1,656 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm C2: Neuropsychological BatterScores", + "description": "INSTRUCTIONS: This form is to be completed by ADC or clinic staff. For test administration and scoring, see \nInstructions for Neuropsychological Battery Form C2. Link to C2 Instructions . Any new subjects who enroll in \nthe UDS after the implementation of UDS3 must be assessed with the new neuropsychological test battery (Form \nC2).\nKEY: If the subject cannot complete any of the following exams, please give the reason by entering one of the \nfollowing codes:\n95/995=Physical problem\n96/996=Cognitive/behavior problem\n97/997=Other problem\n98/998=Verbal refusal", + "id": "/profiles/uds_ivp_c2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "moca", + "admin_rema_btry", + "crft_stry_recl", + "bens_cplx_figr", + "numb_span_test_fwd", + "numb_span_test_bkwd", + "category_fluency", + "trail_make_test", + "crft_stry_recl_dely", + "bens_cplx_figr_recl", + "mint", + "verb_fluency_phone_test" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "moca": { + "title": "1. Montreal Cognitive Assessment (MoCA)", + "type": "object", + "properties": { + "mocacomp": { + "title": "1a. Was any part of the MoCA administered?", + "type": "string", + "enum": [ + "0 No (If No, enter reason code, 95-98) below in\nQuestion 1a1 and (SKIP TO QUESTION 2a)", + "1 Yes (CONTINUE WITH QUESTION 1b)" + ] + }, + "mocareas": { + "title": "1a1. Was any part of MoCA administered? If no, enter reason code, 95-98)", + "type": "string", + "enum": [ + "95 = Physical problem", + "96 = Cognitive/behavior problem", + "97 = Other problem", + "98 = Verbal refusal" + ] + }, + "mocaloc": { + "title": "1b. MoCA was administered:", + "type": "string", + "enum": [ + "1 In ADC or clinic", + "2 In home", + "3 In person - other" + ] + }, + "mocalan": { + "title": "1c. Language of MoCA administration:", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other(SPECIFY BELOW):" + ] + }, + "mocalanx": { + "title": "1c1. Specify language of MoCA administration", + "type": "string" + }, + "mocavis": { + "title": "1d. Subject was unable to complete one or more sections due to visual impairment: ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mocahear": { + "title": "1e. Subject was unable to complete one or more sections due to hearing impairment: ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mocatots": { + "title": "1f. TOTAL RAW SCORE - UNCORRECTED (Not corrected for education or visual/hearing impairment)  ", + "description": "((0-30, 88))(Enter 88 if any of the following MoCA items were not administered: 1g-1l, 1n-1t, 1w-1bb)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$|^88$" + }, + "alert_mocatots": { + "title": "WARNING - a value of 88 should be entered in the box above. At least one of the following MoCA items was not administered: 1g-1l, 1n-1t, 1w-1bb.", + "type": "object", + "properties": { + "mocatrai": { + "title": "1g. Visuospatial/executive -- Trails", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocacube": { + "title": "1h. Visuospatial/executive -- Cube", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocacloc": { + "title": "1i. Visuospatial/executive -- Clock contour", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaclon": { + "title": "1j. Visuospatial/executive -- Clock numbers", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocacloh": { + "title": "1k. Visuospatial/executive -- Clock hands", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocanami": { + "title": "1l. Language -- Naming", + "type": "string", + "pattern": "^[0-3]$|^95$|^96$|^97$|^98$" + }, + "mocaregi": { + "title": "1m. Memory -- Registration (two trials)", + "description": "((0-10, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^10$|^95$|^96$|^97$|^98$" + }, + "mocadigi": { + "title": "1n. Attention -- Digits", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "mocalett": { + "title": "1o. Attention -- Letter A", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaser7": { + "title": "1p. Attention -- Serial 7s", + "description": "((0-3, 95-98))", + "type": "string", + "pattern": "^[0-3]$|^95$|^96$|^97$|^98$" + }, + "mocarepe": { + "title": "1q. Language -- Repetition", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "mocaflue": { + "title": "1r. Language -- Fluency", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaabst": { + "title": "1s. Abstraction", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "mocarecn": { + "title": "1t. Delayed recall -- No cue", + "description": "((0-5, 95-98))", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "mocarecc": { + "title": "1u. Delayed recall -- Category cue", + "description": "((0-5; 88=not applicable))", + "type": "string", + "pattern": "^[0-5]$|^88$" + }, + "mocarecr": { + "title": "1v. Delayed recall -- Recognition", + "description": "((0-5; 88=not applicable))", + "type": "string", + "pattern": "^[0-5]$|^88$" + }, + "mocaordt": { + "title": "1w. Orientation -- Date", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaormo": { + "title": "1x. Orientation -- Month", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaoryr": { + "title": "1y. Orientation -- Year", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaordy": { + "title": "1z. Orientation -- Day", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaorpl": { + "title": "1aa. Orientation -- Place", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaorct": { + "title": "1bb. Orientation -- City", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + } + } + } + } + }, + "admin_rema_btry": { + "title": "2. ADMINISTRATION OF THE REMAINDER OF THE BATTERY", + "type": "object", + "properties": { + "npsycloc_c2": { + "title": "2a. The tests following the MoCA were administered:", + "type": "string", + "enum": [ + "1 In ADC or clinic", + "2 In home", + "3 In person - other" + ] + }, + "npsylan_c2": { + "title": "2b. Test following MoCA: Language of test administration.", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other(SPECIFY BELOW):" + ] + }, + "npsylanx_c2": { + "title": "2b1. Other language of tests following the MoCA:", + "type": "string" + } + } + }, + "crft_stry_recl": { + "title": "3. Craft Story 21 Recall (Immediate)", + "type": "object", + "properties": { + "craftvrs": { + "title": "3a. Total story units recalled, verbatim scoring", + "description": "( If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 4a. )((0-44, 95-98))", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^[4][0-4]$|^95$|^96$|^97$|^98$" + }, + "crafturs": { + "title": "3b. Total story units recalled, paraphrase scoring (0-25)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-5]$" + } + } + }, + "bens_cplx_figr": { + "title": "4. Benson Complex Figure Copy", + "type": "object", + "properties": { + "udsbentc": { + "title": "4a. Total score for copy of Benson figure", + "description": "(If test not completed, enter reason code, 95-98)((0-17, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "numb_span_test_fwd": { + "title": "5. Number Span Test: Forward", + "type": "object", + "properties": { + "digforct": { + "title": "5a. Number of correct trials", + "description": "(If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 6a.)((0-14, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-4]$|^95$|^96$|^97$|^98$" + }, + "digforsl": { + "title": "5b. Longest span forward", + "description": "(0, 3-9)", + "type": "string", + "pattern": "^[0]$|^[3-9]$" + } + } + }, + "numb_span_test_bkwd": { + "title": "6. Number Span Test: Backward", + "type": "object", + "properties": { + "digbacct": { + "title": "6a. Number of correct trials", + "description": "(If test not completed, enter reason code,95-98, and SKIP TO QUESTION 7a.)((0-14, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-4]$|^95$|^96$|^97$|^98$" + }, + "digbacls": { + "title": "6b. Longest span backward", + "description": "(0, 2-8)", + "type": "string", + "pattern": "^[0]$|^[2-8]$" + } + } + }, + "category_fluency": { + "title": "7. Category Fluency", + "type": "object", + "properties": { + "animals_c2": { + "title": "7a. Animals: Total number of animals named in 60 second", + "description": "(If test not completed, enter reason code, 95-98)(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^[7][0-7]$|^95$|^96$|^97$|^98$" + }, + "veg_c2": { + "title": "7b. Vegetables: Total number of vegetables named in 60 second", + "description": "(If test not completed, enter reason code, 95-98)(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^[7][0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "trail_make_test": { + "title": "8. Trail Making Test", + "type": "object", + "properties": { + "traila_c2": { + "title": "8a. PART A: Total number of seconds to complete ", + "description": "(if not finished by 150 seconds, enter 150) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b.) (0-150, 995-998)", + "type": "string", + "pattern": "^[1-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^995$|^996$|^997$|^998$" + }, + "trailarr_c2": { + "title": "8a1. Number of commission errors", + "description": "(0-40)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$" + }, + "trailali_c2": { + "title": "8a2. Number of correct lines", + "description": "(0-24)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-4]$" + }, + "trailb_c2": { + "title": "8b. PART B: Total number of seconds to complete ", + "description": "(if not finished by 300 seconds, enter 300) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a.) (0-300, 995-998)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1-2][0-9][0-9]$|^300$|^995$|^996$|^997$|^998$" + }, + "trailbrr_c2": { + "title": "8b1. Number of commission errors", + "description": "(0-40)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$" + }, + "trailbli_c2": { + "title": "8b2. Number of correct lines", + "description": "(0-24)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-4]$" + } + } + }, + "crft_stry_recl_dely": { + "title": "9. Craft Story 21 recall (Delayed)", + "description": "((0-44, 95-98))", + "type": "object", + "properties": { + "craftdvr": { + "title": "9a. Total story units recalled, verbatim scoring", + "description": "( If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 10a. )", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^[4][0-4]$|^95$|^96$|^97$|^98$" + }, + "craftdre": { + "title": "9b. Total story units recalled, paraphrase scoring (0-25)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-5]$" + }, + "craftdti": { + "title": "9c. Delay time (minutes) (99=Unknown) ", + "description": "(0-85 minutes 99=Unknown)", + "type": "string", + "pattern": "^[1-7]?[0-9]$|^[8][0-5]$|^99$" + }, + "craftcue": { + "title": "9d. Cue (\"boy\") needed", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "bens_cplx_figr_recl": { + "title": "10. Benson Complex Figure Recall", + "type": "object", + "properties": { + "udsbentd": { + "title": "10a. Total score for drawing of Benson figure following 10- to 15-minute delay", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 11a.) ((0-17, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-7]$|^95$|^96$|^97$|^98$" + }, + "udsbenrs": { + "title": "10b. Recognized original stimulus from among four options? ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "mint": { + "title": "11. Multilingual Naming Test (MINT)", + "description": "(0-32, 95-98)", + "type": "object", + "properties": { + "minttots": { + "title": "11a. Total score", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12a.) ", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$|^95$|^96$|^97$|^98$" + }, + "minttotw": { + "title": "11b. Total correct without semantic cue", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$" + }, + "mintscng": { + "title": "11c. Semantic cues: Number given", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$" + }, + "mintscnc": { + "title": "11d. Semantic cues: Number correct with cue (88=not applicable) ", + "description": "(0-32, 88)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$|^88$" + }, + "mintpcng": { + "title": "11e. Phonemic cues: Number given", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$" + }, + "mintpcnc": { + "title": "11f. Phonemic cues: Number correct with cue (88=not applicable) ", + "description": "(0-32, 88)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$|^88$" + } + } + }, + "verb_fluency_phone_test": { + "title": "12. Verbal Fluency: Phonemic Test", + "type": "object", + "properties": { + "udsverfc": { + "title": "12a. Number of correct F-words generated in 1 minute", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12d.) (0-40, 95-98)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^95$|^96$|^97$|^98$" + }, + "udsverfn": { + "title": "12b. Number of F-words repeated in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsvernf": { + "title": "12c. Number of F-words and rule violation errors in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsverlc": { + "title": "12d. Number of correct L-words generated in 1 minute ", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 13a.) (0-40, 95-98)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^95$|^96$|^97$|^98$" + }, + "udsverlr": { + "title": "12e. Number of L-words repeated in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsverln": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsvertn": { + "title": "12g. TOTAL number of correct F-words and L-words ", + "description": "(0-80)", + "type": "string", + "pattern": "^[1-7]?[0-9]$|^80$" + }, + "udsverte": { + "title": "12h. TOTAL number of F-words and L-words repetition errors", + "description": "(0-30)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$" + }, + "udsverti": { + "title": "12i. TOTAL number of non-F/L words and rule violation errors", + "description": "(0-30)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$" + } + } + }, + "overall_aprsl": { + "title": "13. Overall appraisal", + "type": "object", + "properties": { + "cogstat_c2": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS Neuropsychological examination, the subject's cognitive status is deemed:", + "type": "string", + "enum": [ + "1 Better than normal for age", + "2 Normal for age", + "3 One or two test scores are abnormal", + "4 Three or more scores are abnormal or lower than expected", + "0 Clinician unable to render opinion" + ] + } + } + } + }, + "boost_values": { + "status": 1.0, + "moca.mocacomp": 1.0, + "moca.mocareas": 1.0, + "moca.mocaloc": 1.0, + "moca.mocalan": 1.0, + "moca.mocalanx": 1.0, + "moca.mocavis": 1.0, + "moca.mocahear": 1.0, + "moca.mocatots": 1.0, + "moca.alert_mocatots.mocatrai": 1.0, + "moca.alert_mocatots.mocacube": 1.0, + "moca.alert_mocatots.mocacloc": 1.0, + "moca.alert_mocatots.mocaclon": 1.0, + "moca.alert_mocatots.mocacloh": 1.0, + "moca.alert_mocatots.mocanami": 1.0, + "moca.alert_mocatots.mocaregi": 1.0, + "moca.alert_mocatots.mocadigi": 1.0, + "moca.alert_mocatots.mocalett": 1.0, + "moca.alert_mocatots.mocaser7": 1.0, + "moca.alert_mocatots.mocarepe": 1.0, + "moca.alert_mocatots.mocaflue": 1.0, + "moca.alert_mocatots.mocaabst": 1.0, + "moca.alert_mocatots.mocarecn": 1.0, + "moca.alert_mocatots.mocarecc": 1.0, + "moca.alert_mocatots.mocarecr": 1.0, + "moca.alert_mocatots.mocaordt": 1.0, + "moca.alert_mocatots.mocaormo": 1.0, + "moca.alert_mocatots.mocaoryr": 1.0, + "moca.alert_mocatots.mocaordy": 1.0, + "moca.alert_mocatots.mocaorpl": 1.0, + "moca.alert_mocatots.mocaorct": 1.0, + "admin_rema_btry.npsycloc_c2": 1.0, + "admin_rema_btry.npsylan_c2": 1.0, + "admin_rema_btry.npsylanx_c2": 1.0, + "crft_stry_recl.craftvrs": 1.0, + "crft_stry_recl.crafturs": 1.0, + "bens_cplx_figr.udsbentc": 1.0, + "numb_span_test_fwd.digforct": 1.0, + "numb_span_test_fwd.digforsl": 1.0, + "numb_span_test_bkwd.digbacct": 1.0, + "numb_span_test_bkwd.digbacls": 1.0, + "category_fluency.animals_c2": 1.0, + "category_fluency.veg_c2": 1.0, + "trail_make_test.traila_c2": 1.0, + "trail_make_test.trailarr_c2": 1.0, + "trail_make_test.trailali_c2": 1.0, + "trail_make_test.trailb_c2": 1.0, + "trail_make_test.trailbrr_c2": 1.0, + "trail_make_test.trailbli_c2": 1.0, + "crft_stry_recl_dely.craftdvr": 1.0, + "crft_stry_recl_dely.craftdre": 1.0, + "crft_stry_recl_dely.craftdti": 1.0, + "crft_stry_recl_dely.craftcue": 1.0, + "bens_cplx_figr_recl.udsbentd": 1.0, + "bens_cplx_figr_recl.udsbenrs": 1.0, + "mint.minttots": 1.0, + "mint.minttotw": 1.0, + "mint.mintscng": 1.0, + "mint.mintscnc": 1.0, + "mint.mintpcng": 1.0, + "mint.mintpcnc": 1.0, + "verb_fluency_phone_test.udsverfc": 1.0, + "verb_fluency_phone_test.udsverfn": 1.0, + "verb_fluency_phone_test.udsvernf": 1.0, + "verb_fluency_phone_test.udsverlc": 1.0, + "verb_fluency_phone_test.udsverlr": 1.0, + "verb_fluency_phone_test.udsverln": 1.0, + "verb_fluency_phone_test.udsvertn": 1.0, + "verb_fluency_phone_test.udsverte": 1.0, + "verb_fluency_phone_test.udsverti": 1.0, + "overall_aprsl.cogstat_c2": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_c2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_c2v2.json b/src/encoded/schemas/ivp_c2v2.json new file mode 100644 index 0000000000..4e57dff20a --- /dev/null +++ b/src/encoded/schemas/ivp_c2v2.json @@ -0,0 +1,1092 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm C2: Neuropsychological BatterScores", + "description": "INSTRUCTIONS: This form is to be completed by ADC or clinic staff. For test administration and scoring, see \nInstructions for Neuropsychological Battery Form C2. Link to C2 Instructions . Any new subjects who enroll in \nthe UDS after the implementation of UDS3 must be assessed with the new neuropsychological test battery (Form \nC2).\nKEY: If the subject cannot complete any of the following exams, please give the reason by entering one of the \nfollowing codes:\n95/995=Physical problem\n96/996=Cognitive/behavior problem\n97/997=Other problem\n98/998=Verbal refusal", + "id": "/profiles/ivp_c2v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "moca", + "admin_rema_btry", + "crft_stry_recl", + "bens_cplx_figr", + "numb_span_test_fwd", + "numb_span_test_bkwd", + "category_fluency", + "trail_make_test", + "crft_stry_recl_dely", + "bens_cplx_figr_recl", + "mint", + "verb_fluency_phone_test" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_c2.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "moca": { + "title": "1. Montreal Cognitive Assessment (MoCA)", + "type": "object", + "properties": { + "mocacomp": { + "title": "1a. Was any part of the MoCA administered?", + "type": "string", + "enum": [ + "0 No (If No, enter reason code, 95-98) below in\nQuestion 1a1 and (SKIP TO QUESTION 2a)", + "1 Yes (CONTINUE WITH QUESTION 1b)" + ] + }, + "mocareas": { + "title": "1a1. Was any part of MoCA administered? If no, enter reason code, 95-98)", + "type": "string", + "enum": [ + "95 = Physical problem", + "96 = Cognitive/behavior problem", + "97 = Other problem", + "98 = Verbal refusal" + ] + }, + "mocaloc": { + "title": "1b. MoCA was administered:", + "type": "string", + "enum": [ + "1 In ADC or clinic", + "2 In home", + "3 In person - other" + ] + }, + "mocalan": { + "title": "1c. Language of MoCA administration:", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other(SPECIFY BELOW):" + ] + }, + "mocalanx": { + "title": "1c1. Specify language of MoCA administration", + "type": "string" + }, + "mocavis": { + "title": "1d. Subject was unable to complete one or more sections due to visual impairment: ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mocahear": { + "title": "1e. Subject was unable to complete one or more sections due to hearing impairment: ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mocatots": { + "title": "1f. TOTAL RAW SCORE - UNCORRECTED (Not corrected for education or visual/hearing impairment)  ", + "description": "((0-30, 88))(Enter 88 if any of the following MoCA items were not administered: 1g-1l, 1n-1t, 1w-1bb)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$|^88$" + }, + "alert_mocatots": { + "title": "WARNING - a value of 88 should be entered in the box above. At least one of the following MoCA items was not administered: 1g-1l, 1n-1t, 1w-1bb.", + "type": "object", + "properties": { + "mocatrai": { + "title": "1g. Visuospatial/executive -- Trails", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocacube": { + "title": "1h. Visuospatial/executive -- Cube", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocacloc": { + "title": "1i. Visuospatial/executive -- Clock contour", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaclon": { + "title": "1j. Visuospatial/executive -- Clock numbers", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocacloh": { + "title": "1k. Visuospatial/executive -- Clock hands", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocanami": { + "title": "1l. Language -- Naming", + "type": "string", + "pattern": "^[0-3]$|^95$|^96$|^97$|^98$" + }, + "mocaregi": { + "title": "1m. Memory -- Registration (two trials)", + "description": "((0-10, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^10$|^95$|^96$|^97$|^98$" + }, + "mocadigi": { + "title": "1n. Attention -- Digits", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "mocalett": { + "title": "1o. Attention -- Letter A", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaser7": { + "title": "1p. Attention -- Serial 7s", + "description": "((0-3, 95-98))", + "type": "string", + "pattern": "^[0-3]$|^95$|^96$|^97$|^98$" + }, + "mocarepe": { + "title": "1q. Language -- Repetition", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "mocaflue": { + "title": "1r. Language -- Fluency", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaabst": { + "title": "1s. Abstraction", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "mocarecn": { + "title": "1t. Delayed recall -- No cue", + "description": "((0-5, 95-98))", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "mocarecc": { + "title": "1u. Delayed recall -- Category cue", + "description": "((0-5; 88=not applicable))", + "type": "string", + "pattern": "^[0-5]$|^88$" + }, + "mocarecr": { + "title": "1v. Delayed recall -- Recognition", + "description": "((0-5; 88=not applicable))", + "type": "string", + "pattern": "^[0-5]$|^88$" + }, + "mocaordt": { + "title": "1w. Orientation -- Date", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaormo": { + "title": "1x. Orientation -- Month", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaoryr": { + "title": "1y. Orientation -- Year", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaordy": { + "title": "1z. Orientation -- Day", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaorpl": { + "title": "1aa. Orientation -- Place", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaorct": { + "title": "1bb. Orientation -- City", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + } + } + } + } + }, + "admin_rema_btry": { + "title": "2. ADMINISTRATION OF THE REMAINDER OF THE BATTERY", + "type": "object", + "properties": { + "npsycloc_c2": { + "title": "2a. The tests following the MoCA were administered:", + "type": "string", + "enum": [ + "1 In ADC or clinic", + "2 In home", + "3 In person - other" + ] + }, + "npsylan_c2": { + "title": "2b. Test following MoCA: Language of test administration.", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other(SPECIFY BELOW):" + ] + }, + "npsylanx_c2": { + "title": "2b1. Other language of tests following the MoCA:", + "type": "string" + } + } + }, + "crft_stry_recl": { + "title": "3. Craft Story 21 Recall (Immediate)", + "type": "object", + "properties": { + "craftvrs": { + "title": "3a. Total story units recalled, verbatim scoring", + "description": "( If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 4a. )((0-44, 95-98))", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^[4][0-4]$|^95$|^96$|^97$|^98$" + }, + "crafturs": { + "title": "3b. Total story units recalled, paraphrase scoring (0-25)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-5]$" + } + } + }, + "bens_cplx_figr": { + "title": "4. Benson Complex Figure Copy", + "type": "object", + "properties": { + "udsbentc": { + "title": "4a. Total score for copy of Benson figure", + "description": "(If test not completed, enter reason code, 95-98)((0-17, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "numb_span_test_fwd": { + "title": "5. Number Span Test: Forward", + "type": "object", + "properties": { + "digforct": { + "title": "5a. Number of correct trials", + "description": "(If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 6a.)((0-14, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-4]$|^95$|^96$|^97$|^98$" + }, + "digforsl": { + "title": "5b. Longest span forward", + "description": "(0, 3-9)", + "type": "string", + "pattern": "^[0]$|^[3-9]$" + } + } + }, + "numb_span_test_bkwd": { + "title": "6. Number Span Test: Backward", + "type": "object", + "properties": { + "digbacct": { + "title": "6a. Number of correct trials", + "description": "(If test not completed, enter reason code,95-98, and SKIP TO QUESTION 7a.)((0-14, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-4]$|^95$|^96$|^97$|^98$" + }, + "digbacls": { + "title": "6b. Longest span backward", + "description": "(0, 2-8)", + "type": "string", + "pattern": "^[0]$|^[2-8]$" + } + } + }, + "category_fluency": { + "title": "7. Category Fluency", + "type": "object", + "properties": { + "animals_c2": { + "title": "7a. Animals: Total number of animals named in 60 second", + "description": "(If test not completed, enter reason code, 95-98)(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^[7][0-7]$|^95$|^96$|^97$|^98$" + }, + "veg_c2": { + "title": "7b. Vegetables: Total number of vegetables named in 60 second", + "description": "(If test not completed, enter reason code, 95-98)(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^[7][0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "trail_make_test": { + "title": "8. Trail Making Test", + "type": "object", + "properties": { + "traila_c2": { + "title": "8a. PART A: Total number of seconds to complete ", + "description": "(if not finished by 150 seconds, enter 150) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b.) (0-150, 995-998)", + "type": "string", + "pattern": "^[1-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^995$|^996$|^997$|^998$" + }, + "trailarr_c2": { + "title": "8a1. Number of commission errors", + "description": "(0-40)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$" + }, + "trailali_c2": { + "title": "8a2. Number of correct lines", + "description": "(0-24)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-4]$" + }, + "trailb_c2": { + "title": "8b. PART B: Total number of seconds to complete ", + "description": "(if not finished by 300 seconds, enter 300) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a.) (0-300, 995-998)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1-2][0-9][0-9]$|^300$|^995$|^996$|^997$|^998$" + }, + "trailbrr_c2": { + "title": "8b1. Number of commission errors", + "description": "(0-40)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$" + }, + "trailbli_c2": { + "title": "8b2. Number of correct lines", + "description": "(0-24)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-4]$" + } + } + }, + "crft_stry_recl_dely": { + "title": "9. Craft Story 21 recall (Delayed)", + "description": "((0-44, 95-98))", + "type": "object", + "properties": { + "craftdvr": { + "title": "9a. Total story units recalled, verbatim scoring", + "description": "( If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 10a. )", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^[4][0-4]$|^95$|^96$|^97$|^98$" + }, + "craftdre": { + "title": "9b. Total story units recalled, paraphrase scoring (0-25)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-5]$" + }, + "craftdti": { + "title": "9c. Delay time (minutes) (99=Unknown) ", + "description": "(0-85 minutes 99=Unknown)", + "type": "string", + "pattern": "^[1-7]?[0-9]$|^[8][0-5]$|^99$" + }, + "craftcue": { + "title": "9d. Cue (\"boy\") needed", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "bens_cplx_figr_recl": { + "title": "10. Benson Complex Figure Recall", + "type": "object", + "properties": { + "udsbentd": { + "title": "10a. Total score for drawing of Benson figure following 10- to 15-minute delay", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 11a.) ((0-17, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-7]$|^95$|^96$|^97$|^98$" + }, + "udsbenrs": { + "title": "10b. Recognized original stimulus from among four options? ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "mint": { + "title": "11. Multilingual Naming Test (MINT)", + "description": "(0-32, 95-98)", + "type": "object", + "properties": { + "minttots": { + "title": "11a. Total score", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12a.) ", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$|^95$|^96$|^97$|^98$" + }, + "minttotw": { + "title": "11b. Total correct without semantic cue", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$" + }, + "mintscng": { + "title": "11c. Semantic cues: Number given", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$" + }, + "mintscnc": { + "title": "11d. Semantic cues: Number correct with cue (88=not applicable) ", + "description": "(0-32, 88)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$|^88$" + }, + "mintpcng": { + "title": "11e. Phonemic cues: Number given", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$" + }, + "mintpcnc": { + "title": "11f. Phonemic cues: Number correct with cue (88=not applicable) ", + "description": "(0-32, 88)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$|^88$" + } + } + }, + "verb_fluency_phone_test": { + "title": "12. Verbal Fluency: Phonemic Test", + "type": "object", + "properties": { + "udsverfc": { + "title": "12a. Number of correct F-words generated in 1 minute", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12d.) (0-40, 95-98)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^95$|^96$|^97$|^98$" + }, + "udsverfn": { + "title": "12b. Number of F-words repeated in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsvernf": { + "title": "12c. Number of F-words and rule violation errors in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsverlc": { + "title": "12d. Number of correct L-words generated in 1 minute ", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 13a.) (0-40, 95-98)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^95$|^96$|^97$|^98$" + }, + "udsverlr": { + "title": "12e. Number of L-words repeated in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsverln": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsvertn": { + "title": "12g. TOTAL number of correct F-words and L-words ", + "description": "(0-80)", + "type": "string", + "pattern": "^[1-7]?[0-9]$|^80$" + }, + "udsverte": { + "title": "12h. TOTAL number of F-words and L-words repetition errors", + "description": "(0-30)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$" + }, + "udsverti": { + "title": "12i. TOTAL number of non-F/L words and rule violation errors", + "description": "(0-30)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$" + } + } + }, + "overall_aprsl": { + "title": "13. Overall appraisal", + "type": "object", + "properties": { + "cogstat_c2": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS Neuropsychological examination, the subject's cognitive status is deemed:", + "type": "string", + "enum": [ + "1 Better than normal for age", + "2 Normal for age", + "3 One or two test scores are abnormal", + "4 Three or more scores are abnormal or lower than expected", + "0 Clinician unable to render opinion" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "moca.mocacomp": { + "title": "1a. Was any part of the MoCA administered? " + }, + "moca.mocareas": { + "title": "1a1. Was any part of MoCA administered? If no, enter reason code, 95-98) " + }, + "moca.mocaloc": { + "title": "1b. MoCA was administered: " + }, + "moca.mocalan": { + "title": "1c. Language of MoCA administration: " + }, + "moca.mocalanx": { + "title": "1c1. Specify language of MoCA administration " + }, + "moca.mocavis": { + "title": "1d. Subject was unable to complete one or more sections due to visual impairment: " + }, + "moca.mocahear": { + "title": "1e. Subject was unable to complete one or more sections due to hearing impairment: " + }, + "moca.mocatots": { + "title": "1f. TOTAL RAW SCORE - UNCORRECTED (Not corrected for education or visual/hearing impairment)  " + }, + "moca.alert_mocatots.mocatrai": { + "title": "1g. Visuospatial/executive -- Trails " + }, + "moca.alert_mocatots.mocacube": { + "title": "1h. Visuospatial/executive -- Cube " + }, + "moca.alert_mocatots.mocacloc": { + "title": "1i. Visuospatial/executive -- Clock contour " + }, + "moca.alert_mocatots.mocaclon": { + "title": "1j. Visuospatial/executive -- Clock numbers " + }, + "moca.alert_mocatots.mocacloh": { + "title": "1k. Visuospatial/executive -- Clock hands " + }, + "moca.alert_mocatots.mocanami": { + "title": "1l. Language -- Naming " + }, + "moca.alert_mocatots.mocaregi": { + "title": "1m. Memory -- Registration (two trials) " + }, + "moca.alert_mocatots.mocadigi": { + "title": "1n. Attention -- Digits " + }, + "moca.alert_mocatots.mocalett": { + "title": "1o. Attention -- Letter A " + }, + "moca.alert_mocatots.mocaser7": { + "title": "1p. Attention -- Serial 7s " + }, + "moca.alert_mocatots.mocarepe": { + "title": "1q. Language -- Repetition " + }, + "moca.alert_mocatots.mocaflue": { + "title": "1r. Language -- Fluency " + }, + "moca.alert_mocatots.mocaabst": { + "title": "1s. Abstraction " + }, + "moca.alert_mocatots.mocarecn": { + "title": "1t. Delayed recall -- No cue " + }, + "moca.alert_mocatots.mocarecc": { + "title": "1u. Delayed recall -- Category cue " + }, + "moca.alert_mocatots.mocarecr": { + "title": "1v. Delayed recall -- Recognition " + }, + "moca.alert_mocatots.mocaordt": { + "title": "1w. Orientation -- Date " + }, + "moca.alert_mocatots.mocaormo": { + "title": "1x. Orientation -- Month " + }, + "moca.alert_mocatots.mocaoryr": { + "title": "1y. Orientation -- Year " + }, + "moca.alert_mocatots.mocaordy": { + "title": "1z. Orientation -- Day " + }, + "moca.alert_mocatots.mocaorpl": { + "title": "1aa. Orientation -- Place " + }, + "moca.alert_mocatots.mocaorct": { + "title": "1bb. Orientation -- City " + }, + "admin_rema_btry.npsycloc_c2": { + "title": "2a. The tests following the MoCA were administered: " + }, + "admin_rema_btry.npsylan_c2": { + "title": "2b. Test following MoCA: Language of test administration. " + }, + "admin_rema_btry.npsylanx_c2": { + "title": "2b1. Other language of tests following the MoCA: " + }, + "crft_stry_recl.craftvrs": { + "title": "3a. Total story units recalled, verbatim scoring " + }, + "crft_stry_recl.crafturs": { + "title": "3b. Total story units recalled, paraphrase scoring (0-25) " + }, + "bens_cplx_figr.udsbentc": { + "title": "4a. Total score for copy of Benson figure " + }, + "numb_span_test_fwd.digforct": { + "title": "5a. Number of correct trials " + }, + "numb_span_test_fwd.digforsl": { + "title": "5b. Longest span forward " + }, + "numb_span_test_bkwd.digbacct": { + "title": "6a. Number of correct trials " + }, + "numb_span_test_bkwd.digbacls": { + "title": "6b. Longest span backward " + }, + "category_fluency.animals_c2": { + "title": "7a. Animals: Total number of animals named in 60 second " + }, + "category_fluency.veg_c2": { + "title": "7b. Vegetables: Total number of vegetables named in 60 second " + }, + "trail_make_test.traila_c2": { + "title": "8a. PART A: Total number of seconds to complete " + }, + "trail_make_test.trailarr_c2": { + "title": "8a1. Number of commission errors " + }, + "trail_make_test.trailali_c2": { + "title": "8a2. Number of correct lines " + }, + "trail_make_test.trailb_c2": { + "title": "8b. PART B: Total number of seconds to complete " + }, + "trail_make_test.trailbrr_c2": { + "title": "8b1. Number of commission errors " + }, + "trail_make_test.trailbli_c2": { + "title": "8b2. Number of correct lines " + }, + "crft_stry_recl_dely.craftdvr": { + "title": "9a. Total story units recalled, verbatim scoring " + }, + "crft_stry_recl_dely.craftdre": { + "title": "9b. Total story units recalled, paraphrase scoring (0-25) " + }, + "crft_stry_recl_dely.craftdti": { + "title": "9c. Delay time (minutes) (99=Unknown)" + }, + "crft_stry_recl_dely.craftcue": { + "title": "9d. Cue (\"boy\") needed " + }, + "bens_cplx_figr_recl.udsbentd": { + "title": "10a. Total score for drawing of Benson figure following 10- to 15-minute delay" + }, + "bens_cplx_figr_recl.udsbenrs": { + "title": "10b. Recognized original stimulus from among four options?" + }, + "mint.minttots": { + "title": "11a. Total score " + }, + "mint.minttotw": { + "title": "11b. Total correct without semantic cue" + }, + "mint.mintscng": { + "title": "11c. Semantic cues: Number given" + }, + "mint.mintscnc": { + "title": "11d. Semantic cues: Number correct with cue (88=not applicable)" + }, + "mint.mintpcng": { + "title": "11e. Phonemic cues: Number given" + }, + "mint.mintpcnc": { + "title": "11f. Phonemic cues: Number correct with cue (88=not applicable)" + }, + "verb_fluency_phone_test.udsverfc": { + "title": "12a. Number of correct F-words generated in 1 minute" + }, + "verb_fluency_phone_test.udsverfn": { + "title": "12b. Number of F-words repeated in 1 minute" + }, + "verb_fluency_phone_test.udsvernf": { + "title": "12c. Number of F-words and rule violation errors in 1 minute " + }, + "verb_fluency_phone_test.udsverlc": { + "title": "12d. Number of correct L-words generated in 1 minute" + }, + "verb_fluency_phone_test.udsverlr": { + "title": "12e. Number of L-words repeated in 1 minute " + }, + "verb_fluency_phone_test.udsverln": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute" + }, + "verb_fluency_phone_test.udsvertn": { + "title": "12g. TOTAL number of correct F-words and L-words" + }, + "verb_fluency_phone_test.udsverte": { + "title": "12h. TOTAL number of F-words and L-words repetition errors" + }, + "verb_fluency_phone_test.udsverti": { + "title": "12i. TOTAL number of non-F/L words and rule violation errors" + }, + "overall_aprsl.cogstat_c2": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS Neuropsychological examination, the subject's cognitive status is deemed: " + } + }, + "columns": { + "status": { + "title": "Status" + }, + "moca.mocacomp": { + "title": "1a. Was any part of the MoCA administered? " + }, + "moca.mocareas": { + "title": "1a1. Was any part of MoCA administered? If no, enter reason code, 95-98) " + }, + "moca.mocaloc": { + "title": "1b. MoCA was administered: " + }, + "moca.mocalan": { + "title": "1c. Language of MoCA administration: " + }, + "moca.mocalanx": { + "title": "1c1. Specify language of MoCA administration " + }, + "moca.mocavis": { + "title": "1d. Subject was unable to complete one or more sections due to visual impairment: " + }, + "moca.mocahear": { + "title": "1e. Subject was unable to complete one or more sections due to hearing impairment: " + }, + "moca.mocatots": { + "title": "1f. TOTAL RAW SCORE - UNCORRECTED (Not corrected for education or visual/hearing impairment)  " + }, + "moca.alert_mocatots.mocatrai": { + "title": "1g. Visuospatial/executive -- Trails " + }, + "moca.alert_mocatots.mocacube": { + "title": "1h. Visuospatial/executive -- Cube " + }, + "moca.alert_mocatots.mocacloc": { + "title": "1i. Visuospatial/executive -- Clock contour " + }, + "moca.alert_mocatots.mocaclon": { + "title": "1j. Visuospatial/executive -- Clock numbers " + }, + "moca.alert_mocatots.mocacloh": { + "title": "1k. Visuospatial/executive -- Clock hands " + }, + "moca.alert_mocatots.mocanami": { + "title": "1l. Language -- Naming " + }, + "moca.alert_mocatots.mocaregi": { + "title": "1m. Memory -- Registration (two trials) " + }, + "moca.alert_mocatots.mocadigi": { + "title": "1n. Attention -- Digits " + }, + "moca.alert_mocatots.mocalett": { + "title": "1o. Attention -- Letter A " + }, + "moca.alert_mocatots.mocaser7": { + "title": "1p. Attention -- Serial 7s " + }, + "moca.alert_mocatots.mocarepe": { + "title": "1q. Language -- Repetition " + }, + "moca.alert_mocatots.mocaflue": { + "title": "1r. Language -- Fluency " + }, + "moca.alert_mocatots.mocaabst": { + "title": "1s. Abstraction " + }, + "moca.alert_mocatots.mocarecn": { + "title": "1t. Delayed recall -- No cue " + }, + "moca.alert_mocatots.mocarecc": { + "title": "1u. Delayed recall -- Category cue " + }, + "moca.alert_mocatots.mocarecr": { + "title": "1v. Delayed recall -- Recognition " + }, + "moca.alert_mocatots.mocaordt": { + "title": "1w. Orientation -- Date " + }, + "moca.alert_mocatots.mocaormo": { + "title": "1x. Orientation -- Month " + }, + "moca.alert_mocatots.mocaoryr": { + "title": "1y. Orientation -- Year " + }, + "moca.alert_mocatots.mocaordy": { + "title": "1z. Orientation -- Day " + }, + "moca.alert_mocatots.mocaorpl": { + "title": "1aa. Orientation -- Place " + }, + "moca.alert_mocatots.mocaorct": { + "title": "1bb. Orientation -- City " + }, + "admin_rema_btry.npsycloc_c2": { + "title": "2a. The tests following the MoCA were administered: " + }, + "admin_rema_btry.npsylan_c2": { + "title": "2b. Test following MoCA: Language of test administration. " + }, + "admin_rema_btry.npsylanx_c2": { + "title": "2b1. Other language of tests following the MoCA: " + }, + "crft_stry_recl.craftvrs": { + "title": "3a. Total story units recalled, verbatim scoring " + }, + "crft_stry_recl.crafturs": { + "title": "3b. Total story units recalled, paraphrase scoring (0-25) " + }, + "bens_cplx_figr.udsbentc": { + "title": "4a. Total score for copy of Benson figure " + }, + "numb_span_test_fwd.digforct": { + "title": "5a. Number of correct trials " + }, + "numb_span_test_fwd.digforsl": { + "title": "5b. Longest span forward " + }, + "numb_span_test_bkwd.digbacct": { + "title": "6a. Number of correct trials " + }, + "numb_span_test_bkwd.digbacls": { + "title": "6b. Longest span backward " + }, + "category_fluency.animals_c2": { + "title": "7a. Animals: Total number of animals named in 60 second " + }, + "category_fluency.veg_c2": { + "title": "7b. Vegetables: Total number of vegetables named in 60 second " + }, + "trail_make_test.traila_c2": { + "title": "8a. PART A: Total number of seconds to complete " + }, + "trail_make_test.trailarr_c2": { + "title": "8a1. Number of commission errors " + }, + "trail_make_test.trailali_c2": { + "title": "8a2. Number of correct lines " + }, + "trail_make_test.trailb_c2": { + "title": "8b. PART B: Total number of seconds to complete " + }, + "trail_make_test.trailbrr_c2": { + "title": "8b1. Number of commission errors " + }, + "trail_make_test.trailbli_c2": { + "title": "8b2. Number of correct lines " + }, + "crft_stry_recl_dely.craftdvr": { + "title": "9a. Total story units recalled, verbatim scoring " + }, + "crft_stry_recl_dely.craftdre": { + "title": "9b. Total story units recalled, paraphrase scoring (0-25) " + }, + "crft_stry_recl_dely.craftdti": { + "title": "9c. Delay time (minutes) (99=Unknown)" + }, + "crft_stry_recl_dely.craftcue": { + "title": "9d. Cue (\"boy\") needed " + }, + "bens_cplx_figr_recl.udsbentd": { + "title": "10a. Total score for drawing of Benson figure following 10- to 15-minute delay" + }, + "bens_cplx_figr_recl.udsbenrs": { + "title": "10b. Recognized original stimulus from among four options?" + }, + "mint.minttots": { + "title": "11a. Total score " + }, + "mint.minttotw": { + "title": "11b. Total correct without semantic cue" + }, + "mint.mintscng": { + "title": "11c. Semantic cues: Number given" + }, + "mint.mintscnc": { + "title": "11d. Semantic cues: Number correct with cue (88=not applicable)" + }, + "mint.mintpcng": { + "title": "11e. Phonemic cues: Number given" + }, + "mint.mintpcnc": { + "title": "11f. Phonemic cues: Number correct with cue (88=not applicable)" + }, + "verb_fluency_phone_test.udsverfc": { + "title": "12a. Number of correct F-words generated in 1 minute" + }, + "verb_fluency_phone_test.udsverfn": { + "title": "12b. Number of F-words repeated in 1 minute" + }, + "verb_fluency_phone_test.udsvernf": { + "title": "12c. Number of F-words and rule violation errors in 1 minute " + }, + "verb_fluency_phone_test.udsverlc": { + "title": "12d. Number of correct L-words generated in 1 minute" + }, + "verb_fluency_phone_test.udsverlr": { + "title": "12e. Number of L-words repeated in 1 minute " + }, + "verb_fluency_phone_test.udsverln": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute" + }, + "verb_fluency_phone_test.udsvertn": { + "title": "12g. TOTAL number of correct F-words and L-words" + }, + "verb_fluency_phone_test.udsverte": { + "title": "12h. TOTAL number of F-words and L-words repetition errors" + }, + "verb_fluency_phone_test.udsverti": { + "title": "12i. TOTAL number of non-F/L words and rule violation errors" + }, + "overall_aprsl.cogstat_c2": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS Neuropsychological examination, the subject's cognitive status is deemed: " + } + }, + "boost_values": { + + "status": 1.0, + "moca.mocacomp": 1.0, + "moca.mocareas": 1.0, + "moca.mocaloc": 1.0, + "moca.mocalan": 1.0, + "moca.mocalanx": 1.0, + "moca.mocavis": 1.0, + "moca.mocahear": 1.0, + "moca.mocatots": 1.0, + "moca.alert_mocatots.mocatrai": 1.0, + "moca.alert_mocatots.mocacube": 1.0, + "moca.alert_mocatots.mocacloc": 1.0, + "moca.alert_mocatots.mocaclon": 1.0, + "moca.alert_mocatots.mocacloh": 1.0, + "moca.alert_mocatots.mocanami": 1.0, + "moca.alert_mocatots.mocaregi": 1.0, + "moca.alert_mocatots.mocadigi": 1.0, + "moca.alert_mocatots.mocalett": 1.0, + "moca.alert_mocatots.mocaser7": 1.0, + "moca.alert_mocatots.mocarepe": 1.0, + "moca.alert_mocatots.mocaflue": 1.0, + "moca.alert_mocatots.mocaabst": 1.0, + "moca.alert_mocatots.mocarecn": 1.0, + "moca.alert_mocatots.mocarecc": 1.0, + "moca.alert_mocatots.mocarecr": 1.0, + "moca.alert_mocatots.mocaordt": 1.0, + "moca.alert_mocatots.mocaormo": 1.0, + "moca.alert_mocatots.mocaoryr": 1.0, + "moca.alert_mocatots.mocaordy": 1.0, + "moca.alert_mocatots.mocaorpl": 1.0, + "moca.alert_mocatots.mocaorct": 1.0, + "admin_rema_btry.npsycloc_c2": 1.0, + "admin_rema_btry.npsylan_c2": 1.0, + "admin_rema_btry.npsylanx_c2": 1.0, + "crft_stry_recl.craftvrs": 1.0, + "crft_stry_recl.crafturs": 1.0, + "bens_cplx_figr.udsbentc": 1.0, + "numb_span_test_fwd.digforct": 1.0, + "numb_span_test_fwd.digforsl": 1.0, + "numb_span_test_bkwd.digbacct": 1.0, + "numb_span_test_bkwd.digbacls": 1.0, + "category_fluency.animals_c2": 1.0, + "category_fluency.veg_c2": 1.0, + "trail_make_test.traila_c2": 1.0, + "trail_make_test.trailarr_c2": 1.0, + "trail_make_test.trailali_c2": 1.0, + "trail_make_test.trailb_c2": 1.0, + "trail_make_test.trailbrr_c2": 1.0, + "trail_make_test.trailbli_c2": 1.0, + "crft_stry_recl_dely.craftdvr": 1.0, + "crft_stry_recl_dely.craftdre": 1.0, + "crft_stry_recl_dely.craftdti": 1.0, + "crft_stry_recl_dely.craftcue": 1.0, + "bens_cplx_figr_recl.udsbentd": 1.0, + "bens_cplx_figr_recl.udsbenrs": 1.0, + "mint.minttots": 1.0, + "mint.minttotw": 1.0, + "mint.mintscng": 1.0, + "mint.mintscnc": 1.0, + "mint.mintpcng": 1.0, + "mint.mintpcnc": 1.0, + "verb_fluency_phone_test.udsverfc": 1.0, + "verb_fluency_phone_test.udsverfn": 1.0, + "verb_fluency_phone_test.udsvernf": 1.0, + "verb_fluency_phone_test.udsverlc": 1.0, + "verb_fluency_phone_test.udsverlr": 1.0, + "verb_fluency_phone_test.udsverln": 1.0, + "verb_fluency_phone_test.udsvertn": 1.0, + "verb_fluency_phone_test.udsverte": 1.0, + "verb_fluency_phone_test.udsverti": 1.0, + "overall_aprsl.cogstat_c2": 1.0 + + }, + "changelog": "/profiles/changelogs/ivp_c2v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_c2v3.json b/src/encoded/schemas/ivp_c2v3.json new file mode 100644 index 0000000000..d827835fc8 --- /dev/null +++ b/src/encoded/schemas/ivp_c2v3.json @@ -0,0 +1,1079 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETForm C2: Neuropsychological BatterScores", + "description": "INSTRUCTIONS: This form is to be completed by ADC or clinic staff. For test administration and scoring, see \nInstructions for Neuropsychological Battery Form C2. Link to C2 Instructions . Any new subjects who enroll in \nthe UDS after the implementation of UDS3 must be assessed with the new neuropsychological test battery (Form \nC2).\nKEY: If the subject cannot complete any of the following exams, please give the reason by entering one of the \nfollowing codes:\n95/995=Physical problem\n96/996=Cognitive/behavior problem\n97/997=Other problem\n98/998=Verbal refusal", + "id": "/profiles/ivp_c2v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_c2.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "moca": { + "title": "1. Montreal Cognitive Assessment (MoCA)", + "type": "object", + "properties": { + "mocacomp": { + "title": "1a. Was any part of the MoCA administered?", + "type": "string", + "enum": [ + "0 No (If No, enter reason code, 95-98) below in\nQuestion 1a1 and (SKIP TO QUESTION 2a)", + "1 Yes (CONTINUE WITH QUESTION 1b)" + ] + }, + "mocareas": { + "title": "1a1. Was any part of MoCA administered? If no, enter reason code, 95-98)", + "type": "string", + "enum": [ + "95 = Physical problem", + "96 = Cognitive/behavior problem", + "97 = Other problem", + "98 = Verbal refusal" + ] + }, + "mocaloc": { + "title": "1b. MoCA was administered:", + "type": "string", + "enum": [ + "1 In ADC or clinic", + "2 In home", + "3 In person - other" + ] + }, + "mocalan": { + "title": "1c. Language of MoCA administration:", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other(SPECIFY BELOW):" + ] + }, + "mocalanx": { + "title": "1c1. Specify language of MoCA administration", + "type": "string" + }, + "mocavis": { + "title": "1d. Subject was unable to complete one or more sections due to visual impairment: ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mocahear": { + "title": "1e. Subject was unable to complete one or more sections due to hearing impairment: ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mocatots": { + "title": "1f. TOTAL RAW SCORE - UNCORRECTED (Not corrected for education or visual/hearing impairment)  ", + "description": "((0-30, 88))(Enter 88 if any of the following MoCA items were not administered: 1g-1l, 1n-1t, 1w-1bb)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$|^88$" + }, + "alert_mocatots": { + "title": "WARNING - a value of 88 should be entered in the box above. At least one of the following MoCA items was not administered: 1g-1l, 1n-1t, 1w-1bb.", + "type": "object", + "properties": { + "mocatrai": { + "title": "1g. Visuospatial/executive -- Trails", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocacube": { + "title": "1h. Visuospatial/executive -- Cube", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocacloc": { + "title": "1i. Visuospatial/executive -- Clock contour", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaclon": { + "title": "1j. Visuospatial/executive -- Clock numbers", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocacloh": { + "title": "1k. Visuospatial/executive -- Clock hands", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocanami": { + "title": "1l. Language -- Naming", + "type": "string", + "pattern": "^[0-3]$|^95$|^96$|^97$|^98$" + }, + "mocaregi": { + "title": "1m. Memory -- Registration (two trials)", + "description": "((0-10, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^10$|^95$|^96$|^97$|^98$" + }, + "mocadigi": { + "title": "1n. Attention -- Digits", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "mocalett": { + "title": "1o. Attention -- Letter A", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaser7": { + "title": "1p. Attention -- Serial 7s", + "description": "((0-3, 95-98))", + "type": "string", + "pattern": "^[0-3]$|^95$|^96$|^97$|^98$" + }, + "mocarepe": { + "title": "1q. Language -- Repetition", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "mocaflue": { + "title": "1r. Language -- Fluency", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaabst": { + "title": "1s. Abstraction", + "description": "((0-2, 95-98))", + "type": "string", + "pattern": "^[0-2]$|^95$|^96$|^97$|^98$" + }, + "mocarecn": { + "title": "1t. Delayed recall -- No cue", + "description": "((0-5, 95-98))", + "type": "string", + "pattern": "^[0-5]$|^95$|^96$|^97$|^98$" + }, + "mocarecc": { + "title": "1u. Delayed recall -- Category cue", + "description": "((0-5; 88=not applicable))", + "type": "string", + "pattern": "^[0-5]$|^88$" + }, + "mocarecr": { + "title": "1v. Delayed recall -- Recognition", + "description": "((0-5; 88=not applicable))", + "type": "string", + "pattern": "^[0-5]$|^88$" + }, + "mocaordt": { + "title": "1w. Orientation -- Date", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaormo": { + "title": "1x. Orientation -- Month", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaoryr": { + "title": "1y. Orientation -- Year", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaordy": { + "title": "1z. Orientation -- Day", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaorpl": { + "title": "1aa. Orientation -- Place", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + }, + "mocaorct": { + "title": "1bb. Orientation -- City", + "description": "((0-1, 95-98))", + "type": "string", + "pattern": "^[0-1]$|^95$|^96$|^97$|^98$" + } + } + } + } + }, + "admin_rema_btry": { + "title": "2. ADMINISTRATION OF THE REMAINDER OF THE BATTERY", + "type": "object", + "properties": { + "npsycloc_c2": { + "title": "2a. The tests following the MoCA were administered:", + "type": "string", + "enum": [ + "1 In ADC or clinic", + "2 In home", + "3 In person - other" + ] + }, + "npsylan_c2": { + "title": "2b. Test following MoCA: Language of test administration.", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "3 Other(SPECIFY BELOW):" + ] + }, + "npsylanx_c2": { + "title": "2b1. Other language of tests following the MoCA:", + "type": "string" + } + } + }, + "crft_stry_recl": { + "title": "3. Craft Story 21 Recall (Immediate)", + "type": "object", + "properties": { + "craftvrs": { + "title": "3a. Total story units recalled, verbatim scoring", + "description": "( If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 4a. )((0-44, 95-98))", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^[4][0-4]$|^95$|^96$|^97$|^98$" + }, + "crafturs": { + "title": "3b. Total story units recalled, paraphrase scoring (0-25)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-5]$" + } + } + }, + "bens_cplx_figr": { + "title": "4. Benson Complex Figure Copy", + "type": "object", + "properties": { + "udsbentc": { + "title": "4a. Total score for copy of Benson figure", + "description": "(If test not completed, enter reason code, 95-98)((0-17, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "numb_span_test_fwd": { + "title": "5. Number Span Test: Forward", + "type": "object", + "properties": { + "digforct": { + "title": "5a. Number of correct trials", + "description": "(If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 6a.)((0-14, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-4]$|^95$|^96$|^97$|^98$" + }, + "digforsl": { + "title": "5b. Longest span forward", + "description": "(0, 3-9)", + "type": "string", + "pattern": "^[0]$|^[3-9]$" + } + } + }, + "numb_span_test_bkwd": { + "title": "6. Number Span Test: Backward", + "type": "object", + "properties": { + "digbacct": { + "title": "6a. Number of correct trials", + "description": "(If test not completed, enter reason code,95-98, and SKIP TO QUESTION 7a.)((0-14, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-4]$|^95$|^96$|^97$|^98$" + }, + "digbacls": { + "title": "6b. Longest span backward", + "description": "(0, 2-8)", + "type": "string", + "pattern": "^[0]$|^[2-8]$" + } + } + }, + "category_fluency": { + "title": "7. Category Fluency", + "type": "object", + "properties": { + "animals_c2": { + "title": "7a. Animals: Total number of animals named in 60 second", + "description": "(If test not completed, enter reason code, 95-98)(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^[7][0-7]$|^95$|^96$|^97$|^98$" + }, + "veg_c2": { + "title": "7b. Vegetables: Total number of vegetables named in 60 second", + "description": "(If test not completed, enter reason code, 95-98)(0-77, 95-98)", + "type": "string", + "pattern": "^[1-6]?[0-9]$|^[7][0-7]$|^95$|^96$|^97$|^98$" + } + } + }, + "trail_make_test": { + "title": "8. Trail Making Test", + "type": "object", + "properties": { + "traila_c2": { + "title": "8a. PART A: Total number of seconds to complete ", + "description": "(if not finished by 150 seconds, enter 150) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 8b.) (0-150, 995-998)", + "type": "string", + "pattern": "^[1-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^995$|^996$|^997$|^998$" + }, + "trailarr_c2": { + "title": "8a1. Number of commission errors", + "description": "(0-40)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$" + }, + "trailali_c2": { + "title": "8a2. Number of correct lines", + "description": "(0-24)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-4]$" + }, + "trailb_c2": { + "title": "8b. PART B: Total number of seconds to complete ", + "description": "(if not finished by 300 seconds, enter 300) (If test not completed, enter reason code, 995-998, and SKIP TO QUESTION 9a.) (0-300, 995-998)", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1-2][0-9][0-9]$|^300$|^995$|^996$|^997$|^998$" + }, + "trailbrr_c2": { + "title": "8b1. Number of commission errors", + "description": "(0-40)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$" + }, + "trailbli_c2": { + "title": "8b2. Number of correct lines", + "description": "(0-24)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-4]$" + } + } + }, + "crft_stry_recl_dely": { + "title": "9. Craft Story 21 recall (Delayed)", + "description": "((0-44, 95-98))", + "type": "object", + "properties": { + "craftdvr": { + "title": "9a. Total story units recalled, verbatim scoring", + "description": "( If test not completed, enter reason code, 95-98, and SKIP TO QUESTION 10a. )", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^[4][0-4]$|^95$|^96$|^97$|^98$" + }, + "craftdre": { + "title": "9b. Total story units recalled, paraphrase scoring (0-25)", + "type": "string", + "pattern": "^[1]?[0-9]$|^[2][0-5]$" + }, + "craftdti": { + "title": "9c. Delay time (minutes) (99=Unknown) ", + "description": "(0-85 minutes 99=Unknown)", + "type": "string", + "pattern": "^[1-7]?[0-9]$|^[8][0-5]$|^99$" + }, + "craftcue": { + "title": "9d. Cue (\"boy\") needed", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "bens_cplx_figr_recl": { + "title": "10. Benson Complex Figure Recall", + "type": "object", + "properties": { + "udsbentd": { + "title": "10a. Total score for drawing of Benson figure following 10- to 15-minute delay", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 11a.) ((0-17, 95-98))", + "type": "string", + "pattern": "^[0-9]$|^[1][0-7]$|^95$|^96$|^97$|^98$" + }, + "udsbenrs": { + "title": "10b. Recognized original stimulus from among four options? ", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "mint": { + "title": "11. Multilingual Naming Test (MINT)", + "description": "(0-32, 95-98)", + "type": "object", + "properties": { + "minttots": { + "title": "11a. Total score", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12a.) ", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$|^95$|^96$|^97$|^98$" + }, + "minttotw": { + "title": "11b. Total correct without semantic cue", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$" + }, + "mintscng": { + "title": "11c. Semantic cues: Number given", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$" + }, + "mintscnc": { + "title": "11d. Semantic cues: Number correct with cue (88=not applicable) ", + "description": "(0-32, 88)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$|^88$" + }, + "mintpcng": { + "title": "11e. Phonemic cues: Number given", + "description": "(0-32)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$" + }, + "mintpcnc": { + "title": "11f. Phonemic cues: Number correct with cue (88=not applicable) ", + "description": "(0-32, 88)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^[3][0-2]$|^88$" + } + } + }, + "verb_fluency_phone_test": { + "title": "12. Verbal Fluency: Phonemic Test", + "type": "object", + "properties": { + "udsverfc": { + "title": "12a. Number of correct F-words generated in 1 minute", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 12d.) (0-40, 95-98)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^95$|^96$|^97$|^98$" + }, + "udsverfn": { + "title": "12b. Number of F-words repeated in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsvernf": { + "title": "12c. Number of F-words and rule violation errors in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsverlc": { + "title": "12d. Number of correct L-words generated in 1 minute ", + "description": "(If test not completed, enter reason code, 95-98) and SKIP TO QUESTION 13a.) (0-40, 95-98)", + "type": "string", + "pattern": "^[1-3]?[0-9]$|^40$|^95$|^96$|^97$|^98$" + }, + "udsverlr": { + "title": "12e. Number of L-words repeated in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsverln": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute", + "description": "(0-15)", + "type": "string", + "pattern": "^[0-9]$|^[1][0-5]$" + }, + "udsvertn": { + "title": "12g. TOTAL number of correct F-words and L-words ", + "description": "(0-80)", + "type": "string", + "pattern": "^[1-7]?[0-9]$|^80$" + }, + "udsverte": { + "title": "12h. TOTAL number of F-words and L-words repetition errors", + "description": "(0-30)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$" + }, + "udsverti": { + "title": "12i. TOTAL number of non-F/L words and rule violation errors", + "description": "(0-30)", + "type": "string", + "pattern": "^[1-2]?[0-9]$|^30$" + } + } + }, + "overall_aprsl": { + "title": "13. Overall appraisal", + "type": "object", + "properties": { + "cogstat_c2": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS Neuropsychological examination, the subject's cognitive status is deemed:", + "type": "string", + "enum": [ + "1 Better than normal for age", + "2 Normal for age", + "3 One or two test scores are abnormal", + "4 Three or more scores are abnormal or lower than expected", + "0 Clinician unable to render opinion" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "moca.mocacomp": { + "title": "1a. Was any part of the MoCA administered? " + }, + "moca.mocareas": { + "title": "1a1. Was any part of MoCA administered? If no, enter reason code, 95-98) " + }, + "moca.mocaloc": { + "title": "1b. MoCA was administered: " + }, + "moca.mocalan": { + "title": "1c. Language of MoCA administration: " + }, + "moca.mocalanx": { + "title": "1c1. Specify language of MoCA administration " + }, + "moca.mocavis": { + "title": "1d. Subject was unable to complete one or more sections due to visual impairment: " + }, + "moca.mocahear": { + "title": "1e. Subject was unable to complete one or more sections due to hearing impairment: " + }, + "moca.mocatots": { + "title": "1f. TOTAL RAW SCORE - UNCORRECTED (Not corrected for education or visual/hearing impairment)  " + }, + "moca.alert_mocatots.mocatrai": { + "title": "1g. Visuospatial/executive -- Trails " + }, + "moca.alert_mocatots.mocacube": { + "title": "1h. Visuospatial/executive -- Cube " + }, + "moca.alert_mocatots.mocacloc": { + "title": "1i. Visuospatial/executive -- Clock contour " + }, + "moca.alert_mocatots.mocaclon": { + "title": "1j. Visuospatial/executive -- Clock numbers " + }, + "moca.alert_mocatots.mocacloh": { + "title": "1k. Visuospatial/executive -- Clock hands " + }, + "moca.alert_mocatots.mocanami": { + "title": "1l. Language -- Naming " + }, + "moca.alert_mocatots.mocaregi": { + "title": "1m. Memory -- Registration (two trials) " + }, + "moca.alert_mocatots.mocadigi": { + "title": "1n. Attention -- Digits " + }, + "moca.alert_mocatots.mocalett": { + "title": "1o. Attention -- Letter A " + }, + "moca.alert_mocatots.mocaser7": { + "title": "1p. Attention -- Serial 7s " + }, + "moca.alert_mocatots.mocarepe": { + "title": "1q. Language -- Repetition " + }, + "moca.alert_mocatots.mocaflue": { + "title": "1r. Language -- Fluency " + }, + "moca.alert_mocatots.mocaabst": { + "title": "1s. Abstraction " + }, + "moca.alert_mocatots.mocarecn": { + "title": "1t. Delayed recall -- No cue " + }, + "moca.alert_mocatots.mocarecc": { + "title": "1u. Delayed recall -- Category cue " + }, + "moca.alert_mocatots.mocarecr": { + "title": "1v. Delayed recall -- Recognition " + }, + "moca.alert_mocatots.mocaordt": { + "title": "1w. Orientation -- Date " + }, + "moca.alert_mocatots.mocaormo": { + "title": "1x. Orientation -- Month " + }, + "moca.alert_mocatots.mocaoryr": { + "title": "1y. Orientation -- Year " + }, + "moca.alert_mocatots.mocaordy": { + "title": "1z. Orientation -- Day " + }, + "moca.alert_mocatots.mocaorpl": { + "title": "1aa. Orientation -- Place " + }, + "moca.alert_mocatots.mocaorct": { + "title": "1bb. Orientation -- City " + }, + "admin_rema_btry.npsycloc_c2": { + "title": "2a. The tests following the MoCA were administered: " + }, + "admin_rema_btry.npsylan_c2": { + "title": "2b. Test following MoCA: Language of test administration. " + }, + "admin_rema_btry.npsylanx_c2": { + "title": "2b1. Other language of tests following the MoCA: " + }, + "crft_stry_recl.craftvrs": { + "title": "3a. Total story units recalled, verbatim scoring " + }, + "crft_stry_recl.crafturs": { + "title": "3b. Total story units recalled, paraphrase scoring (0-25) " + }, + "bens_cplx_figr.udsbentc": { + "title": "4a. Total score for copy of Benson figure " + }, + "numb_span_test_fwd.digforct": { + "title": "5a. Number of correct trials " + }, + "numb_span_test_fwd.digforsl": { + "title": "5b. Longest span forward " + }, + "numb_span_test_bkwd.digbacct": { + "title": "6a. Number of correct trials " + }, + "numb_span_test_bkwd.digbacls": { + "title": "6b. Longest span backward " + }, + "category_fluency.animals_c2": { + "title": "7a. Animals: Total number of animals named in 60 second " + }, + "category_fluency.veg_c2": { + "title": "7b. Vegetables: Total number of vegetables named in 60 second " + }, + "trail_make_test.traila_c2": { + "title": "8a. PART A: Total number of seconds to complete " + }, + "trail_make_test.trailarr_c2": { + "title": "8a1. Number of commission errors " + }, + "trail_make_test.trailali_c2": { + "title": "8a2. Number of correct lines " + }, + "trail_make_test.trailb_c2": { + "title": "8b. PART B: Total number of seconds to complete " + }, + "trail_make_test.trailbrr_c2": { + "title": "8b1. Number of commission errors " + }, + "trail_make_test.trailbli_c2": { + "title": "8b2. Number of correct lines " + }, + "crft_stry_recl_dely.craftdvr": { + "title": "9a. Total story units recalled, verbatim scoring " + }, + "crft_stry_recl_dely.craftdre": { + "title": "9b. Total story units recalled, paraphrase scoring (0-25) " + }, + "crft_stry_recl_dely.craftdti": { + "title": "9c. Delay time (minutes) (99=Unknown)" + }, + "crft_stry_recl_dely.craftcue": { + "title": "9d. Cue (\"boy\") needed " + }, + "bens_cplx_figr_recl.udsbentd": { + "title": "10a. Total score for drawing of Benson figure following 10- to 15-minute delay" + }, + "bens_cplx_figr_recl.udsbenrs": { + "title": "10b. Recognized original stimulus from among four options?" + }, + "mint.minttots": { + "title": "11a. Total score " + }, + "mint.minttotw": { + "title": "11b. Total correct without semantic cue" + }, + "mint.mintscng": { + "title": "11c. Semantic cues: Number given" + }, + "mint.mintscnc": { + "title": "11d. Semantic cues: Number correct with cue (88=not applicable)" + }, + "mint.mintpcng": { + "title": "11e. Phonemic cues: Number given" + }, + "mint.mintpcnc": { + "title": "11f. Phonemic cues: Number correct with cue (88=not applicable)" + }, + "verb_fluency_phone_test.udsverfc": { + "title": "12a. Number of correct F-words generated in 1 minute" + }, + "verb_fluency_phone_test.udsverfn": { + "title": "12b. Number of F-words repeated in 1 minute" + }, + "verb_fluency_phone_test.udsvernf": { + "title": "12c. Number of F-words and rule violation errors in 1 minute " + }, + "verb_fluency_phone_test.udsverlc": { + "title": "12d. Number of correct L-words generated in 1 minute" + }, + "verb_fluency_phone_test.udsverlr": { + "title": "12e. Number of L-words repeated in 1 minute " + }, + "verb_fluency_phone_test.udsverln": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute" + }, + "verb_fluency_phone_test.udsvertn": { + "title": "12g. TOTAL number of correct F-words and L-words" + }, + "verb_fluency_phone_test.udsverte": { + "title": "12h. TOTAL number of F-words and L-words repetition errors" + }, + "verb_fluency_phone_test.udsverti": { + "title": "12i. TOTAL number of non-F/L words and rule violation errors" + }, + "overall_aprsl.cogstat_c2": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS Neuropsychological examination, the subject's cognitive status is deemed: " + } + }, + "columns": { + "status": { + "title": "Status" + }, + "moca.mocacomp": { + "title": "1a. Was any part of the MoCA administered? " + }, + "moca.mocareas": { + "title": "1a1. Was any part of MoCA administered? If no, enter reason code, 95-98) " + }, + "moca.mocaloc": { + "title": "1b. MoCA was administered: " + }, + "moca.mocalan": { + "title": "1c. Language of MoCA administration: " + }, + "moca.mocalanx": { + "title": "1c1. Specify language of MoCA administration " + }, + "moca.mocavis": { + "title": "1d. Subject was unable to complete one or more sections due to visual impairment: " + }, + "moca.mocahear": { + "title": "1e. Subject was unable to complete one or more sections due to hearing impairment: " + }, + "moca.mocatots": { + "title": "1f. TOTAL RAW SCORE - UNCORRECTED (Not corrected for education or visual/hearing impairment)  " + }, + "moca.alert_mocatots.mocatrai": { + "title": "1g. Visuospatial/executive -- Trails " + }, + "moca.alert_mocatots.mocacube": { + "title": "1h. Visuospatial/executive -- Cube " + }, + "moca.alert_mocatots.mocacloc": { + "title": "1i. Visuospatial/executive -- Clock contour " + }, + "moca.alert_mocatots.mocaclon": { + "title": "1j. Visuospatial/executive -- Clock numbers " + }, + "moca.alert_mocatots.mocacloh": { + "title": "1k. Visuospatial/executive -- Clock hands " + }, + "moca.alert_mocatots.mocanami": { + "title": "1l. Language -- Naming " + }, + "moca.alert_mocatots.mocaregi": { + "title": "1m. Memory -- Registration (two trials) " + }, + "moca.alert_mocatots.mocadigi": { + "title": "1n. Attention -- Digits " + }, + "moca.alert_mocatots.mocalett": { + "title": "1o. Attention -- Letter A " + }, + "moca.alert_mocatots.mocaser7": { + "title": "1p. Attention -- Serial 7s " + }, + "moca.alert_mocatots.mocarepe": { + "title": "1q. Language -- Repetition " + }, + "moca.alert_mocatots.mocaflue": { + "title": "1r. Language -- Fluency " + }, + "moca.alert_mocatots.mocaabst": { + "title": "1s. Abstraction " + }, + "moca.alert_mocatots.mocarecn": { + "title": "1t. Delayed recall -- No cue " + }, + "moca.alert_mocatots.mocarecc": { + "title": "1u. Delayed recall -- Category cue " + }, + "moca.alert_mocatots.mocarecr": { + "title": "1v. Delayed recall -- Recognition " + }, + "moca.alert_mocatots.mocaordt": { + "title": "1w. Orientation -- Date " + }, + "moca.alert_mocatots.mocaormo": { + "title": "1x. Orientation -- Month " + }, + "moca.alert_mocatots.mocaoryr": { + "title": "1y. Orientation -- Year " + }, + "moca.alert_mocatots.mocaordy": { + "title": "1z. Orientation -- Day " + }, + "moca.alert_mocatots.mocaorpl": { + "title": "1aa. Orientation -- Place " + }, + "moca.alert_mocatots.mocaorct": { + "title": "1bb. Orientation -- City " + }, + "admin_rema_btry.npsycloc_c2": { + "title": "2a. The tests following the MoCA were administered: " + }, + "admin_rema_btry.npsylan_c2": { + "title": "2b. Test following MoCA: Language of test administration. " + }, + "admin_rema_btry.npsylanx_c2": { + "title": "2b1. Other language of tests following the MoCA: " + }, + "crft_stry_recl.craftvrs": { + "title": "3a. Total story units recalled, verbatim scoring " + }, + "crft_stry_recl.crafturs": { + "title": "3b. Total story units recalled, paraphrase scoring (0-25) " + }, + "bens_cplx_figr.udsbentc": { + "title": "4a. Total score for copy of Benson figure " + }, + "numb_span_test_fwd.digforct": { + "title": "5a. Number of correct trials " + }, + "numb_span_test_fwd.digforsl": { + "title": "5b. Longest span forward " + }, + "numb_span_test_bkwd.digbacct": { + "title": "6a. Number of correct trials " + }, + "numb_span_test_bkwd.digbacls": { + "title": "6b. Longest span backward " + }, + "category_fluency.animals_c2": { + "title": "7a. Animals: Total number of animals named in 60 second " + }, + "category_fluency.veg_c2": { + "title": "7b. Vegetables: Total number of vegetables named in 60 second " + }, + "trail_make_test.traila_c2": { + "title": "8a. PART A: Total number of seconds to complete " + }, + "trail_make_test.trailarr_c2": { + "title": "8a1. Number of commission errors " + }, + "trail_make_test.trailali_c2": { + "title": "8a2. Number of correct lines " + }, + "trail_make_test.trailb_c2": { + "title": "8b. PART B: Total number of seconds to complete " + }, + "trail_make_test.trailbrr_c2": { + "title": "8b1. Number of commission errors " + }, + "trail_make_test.trailbli_c2": { + "title": "8b2. Number of correct lines " + }, + "crft_stry_recl_dely.craftdvr": { + "title": "9a. Total story units recalled, verbatim scoring " + }, + "crft_stry_recl_dely.craftdre": { + "title": "9b. Total story units recalled, paraphrase scoring (0-25) " + }, + "crft_stry_recl_dely.craftdti": { + "title": "9c. Delay time (minutes) (99=Unknown)" + }, + "crft_stry_recl_dely.craftcue": { + "title": "9d. Cue (\"boy\") needed " + }, + "bens_cplx_figr_recl.udsbentd": { + "title": "10a. Total score for drawing of Benson figure following 10- to 15-minute delay" + }, + "bens_cplx_figr_recl.udsbenrs": { + "title": "10b. Recognized original stimulus from among four options?" + }, + "mint.minttots": { + "title": "11a. Total score " + }, + "mint.minttotw": { + "title": "11b. Total correct without semantic cue" + }, + "mint.mintscng": { + "title": "11c. Semantic cues: Number given" + }, + "mint.mintscnc": { + "title": "11d. Semantic cues: Number correct with cue (88=not applicable)" + }, + "mint.mintpcng": { + "title": "11e. Phonemic cues: Number given" + }, + "mint.mintpcnc": { + "title": "11f. Phonemic cues: Number correct with cue (88=not applicable)" + }, + "verb_fluency_phone_test.udsverfc": { + "title": "12a. Number of correct F-words generated in 1 minute" + }, + "verb_fluency_phone_test.udsverfn": { + "title": "12b. Number of F-words repeated in 1 minute" + }, + "verb_fluency_phone_test.udsvernf": { + "title": "12c. Number of F-words and rule violation errors in 1 minute " + }, + "verb_fluency_phone_test.udsverlc": { + "title": "12d. Number of correct L-words generated in 1 minute" + }, + "verb_fluency_phone_test.udsverlr": { + "title": "12e. Number of L-words repeated in 1 minute " + }, + "verb_fluency_phone_test.udsverln": { + "title": "12f. Number of non-L-words and rule violation errors in 1 minute" + }, + "verb_fluency_phone_test.udsvertn": { + "title": "12g. TOTAL number of correct F-words and L-words" + }, + "verb_fluency_phone_test.udsverte": { + "title": "12h. TOTAL number of F-words and L-words repetition errors" + }, + "verb_fluency_phone_test.udsverti": { + "title": "12i. TOTAL number of non-F/L words and rule violation errors" + }, + "overall_aprsl.cogstat_c2": { + "title": "13a. Per the clinician (e.g., neuropsychologist, behavioral neurologist, or other suitably qualified clinician), based on the UDS Neuropsychological examination, the subject's cognitive status is deemed: " + } + }, + "boost_values": { + + "status": 1.0, + "moca.mocacomp": 1.0, + "moca.mocareas": 1.0, + "moca.mocaloc": 1.0, + "moca.mocalan": 1.0, + "moca.mocalanx": 1.0, + "moca.mocavis": 1.0, + "moca.mocahear": 1.0, + "moca.mocatots": 1.0, + "moca.alert_mocatots.mocatrai": 1.0, + "moca.alert_mocatots.mocacube": 1.0, + "moca.alert_mocatots.mocacloc": 1.0, + "moca.alert_mocatots.mocaclon": 1.0, + "moca.alert_mocatots.mocacloh": 1.0, + "moca.alert_mocatots.mocanami": 1.0, + "moca.alert_mocatots.mocaregi": 1.0, + "moca.alert_mocatots.mocadigi": 1.0, + "moca.alert_mocatots.mocalett": 1.0, + "moca.alert_mocatots.mocaser7": 1.0, + "moca.alert_mocatots.mocarepe": 1.0, + "moca.alert_mocatots.mocaflue": 1.0, + "moca.alert_mocatots.mocaabst": 1.0, + "moca.alert_mocatots.mocarecn": 1.0, + "moca.alert_mocatots.mocarecc": 1.0, + "moca.alert_mocatots.mocarecr": 1.0, + "moca.alert_mocatots.mocaordt": 1.0, + "moca.alert_mocatots.mocaormo": 1.0, + "moca.alert_mocatots.mocaoryr": 1.0, + "moca.alert_mocatots.mocaordy": 1.0, + "moca.alert_mocatots.mocaorpl": 1.0, + "moca.alert_mocatots.mocaorct": 1.0, + "admin_rema_btry.npsycloc_c2": 1.0, + "admin_rema_btry.npsylan_c2": 1.0, + "admin_rema_btry.npsylanx_c2": 1.0, + "crft_stry_recl.craftvrs": 1.0, + "crft_stry_recl.crafturs": 1.0, + "bens_cplx_figr.udsbentc": 1.0, + "numb_span_test_fwd.digforct": 1.0, + "numb_span_test_fwd.digforsl": 1.0, + "numb_span_test_bkwd.digbacct": 1.0, + "numb_span_test_bkwd.digbacls": 1.0, + "category_fluency.animals_c2": 1.0, + "category_fluency.veg_c2": 1.0, + "trail_make_test.traila_c2": 1.0, + "trail_make_test.trailarr_c2": 1.0, + "trail_make_test.trailali_c2": 1.0, + "trail_make_test.trailb_c2": 1.0, + "trail_make_test.trailbrr_c2": 1.0, + "trail_make_test.trailbli_c2": 1.0, + "crft_stry_recl_dely.craftdvr": 1.0, + "crft_stry_recl_dely.craftdre": 1.0, + "crft_stry_recl_dely.craftdti": 1.0, + "crft_stry_recl_dely.craftcue": 1.0, + "bens_cplx_figr_recl.udsbentd": 1.0, + "bens_cplx_figr_recl.udsbenrs": 1.0, + "mint.minttots": 1.0, + "mint.minttotw": 1.0, + "mint.mintscng": 1.0, + "mint.mintscnc": 1.0, + "mint.mintpcng": 1.0, + "mint.mintpcnc": 1.0, + "verb_fluency_phone_test.udsverfc": 1.0, + "verb_fluency_phone_test.udsverfn": 1.0, + "verb_fluency_phone_test.udsvernf": 1.0, + "verb_fluency_phone_test.udsverlc": 1.0, + "verb_fluency_phone_test.udsverlr": 1.0, + "verb_fluency_phone_test.udsverln": 1.0, + "verb_fluency_phone_test.udsvertn": 1.0, + "verb_fluency_phone_test.udsverte": 1.0, + "verb_fluency_phone_test.udsverti": 1.0, + "overall_aprsl.cogstat_c2": 1.0 + + }, + "changelog": "/profiles/changelogs/ivp_c2v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_d1.json b/src/encoded/schemas/ivp_d1.json new file mode 100644 index 0000000000..8d74e9503b --- /dev/null +++ b/src/encoded/schemas/ivp_d1.json @@ -0,0 +1,1333 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM D1: Clinician Diagnosis", + "description": "INSTRUCTIONS: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form D1. Link to NACC Coding Guidebook. Check only one box per question.\nThis form is divided into three main sections:\nSection 1 Cognitive Status: Normal cognition/MCI/dementia and dementia syndrome\nSection 2 Biomarkers, imaging and genetics: Neurodegenerative imaging and CSF biomarkers, imaging evidence for CVD, and known genetic mutations for AD and FTLD\nSection 3 Etiological diagnoses: presumed etiological diagnoses for the cognitive disorder.", + "id": "/profiles/uds_ivp_d1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "dxmethod", + "sec1", + "sec2", + "sec3" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "dxmethod": { + "title": "1. Diagnosis method - responses in this form are based on diagnosis by:", + "type": "string", + "enum": [ + "1 A single clinician", + "2 A formal consensus panel", + "3 Other (e.g., two or more clinicians or other informal group)" + ] + }, + "sec1": { + "title": "SECTION 1: Cognitive and behavioral status", + "type": "object", + "properties": { + "normcog": { + "title": "2. Does the subject have normal cognition (global CDR=0 and/or neuropsychological testing within normal range) and normal behavior (i.e., the subject does not exhibit behavior sufficient to diagnose MCI or dementia due to FTLD or LBD)?", + "description": "ALL-CAUSE DEMENTIA\nThe subject has cognitive or behavioral (neuropsychiatric) symptoms that meet all of the following criteria:\n- Interfere with ability to function as before at work or at usual activities?\n- Represent a decline from previous levels of functioning?\n- Are not explained by delirium or major psychiatric disorder?\n- Include cognitive impairment detected and diagnosed through a combination of 1) history-taking and 2) objective\ncognitive\nassessment (bedside or neuropsychological testing)?AND\nImpairment in one* or more of the following domains.\n- Impaired ability to acquire and remember new information\n- Impaired reasoning and handling of complex tasks, poor judgment\n- Impaired visuospatial abilities\n- Impaired language functions\n- Changes in personality, behavior, or comportment\n*In the event of single-domain impairment (e.g., language in PPA, behavior in bvFTD, posterior cortical atrophy),\nthe subject must not fulfill criteria for MCI.", + "type": "string", + "enum": [ + "0 No (CONTINUE TO QUESTION 3)", + "1 Yes (SKIP TO QUESTION 6)" + ] + }, + "demented": { + "title": "3. Does the subject meet the criteria for dementia?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 5)", + "1 Yes (CONTINUE TO QUESTION 4)" + ] + }, + "note_d1_3": { + "title": "4.If the subject meets criteria for dementia, answer Questions 4a-4f below and then SKIP TO QUESTION 6.", + "description": "Based entirely on the history and examination (including neuropsychological testing), what is the cognitive/behavioral syndrome? Select one or more as Present; all others will default to Absent in the NACC database.\nDementia syndrome", + "type": "object", + "properties": { + "demen_synd": { + "title": "Dementia syndrome", + "type": "object", + "properties": { + "amndem": { + "title": "4a. Amnestic multidomain dementia syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "pca": { + "title": "4b. Posterior cortical atrophy syndrome (or primary visual presentation)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "ppasyn": { + "title": "4c. Primary progressive aphasia (PPA) syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "ppasynt": { + "title": "4c1.", + "type": "string", + "enum": [ + "1 Meets criteria for semantic PPA", + "2 Meets criteria for logopenic PPA", + "3 Meets criteria for nonfluent/agrammatic PPA", + "4 PPA other/not otherwise specified" + ] + }, + "ftdsyn": { + "title": "4d. Behavioral variant FTD (bvFTD) syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "lbdsyn": { + "title": "4e. Lewy body dementia syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "namndem": { + "title": "4f. Non-amnestic multidomain dementia, not PCA, PPA, bvFTD, or DLB syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + } + } + } + } + }, + "note_d1_6": { + "title": "5. If the subject does not have normal cognition or behavior and is not clinically demented, indicate the type of cognitive impairment below. MCI CORE CLINICAL CRITERIA \nIs the subject, the co-participant, or a clinician concerned about a change in cognition compared to the subject's previous level?\nIs there impairment in one or more cognitive domains (memory, language, executive function, attention, and visuospatial skills)?\nIs there largely preserved independence in functional abilities (no change from prior manner of functioning or uses minimal aids or assistance)?", + "description": "Select one syndrome from 5a-5e as being Present (all others will default to Absent in the NACC database), and then CONTINUE TO QUESTION 6. If you select MCI below, it should meet the MCI core clinical criteria outlined above. ", + "type": "object", + "properties": { + "mciamem": { + "title": "5a. Amnestic MCI, single domain (aMCI SD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "mciaplus": { + "title": "5b. Amnestic MCI, multiple domains (aMCI MD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "note_d1_8": { + "title": "CHECK YES for at least one additional domain (besides memory):", + "type": "object", + "properties": { + "mciaplan": { + "title": "5b1. Language", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mciapatt": { + "title": "5b2. Attention", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mciapex": { + "title": "5b3. Executive", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mciapvis": { + "title": "5b4 Visuospatial", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "mcinon1": { + "title": "5c. Non-amnestic MCI, single domain (naMCI SD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "note_d1_9": { + "title": "CHECK YES to indicate the affected domain:", + "type": "object", + "properties": { + "mcin1lan": { + "title": "5c1. Language", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin1att": { + "title": "5c2. Attention", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin1ex": { + "title": "5c3. Executive", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin1vis": { + "title": "5c4. Visuospatial", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "mcinon2": { + "title": "5d. Non-amnestic MCI, multiple domains (naMCI MD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "note_d1_10": { + "title": "CHECK YES for at least two domains:", + "type": "object", + "properties": { + "mcin2lan": { + "title": "5d1 Language", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin2att": { + "title": "5d2. Attention", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin2ex": { + "title": "5d3. Executive", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin2vis": { + "title": "5d4. Visuospatial", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "impnomci": { + "title": "5e. Cognitively impaired, not MCI", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + } + } + } + } + }, + "sec2": { + "title": "SECTION 2: Biomarkers, imaging, and genetics", + "description": "Section 2 must be completed for all subjects.", + "type": "object", + "properties": { + "biomarker_find": { + "title": "6. Indicate neurodegenerative biomarker status, using local standards for positivity.\nBiomarker Findings", + "type": "object", + "properties": { + "amylpet": { + "title": "6a. Abnormally elevated amyloid on PET", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "amylcsf": { + "title": "6b. Abnormally low amyloid in CSF", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fdgad": { + "title": "6c. FDG-PET pattern of AD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "hippatr": { + "title": "6d. Hippocampal atrophy", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "taupetad": { + "title": "6e. Tau PET evidence for AD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "csftau": { + "title": "6f. Abnormally elevated CSF tau or ptau", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fdgftld": { + "title": "6g. FDG-PET evidence for frontal or anterior temporal hypometabolism for FTLD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "tpetftld": { + "title": "6h. Tau PET evidence for FTLD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "mrftld": { + "title": "6i. Structural MR evidence for frontal or anterior temporal atrophy for FTLD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "datscan": { + "title": "6j. Dopamine transporter scan (DATscan) evidence for Lewy body disease", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "othbiom": { + "title": "6k. Other neurodegenerative biomarker", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "othbiomx": { + "title": "6k1. Other neurodegenerative biomarker description (SPECIFY):", + "type": "string" + } + } + }, + "image_find": { + "title": "7. Is there evidence for cerebrovascular disease (CVD) on imaging?\nImaging Findings", + "type": "object", + "properties": { + "imaglinf": { + "title": "7a. Large vessel infarct(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "imaglac": { + "title": "7b. Lacunar infarct(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "imagmach": { + "title": "7c. Macrohemorrhage(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "imagmich": { + "title": "7d. Microhemorrhage(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "imagmwmh": { + "title": "7e. Moderate white-matter hyperintensity (CHS score 5-6)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "imagewmh": { + "title": "7f. Extensive white-matter hyperintensity (CHS score 7-8+)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + } + } + }, + "admut": { + "title": "8. Does the subject have a dominantly inherited AD mutation (PSEN1, PSEN2, APP)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown/not assessed" + ] + }, + "ftldmut": { + "title": "9. Does the subject have a hereditary FTLD mutation (e.g, GRN, VCP, TARBP, FUS, C9orf72, CHMP2B, MAPT)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown/not assessed" + ] + }, + "othmut": { + "title": "10. Does the subject have a hereditary mutation other than AD or FTLD mutation?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown/not assessed" + ] + }, + "othmutx": { + "title": "10a. If question 10 is 1 Yes, please specify hereditary mutation other than AD or FTLD mutation.", + "type": "string" + } + } + }, + "sec3": { + "title": "SECTION 3: Etiologic diagnoses", + "description": "Section 3 must be filled out for all subjects. Indicate presumptive etiologic diagnoses of the cognitive disorder and whether a given diagnosis is a primary, contributing, or non-contributing cause of the observed impairment, based on the clinician's best judgment. Select one or more diagnoses as Present; all others will default to Absent in the NACC database. Only one diagnosis should be selected as 1=Primary.For subjects with normal cognition: Indicate the presence of any diagnoses by marking Present, and leave the questions on whether the diagnosis was primary, contributing, or non-contributing blank. Subjects with positive biomarkers but no clinical symptoms of Alzheimer's disease, Lewy body disease, or frontotemporal lobar degeneration should not have these diagnoses marked as Present. Instead, the biomarker data from Section 2 can be used to identify the presence of preclinical disease. \nEtiologic diagnoses", + "type": "object", + "properties": { + "etio_diag": { + "title": "Etiologic diagnoses", + "type": "object", + "properties": { + "alzdis": { + "title": "11. Alzheimer's disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "alzdisif": { + "title": "11a. If Alzheimer's disease present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "lbdis": { + "title": "12. Lewy body disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "lbdif": { + "title": "12a. If Lewy body disease present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "park": { + "title": "12b. Parkinson's disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "msa": { + "title": "13. Multiple system atrophy", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "msaif": { + "title": "13a. If Multiple system atrophy present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "note_d1_13": { + "title": "14. Frontotemporal lobar degeneration", + "type": "object", + "properties": { + "psp": { + "title": "14a. Progressive supranuclear palsy (PSP)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "pspif": { + "title": "14a1. If Progressive supranuclear palsy (PSP) is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "cort": { + "title": "14b. Corticobasal degeneration (CBD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "cortif": { + "title": "14b1. If Corticobasal degeneration (CBD) is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "ftldmo": { + "title": "14c. FTLD with motor neuron disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "ftldmoif": { + "title": "14c1. If FTLD with motor neuron disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "ftldnos": { + "title": "14d. FTLD NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "ftldnoif": { + "title": "14d1. If FTLD NOS is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "ftldsubt": { + "title": "14e. If FTLD (Questions 14a-14d) is Present, specify FTLD subtype:", + "type": "string", + "enum": [ + "1 Tauopathy", + "2 TDP-43 proteinopathy", + "3 Other (SPECIFY):", + "9 Unknown" + ] + }, + "ftldsubx": { + "title": "14e1. Other FTLD, specify", + "type": "string" + } + } + }, + "cvd": { + "title": "15. Vascular Brain injury (based on clinical or imaging evidence) If significant vascular brain injury is absent, SKIP TO QUESTION 16.", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "cvdif": { + "title": "15a. If vascular brain injury is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "prevstk": { + "title": "15b. Previous symptomatic stroke?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 15c)", + "1 Yes" + ] + }, + "strokedec": { + "title": "15b1. Temporal relationship between stroke and cognitive decline?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "stkimag": { + "title": "15b2. Confirmation of stroke by neuroimaging?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown; no relevant imaging data available" + ] + }, + "infnetw": { + "title": "15c. Is there imaging evidence of cystic infarction in cognitive network(s)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown; no relevant imaging data available" + ] + }, + "infwmh": { + "title": "15d. Is there imaging evidence of cystic infarction, imaging evidence of extensive white matter hyperintensity (CHS grade 7-8+), and impairment in executive function? ", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown; no relevant imaging data available" + ] + }, + "esstrem": { + "title": "16. Essential tremor", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "esstreif": { + "title": "16a. If essential tremor is present, is it primary or contributing or non-contributing.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "downs": { + "title": "17. Down syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "downsif": { + "title": "17a. If Down syndrome is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "hunt": { + "title": "18. Huntington's disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "huntif": { + "title": "18a. If Huntington's disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "prion": { + "title": "19. Prion disease (CJD, other)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "prionif": { + "title": "19a. If Prion's disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "brninj": { + "title": "20. Traumatic brain injury", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "brninjif": { + "title": "20a. If Traumatic brain injury is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "brnincte": { + "title": "20b. If traumatic brain injury present, does the subject have symptoms consistent with chronic traumatic encephalopathy?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hyceph": { + "title": "21. Normal-pressure hydrocephalus", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "hycephif": { + "title": "21a. If Normal-pressure hydrocephalus is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "epilep": { + "title": "22. Epilepsy", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "epilepif": { + "title": "22a. If Epilepsy is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "neop": { + "title": "23. CNS neoplasm", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "neopif": { + "title": "23a. If CNS neoplasm present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "neopstat": { + "title": "23b. CNS neoplasm, benign or malignant?", + "type": "string", + "enum": [ + "1 Benign", + "2 Malignant" + ] + }, + "hiv": { + "title": "24. Human immunodeficiency virus (HIV)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "hivif": { + "title": "24a. If Human immunodeficiency virus (HIV) is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "othcog": { + "title": "25. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "othcogif": { + "title": "25a. If other cognitive impairment present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "othcogx": { + "title": "25b. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above. If Present, specify: ", + "type": "string" + } + } + }, + "condition": { + "title": "Condition", + "type": "object", + "properties": { + "dep": { + "title": "26. Active depression", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "depif": { + "title": "26a. If active depression is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "deptreat": { + "title": "26b. If active depression present, select one:", + "type": "string", + "enum": [ + "0 Untreated", + "1 Treated with medication and/or counseling" + ] + }, + "bipoldx": { + "title": "27. Bipolar disorder", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "bipoldif": { + "title": "27a. If bipolar disorder is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "schizop": { + "title": "28. Schizophrenia or other psychosis", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "schizoif": { + "title": "28a. If Schizophrenia or other psychosis is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "anxiet": { + "title": "29. Anxiety disorder", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "anxietif": { + "title": "29a. If Anxiety disorder is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "delir": { + "title": "30. Delirium", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "delirif": { + "title": "30a. If Delirium is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "ptsddx": { + "title": "31. Post-traumatic stress disorder (PTSD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "ptsddxif": { + "title": "31a. If Post-traumatic stress disorder is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "othpsy": { + "title": "32. Other psychiatric disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "othpsyif": { + "title": "32a. If other psychiatric disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "othpsyx": { + "title": "32b. If other psychiatric disease is present, please specify:", + "type": "string" + }, + "alcdem": { + "title": "33. Cognitive impairment due to alcohol abuse", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "alcdemif": { + "title": "33a. If cognitive impairment due to alcohol abuse is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "alcabuse": { + "title": "33b. Current alcohol abuse:", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "impsub": { + "title": "34. Cognitive impairment due to other substance abuse", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "impsubif": { + "title": "34a. If Cognitive impairment due to other substance abuse is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "dysill": { + "title": "35. Cognitive impairment due to systemic disease/medical illness (as indicated on Form D2)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "dysillif": { + "title": "35a. If Cognitive impairment due to systemic disease/medical illness is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "meds": { + "title": "36. Cognitive impairment due to medications", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "medsif": { + "title": "36a. If Cognitive impairment due to medications, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "cogoth": { + "title": "37. Cognitive impairment NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "cogothif": { + "title": "37a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "cogothx": { + "title": "37b. If Cognitive impairment NOS present, specify:", + "type": "string" + }, + "cogoth2": { + "title": "38. Cognitive impairment NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "cogoth2f": { + "title": "38a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "cogoth2x": { + "title": "38b. If Cognitive impairment NOS present, specify:", + "type": "string" + }, + "cogoth3": { + "title": "39. Cognitive impairment NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "cogoth3f": { + "title": "39a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "cogoth3x": { + "title": "39b. If Cognitive impairment NOS present, specify:", + "type": "string" + } + } + } + } + } + }, + + "boost_values": { + "patient": 1.0, + "dxmethod": 1.0, + "sec1.normcog": 1.0, + "sec1.demented": 1.0, + "sec1.note_d1_3.demen_synd.amndem": 1.0, + "sec1.note_d1_3.demen_synd.pca": 1.0, + "sec1.note_d1_3.demen_synd.ppasyn": 1.0, + "sec1.note_d1_3.demen_synd.ppasynt": 1.0, + "sec1.note_d1_3.demen_synd.ftdsyn": 1.0, + "sec1.note_d1_3.demen_synd.lbdsyn": 1.0, + "sec1.note_d1_3.demen_synd.namndem": 1.0, + "sec1.note_d1_6.mciamem": 1.0, + "sec1.note_d1_6.mciaplus": 1.0, + "sec1.note_d1_6.note_d1_8.mciaplan": 1.0, + "sec1.note_d1_6.note_d1_8.mciapatt": 1.0, + "sec1.note_d1_6.note_d1_8.mciapex": 1.0, + "sec1.note_d1_6.note_d1_8.mciapvis": 1.0, + "sec1.note_d1_6.mcinon1": 1.0, + "sec1.note_d1_6.note_d1_9.mcin1lan": 1.0, + "sec1.note_d1_6.note_d1_9.mcin1att": 1.0, + "sec1.note_d1_6.note_d1_9.mcin1ex": 1.0, + "sec1.note_d1_6.note_d1_9.mcin1vis": 1.0, + "sec1.note_d1_6.mcinon2": 1.0, + "sec1.note_d1_6.note_d1_10.mcin2lan": 1.0, + "sec1.note_d1_6.note_d1_10.mcin2att": 1.0, + "sec1.note_d1_6.note_d1_10.mcin2ex": 1.0, + "sec1.note_d1_6.note_d1_10.mcin2vis": 1.0, + "sec1.note_d1_6.impnomci": 1.0, + "sec2.biomarker_find.amylpet": 1.0, + "sec2.biomarker_find.amylcsf": 1.0, + "sec2.biomarker_find.fdgad": 1.0, + "sec2.biomarker_find.hippatr": 1.0, + "sec2.biomarker_find.taupetad": 1.0, + "sec2.biomarker_find.csftau": 1.0, + "sec2.biomarker_find.fdgftld": 1.0, + "sec2.biomarker_find.tpetftld": 1.0, + "sec2.biomarker_find.mrftld": 1.0, + "sec2.biomarker_find.datscan": 1.0, + "sec2.biomarker_find.othbiom": 1.0, + "sec2.image_find.imaglinf": 1.0, + "sec2.image_find.imaglac": 1.0, + "sec2.image_find.imagmach": 1.0, + "sec2.image_find.imagmich": 1.0, + "sec2.image_find.imagmwmh": 1.0, + "sec2.image_find.imagewmh": 1.0, + "sec2.admut": 1.0, + "sec2.ftldmut": 1.0, + "sec2.othmut": 1.0, + "sec3.etio_diag.alzdisif": 1.0, + "sec3.etio_diag.lbdis": 1.0, + "sec3.etio_diag.lbdif": 1.0, + "sec3.etio_diag.park": 1.0, + "sec3.etio_diag.msa": 1.0, + "sec3.etio_diag.msaif": 1.0, + "sec3.etio_diag.note_d1_13.psp": 1.0, + "sec3.etio_diag.note_d1_13.pspif": 1.0, + "sec3.etio_diag.note_d1_13.cort": 1.0, + "sec3.etio_diag.note_d1_13.cortif": 1.0, + "sec3.etio_diag.note_d1_13.ftldmo": 1.0, + "sec3.etio_diag.note_d1_13.ftldmoif": 1.0, + "sec3.etio_diag.note_d1_13.ftldnos": 1.0, + "sec3.etio_diag.note_d1_13.ftldnoif": 1.0, + "sec3.etio_diag.note_d1_13.ftldsubt": 1.0, + "sec3.etio_diag.note_d1_13.ftldsubx": 1.0, + "sec3.etio_diag.cvd": 1.0, + "sec3.etio_diag.cvdif": 1.0, + "sec3.etio_diag.prevstk": 1.0, + "sec3.etio_diag.strokedec": 1.0, + "sec3.etio_diag.stkimag": 1.0, + "sec3.etio_diag.infnetw": 1.0, + "sec3.etio_diag.infwmh": 1.0, + "sec3.etio_diag.esstrem": 1.0, + "sec3.etio_diag.esstreif": 1.0, + "sec3.etio_diag.downs": 1.0, + "sec3.etio_diag.downsif": 1.0, + "sec3.etio_diag.hunt": 1.0, + "sec3.etio_diag.huntif": 1.0, + "sec3.etio_diag.prion": 1.0, + "sec3.etio_diag.prionif": 1.0, + "sec3.etio_diag.brninj": 1.0, + "sec3.etio_diag.brninjif": 1.0, + "sec3.etio_diag.brnincte": 1.0, + "sec3.etio_diag.hyceph": 1.0, + "sec3.etio_diag.hycephif": 1.0, + "sec3.etio_diag.epilep": 1.0, + "sec3.etio_diag.epilepif": 1.0, + "sec3.etio_diag.neop": 1.0, + "sec3.etio_diag.neopif": 1.0, + "sec3.etio_diag.neopstat": 1.0, + "sec3.etio_diag.hiv": 1.0, + "sec3.etio_diag.hivif": 1.0, + "sec3.etio_diag.othcog": 1.0, + "sec3.etio_diag.othcogif": 1.0, + "sec3.condition.dep": 1.0, + "sec3.condition.depif": 1.0, + "sec3.condition.deptreat": 1.0, + "sec3.condition.bipoldx": 1.0, + "sec3.condition.bipoldif": 1.0, + "sec3.condition.schizop": 1.0, + "sec3.condition.schizoif": 1.0, + "sec3.condition.anxiet": 1.0, + "sec3.condition.anxietif": 1.0, + "sec3.condition.delir": 1.0, + "sec3.condition.delirif": 1.0, + "sec3.condition.ptsddx": 1.0, + "sec3.condition.ptsddxif": 1.0, + "sec3.condition.othpsy": 1.0, + "sec3.condition.othpsyif": 1.0, + "sec3.condition.othpsyx": 1.0, + "sec3.condition.alcdem": 1.0, + "sec3.condition.alcdemif": 1.0, + "sec3.condition.alcabuse": 1.0, + "sec3.condition.impsub": 1.0, + "sec3.condition.impsubif": 1.0, + "sec3.condition.dysill": 1.0, + "sec3.condition.dysillif": 1.0, + "sec3.condition.meds": 1.0, + "sec3.condition.medsif": 1.0, + "sec3.condition.cogoth": 1.0, + "sec3.condition.cogothif": 1.0, + "sec3.condition.cogothx": 1.0, + "sec3.condition.cogoth2": 1.0, + "sec3.condition.cogoth2f": 1.0, + "sec3.condition.cogoth2x": 1.0, + "sec3.condition.cogoth3": 1.0, + "sec3.condition.cogoth3f": 1.0, + "sec3.condition.cogoth3x": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_d1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_d1v1.json b/src/encoded/schemas/ivp_d1v1.json new file mode 100644 index 0000000000..a4b5ce472b --- /dev/null +++ b/src/encoded/schemas/ivp_d1v1.json @@ -0,0 +1,1190 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet, Form D1: Clinician Diagnosis – Cognitive Status and Dementia", + "description": "NOTE: This form is to be completed by the clinician. For diagnostic \ncriteria, see UDS Coding Guidebook for Initial Visit Packet, Form D1.\nCheck only one box per response category.\n", + "id": "/profiles/ivp_d1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "WHODIDDX": { + "title": "1 Responses are based on:", + "type": "string", + "enum": [ + "1 Diagnosis from single clinician", + "2 Consensus diagnosis" + ] + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?", + "description": "Skips If Yes, go to #14, PSP. If No, continue to #3, DEMENTED.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?", + "description": "Skips If Yes, go to #5, PROBAD. If No, continue to #4A, MCIAMEM.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "cogn_impair": { + "title": "4. If the subject does not have normal cognition and is not clinically demented, indicate the type of\ncognitive impairment (choose only one impairment from items 4a thru 4e as being “present”;\nmark all others “absent”):", + "type": "object", + "properties": { + "MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains.", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B, MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCINON1": { + "title": "4C Non-amnestic MCI – single domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C,MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "IMPNOMCI": { + "title": "4E Impaired, not MCI", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + } + } + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)", + "description": "Blank if #2, NORMCOG = 1 (Yes).Skips If present, complete #5A, PROBADIF, then go to #7, DLB.", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #5 PROBAD = 0 (Absent)", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #5, PROBAD = 1 (Present).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), #5, PROBAD = 1 (Present), or #6,POSSAD = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "DLB": { + "title": "7 Dementia with Lewy bodies", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #7, DLB = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)", + "description": "Blank if #2, NORMCOG = 1 (Yes).Skips If present, complete #8A, VASCIF, then go to #10, ALCDEM.", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #8, VASC = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "ALCDEM": { + "title": "9 Alcohol-related dementia", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "ALCDEMIF": { + "title": "9A Alcohol-related dementia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #10, ALCDEM = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "DEMUN": { + "title": "10 Dementia of undetermined etiology", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DEMUNIF": { + "title": "10A Dementia of undetermined etiology, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #11, DEMUN = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "FTD": { + "title": "11 Frontotemporal dementia (behavioral/executive dementia)", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "FTDIF": { + "title": "11A Frontotemporal dementia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #12, FTD = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "PPAPH": { + "title": "12 Primary progressive aphasia (aphasic dementia)", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PPAPHIF": { + "title": "12A Primary progressive aphasia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "PNAPH": { + "title": "12A1 Progressive nonfluent aphasia", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SEMDEMAN": { + "title": "12A2 Semantic dementia – anomia plus word comprehension", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SEMDEMAG": { + "title": "12A3 Semantic dementia – agnostic variant", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PPAOTHR": { + "title": "12A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PSP": { + "title": "13 Progressive supranuclear palsy", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PSPIF": { + "title": "13A Progressive supranuclear palsy, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "CORT": { + "title": "14 Corticobasal degeneration", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "CORTIF": { + "title": "14A Corticobasal degeneration, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "HUNT": { + "title": "15 Huntington’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HUNTIF": { + "title": "15A Huntington’s disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "PRION": { + "title": "16 Prion disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PRIONIF": { + "title": "16A Prion disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "MEDS": { + "title": "17 Cognitive dysfunction from medications", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MEDSIF": { + "title": "17A Cognitive dysfunction from medications, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DYSILL": { + "title": "18 Cognitive dysfunction from medical illnesses", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DYSILLIF": { + "title": "18A Cognitive dysfunction from medical illnesses, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DEP": { + "title": "19 Depression", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DEPIF": { + "title": "19A Depression, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "OTHPSY": { + "title": "20 Other major psychiatric illness", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "OTHPSYIF": { + "title": "20A Other major psychiatric illness, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DOWNS": { + "title": "21 Down’s syndrome", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DOWNSIF": { + "title": "21A Down’s syndrome, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "PARK": { + "title": "22 Parkinson’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PARKIF": { + "title": "22A Parkinson’s disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "STROKE": { + "title": "23 Stroke", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "STROKIF": { + "title": "23A Stroke, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "HYCEPH": { + "title": "24 Hydrocephalus", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HYCEPHIF": { + "title": "24A Hydrocephalus, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "BRNINJ": { + "title": "25 Traumatic brain injury", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "BRNINJIF": { + "title": "25A Traumatic brain injury, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "NEOP": { + "title": "26 CNS neoplasm", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "NEOPIF": { + "title": "26A CNS neoplasm, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTH": { + "title": "27 Other cognitive/neurologic condition", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "COGOTHIF": { + "title": "27A Other cognitive/neurologic condition, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTHX": { + "title": "27B Other cognitive/neurologic condition, specify", + "description": "Blank if #28, COGOTH = 0 (Absent).", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "WHODIDDX": { + "title": "1 Responses are based on:" + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?" + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?" + }, + "cogn_impair.MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only" + }, + "cogn_impair.MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains." + }, + "cogn_impair.MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain" + }, + "cogn_impair.MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain" + }, + "cogn_impair.MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain" + }, + "cogn_impair.MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain" + }, + "cogn_impair.MCINON1": { + "title": "4C Non-amnestic MCI – single domain" + }, + "cogn_impair.MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language" + }, + "cogn_impair.MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention" + }, + "cogn_impair.MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function" + }, + "cogn_impair.MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial" + }, + "cogn_impair.MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains" + }, + "cogn_impair.MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language" + }, + "cogn_impair.MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention" + }, + "cogn_impair.MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function" + }, + "cogn_impair.MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial" + }, + "cogn_impair.IMPNOMCI": { + "title": "4E Impaired, not MCI" + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)" + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing" + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)" + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing" + }, + "DLB": { + "title": "7 Dementia with Lewy bodies" + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing" + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)" + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing" + }, + "ALCDEM": { + "title": "9 Alcohol-related dementia" + }, + "ALCDEMIF": { + "title": "9A Alcohol-related dementia, primary or contributing" + }, + "DEMUN": { + "title": "10 Dementia of undetermined etiology" + }, + "DEMUNIF": { + "title": "10A Dementia of undetermined etiology, primary or contributing" + }, + "FTD": { + "title": "11 Frontotemporal dementia (behavioral/executive dementia)" + }, + "FTDIF": { + "title": "11A Frontotemporal dementia, primary or contributing" + }, + "PPAPH": { + "title": "12 Primary progressive aphasia (aphasic dementia)" + }, + "PPAPHIF": { + "title": "12A Primary progressive aphasia, primary or contributing" + }, + "PNAPH": { + "title": "12A1 Progressive nonfluent aphasia" + }, + "SEMDEMAN": { + "title": "12A2 Semantic dementia – anomia plus word comprehension" + }, + "SEMDEMAG": { + "title": "12A3 Semantic dementia – agnosic variant" + }, + "PPAOTHR": { + "title": "12A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)" + }, + "PSP": { + "title": "13 Progressive supranuclear palsy" + }, + "PSPIF": { + "title": "13A Progressive supranuclear palsy, primary or contributing" + }, + "CORT": { + "title": "14 Corticobasal degeneration" + }, + "CORTIF": { + "title": "14A Corticobasal degeneration, primary or contributing" + }, + "HUNT": { + "title": "15 Huntington’s disease" + }, + "HUNTIF": { + "title": "15A Huntington’s disease, primary or contributing" + }, + "PRION": { + "title": "16 Prion disease" + }, + "PRIONIF": { + "title": "16A Prion disease, primary or contributing" + }, + "MEDS": { + "title": "17 Cognitive dysfunction from medications" + }, + "MEDSIF": { + "title": "17A Cognitive dysfunction from medications, primary or contributing" + }, + "DYSILL": { + "title": "18 Cognitive dysfunction from medical illnesses" + }, + "DYSILLIF": { + "title": "18A Cognitive dysfunction from medical illnesses, primary or contributing" + }, + "DEP": { + "title": "19 Depression" + }, + "DEPIF": { + "title": "19A Depression, primary or contributing" + }, + "OTHPSY": { + "title": "20 Other major psychiatric illness" + }, + "OTHPSYIF": { + "title": "20A Other major psychiatric illness, primary or contributing" + }, + "DOWNS": { + "title": "21 Down’s syndrome" + }, + "DOWNSIF": { + "title": "21A Down’s syndrome, primary or contributing" + }, + "PARK": { + "title": "22 Parkinson’s disease" + }, + "PARKIF": { + "title": "22A Parkinson’s disease, primary or contributing" + }, + "STROKE": { + "title": "23 Stroke" + }, + "STROKIF": { + "title": "23A Stroke, primary or contributing" + }, + "HYCEPH": { + "title": "24 Hydrocephalus" + }, + "HYCEPHIF": { + "title": "24A Hydrocephalus, primary or contributing" + }, + "BRNINJ": { + "title": "25 Traumatic brain injury" + }, + "BRNINJIF": { + "title": "25A Traumatic brain injury, primary or contributing" + }, + "NEOP": { + "title": "26 CNS neoplasm" + }, + "NEOPIF": { + "title": "26A CNS neoplasm, primary or contributing" + }, + "COGOTH": { + "title": "27 Other cognitive/neurologic condition" + }, + "COGOTHIF": { + "title": "27A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTHX": { + "title": "27B Other cognitive/neurologic condition, specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "WHODIDDX": { + "title": "1 Responses are based on:" + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?" + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?" + }, + "cogn_impair.MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only" + }, + "cogn_impair.MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains." + }, + "cogn_impair.MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain" + }, + "cogn_impair.MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain" + }, + "cogn_impair.MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain" + }, + "cogn_impair.MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain" + }, + "cogn_impair.MCINON1": { + "title": "4C Non-amnestic MCI – single domain" + }, + "cogn_impair.MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language" + }, + "cogn_impair.MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention" + }, + "cogn_impair.MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function" + }, + "cogn_impair.MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial" + }, + "cogn_impair.MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains" + }, + "cogn_impair.MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language" + }, + "cogn_impair.MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention" + }, + "cogn_impair.MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function" + }, + "cogn_impair.MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial" + }, + "cogn_impair.IMPNOMCI": { + "title": "4E Impaired, not MCI" + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)" + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing" + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)" + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing" + }, + "DLB": { + "title": "7 Dementia with Lewy bodies" + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing" + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)" + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing" + }, + "ALCDEM": { + "title": "9 Alcohol-related dementia" + }, + "ALCDEMIF": { + "title": "9A Alcohol-related dementia, primary or contributing" + }, + "DEMUN": { + "title": "10 Dementia of undetermined etiology" + }, + "DEMUNIF": { + "title": "10A Dementia of undetermined etiology, primary or contributing" + }, + "FTD": { + "title": "11 Frontotemporal dementia (behavioral/executive dementia)" + }, + "FTDIF": { + "title": "11A Frontotemporal dementia, primary or contributing" + }, + "PPAPH": { + "title": "12 Primary progressive aphasia (aphasic dementia)" + }, + "PPAPHIF": { + "title": "12A Primary progressive aphasia, primary or contributing" + }, + "PNAPH": { + "title": "12A1 Progressive nonfluent aphasia" + }, + "SEMDEMAN": { + "title": "12A2 Semantic dementia – anomia plus word comprehension" + }, + "SEMDEMAG": { + "title": "12A3 Semantic dementia – agnosic variant" + }, + "PPAOTHR": { + "title": "12A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)" + }, + "PSP": { + "title": "13 Progressive supranuclear palsy" + }, + "PSPIF": { + "title": "13A Progressive supranuclear palsy, primary or contributing" + }, + "CORT": { + "title": "14 Corticobasal degeneration" + }, + "CORTIF": { + "title": "14A Corticobasal degeneration, primary or contributing" + }, + "HUNT": { + "title": "15 Huntington’s disease" + }, + "HUNTIF": { + "title": "15A Huntington’s disease, primary or contributing" + }, + "PRION": { + "title": "16 Prion disease" + }, + "PRIONIF": { + "title": "16A Prion disease, primary or contributing" + }, + "MEDS": { + "title": "17 Cognitive dysfunction from medications" + }, + "MEDSIF": { + "title": "17A Cognitive dysfunction from medications, primary or contributing" + }, + "DYSILL": { + "title": "18 Cognitive dysfunction from medical illnesses" + }, + "DYSILLIF": { + "title": "18A Cognitive dysfunction from medical illnesses, primary or contributing" + }, + "DEP": { + "title": "19 Depression" + }, + "DEPIF": { + "title": "19A Depression, primary or contributing" + }, + "OTHPSY": { + "title": "20 Other major psychiatric illness" + }, + "OTHPSYIF": { + "title": "20A Other major psychiatric illness, primary or contributing" + }, + "DOWNS": { + "title": "21 Down’s syndrome" + }, + "DOWNSIF": { + "title": "21A Down’s syndrome, primary or contributing" + }, + "PARK": { + "title": "22 Parkinson’s disease" + }, + "PARKIF": { + "title": "22A Parkinson’s disease, primary or contributing" + }, + "STROKE": { + "title": "23 Stroke" + }, + "STROKIF": { + "title": "23A Stroke, primary or contributing" + }, + "HYCEPH": { + "title": "24 Hydrocephalus" + }, + "HYCEPHIF": { + "title": "24A Hydrocephalus, primary or contributing" + }, + "BRNINJ": { + "title": "25 Traumatic brain injury" + }, + "BRNINJIF": { + "title": "25A Traumatic brain injury, primary or contributing" + }, + "NEOP": { + "title": "26 CNS neoplasm" + }, + "NEOPIF": { + "title": "26A CNS neoplasm, primary or contributing" + }, + "COGOTH": { + "title": "27 Other cognitive/neurologic condition" + }, + "COGOTHIF": { + "title": "27A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTHX": { + "title": "27B Other cognitive/neurologic condition, specify" + } + }, + "boost_values": { + "patient": 1.0, + "WHODIDDX": 1.0, + "NORMCOG": 1.0, + "DEMENTED": 1.0, + "cogn_impair.MCIAMEM": 1.0, + "cogn_impair.MCIAPLUS": 1.0, + "cogn_impair.MCIAPLAN": 1.0, + "cogn_impair.MCIAPATT": 1.0, + "cogn_impair.MCIAPEX": 1.0, + "cogn_impair.MCIAPVIS": 1.0, + "cogn_impair.MCINON1": 1.0, + "cogn_impair.MCIN1LAN": 1.0, + "cogn_impair.MCIN1ATT": 1.0, + "cogn_impair.MCIN1EX": 1.0, + "cogn_impair.MCIN1VIS": 1.0, + "cogn_impair.MCINON2": 1.0, + "cogn_impair.MCIN2LAN": 1.0, + "cogn_impair.MCIN2ATT": 1.0, + "cogn_impair.MCIN2EX": 1.0, + "cogn_impair.MCIN2VIS": 1.0, + "cogn_impair.IMPNOMCI": 1.0, + "PROBAD": 1.0, + "PROBADIF": 1.0, + "POSSAD": 1.0, + "POSSADIF": 1.0, + "DLB": 1.0, + "DLBIF": 1.0, + "VASC": 1.0, + "VASCIF": 1.0, + "ALCDEM": 1.0, + "ALCDEMIF": 1.0, + "DEMUN": 1.0, + "DEMUNIF": 1.0, + "FTD": 1.0, + "FTDIF": 1.0, + "PPAPH": 1.0, + "PPAPHIF": 1.0, + "PNAPH": 1.0, + "SEMDEMAN": 1.0, + "SEMDEMAG": 1.0, + "PPAOTHR": 1.0, + "PSP": 1.0, + "PSPIF": 1.0, + "CORT": 1.0, + "CORTIF": 1.0, + "HUNT": 1.0, + "HUNTIF": 1.0, + "PRION": 1.0, + "PRIONIF": 1.0, + "MEDS": 1.0, + "MEDSIF": 1.0, + "DYSILL": 1.0, + "DYSILLIF": 1.0, + "DEP": 1.0, + "DEPIF": 1.0, + "OTHPSY": 1.0, + "OTHPSYIF": 1.0, + "DOWNS": 1.0, + "DOWNSIF": 1.0, + "PARK": 1.0, + "PARKIF": 1.0, + "STROKE": 1.0, + "STROKIF": 1.0, + "HYCEPH": 1.0, + "HYCEPHIF": 1.0, + "BRNINJ": 1.0, + "BRNINJIF": 1.0, + "NEOP": 1.0, + "NEOPIF": 1.0, + "COGOTH": 1.0, + "COGOTHIF": 1.0, + "COGOTHX": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_d1v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_d1v2.json b/src/encoded/schemas/ivp_d1v2.json new file mode 100644 index 0000000000..b0ac0e6670 --- /dev/null +++ b/src/encoded/schemas/ivp_d1v2.json @@ -0,0 +1,1311 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet, Form D1: Clinician Diagnosis – Cognitive Status and Dementia", + "description": "NOTE: This form is to be completed by the clinician. For diagnostic \ncriteria, see UDS Coding Guidebook for Initial Visit Packet, Form D1.\nCheck only one box per response category.\n", + "id": "/profiles/ivp_d1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "WHODIDDX": { + "title": "1 Responses are based on:", + "type": "string", + "enum": [ + "1 Diagnosis from single clinician", + "2 Consensus diagnosis" + ] + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?", + "description": "Skips If Yes, go to #14, PSP. If No, continue to #3, DEMENTED.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?", + "description": "Skips If Yes, go to #5, PROBAD. If No, continue to #4A, MCIAMEM.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "cogn_impair": { + "title": "4. If the subject does not have normal cognition and is not clinically demented, indicate the type of\ncognitive impairment (choose only one impairment from items 4a thru 4e as being “present”;\nmark all others “absent”) and then designate the suspected underlying cause(s) of the impairment\nby completing items 5–30:\n", + + "type": "object", + "properties": { + "MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains.", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B, MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4B,MCIAPLUS = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCINON1": { + "title": "4C Non-amnestic MCI – single domain", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C,MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4C.MCINON1 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial", + "description": "Blank if #2, NORMCOG = 1 (Yes), #3, DEMENTED = 1 (Yes), or #4D.MCINON2 = 0 (Absent).", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "IMPNOMCI": { + "title": "4E Impaired, not MCI", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #3, DEMENTED = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + } + } + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)", + "description": "Blank if #2, NORMCOG = 1 (Yes).Skips If present, complete #5A, PROBADIF, then go to #7, DLB.", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #5 PROBAD = 0 (Absent)", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #5, PROBAD = 1 (Present).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), #5, PROBAD = 1 (Present), or #6,POSSAD = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "DLB": { + "title": "7 Dementia with Lewy bodies", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #7, DLB = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)", + "description": "Blank if #2, NORMCOG = 1 (Yes).Skips If present, complete #8A, VASCIF, then go to #10, ALCDEM.", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #8, VASC = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "VASCPS": { + "title": "9 Vascular dementia (NINDS/AIREN Possible)", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #8, VASC = 1(Present)", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "VASCPSIF": { + "title": "9A Vascular dementia (NINDS/AIREN Possible), primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #8, VASC = 1 (Present) or #9, VASCPS = 0.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "ALCDEM": { + "title": "10 Alcohol-related dementia", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "ALCDEMIF": { + "title": "10A Alcohol-related dementia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #10, ALCDEM = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "DEMUN": { + "title": "11 Dementia of undetermined etiology", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DEMUNIF": { + "title": "11A Dementia of undetermined etiology, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #11, DEMUN = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "FTD": { + "title": "12 Frontotemporal dementia (behavioral/executive dementia)", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "FTDIF": { + "title": "12A Frontotemporal dementia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #12, FTD = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "PPAPH": { + "title": "13 Primary progressive aphasia (aphasic dementia)", + "description": "Blank if #2, NORMCOG = 1 (Yes).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PPAPHIF": { + "title": "13A Primary progressive aphasia, primary or contributing", + "description": "Blank if #2, NORMCOG = 1 (Yes), or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing" + ] + }, + "PNAPH": { + "title": "13A1 Progressive nonfluent aphasia", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SEMDEMAN": { + "title": "13A2 Semantic dementia – anomia plus word comprehension", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "SEMDEMAG": { + "title": "13A3 Semantic dementia – agnosic variant", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PPAOTHR": { + "title": "13A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)", + "description": "Blank if #2, NORMCOG = 1 (Yes) or #13, PPAPH = 0 (Absent).", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PSP": { + "title": "14 Progressive supranuclear palsy", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PSPIF": { + "title": "14A Progressive supranuclear palsy, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "CORT": { + "title": "15 Corticobasal degeneration", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "CORTIF": { + "title": "15A Corticobasal degeneration, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "HUNT": { + "title": "16 Huntington’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HUNTIF": { + "title": "16A Huntington’s disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "PRION": { + "title": "17 Prion disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PRIONIF": { + "title": "17A Prion disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "MEDS": { + "title": "18 Cognitive dysfunction from medications", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "MEDSIF": { + "title": "18A Cognitive dysfunction from medications, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DYSILL": { + "title": "19 Cognitive dysfunction from medical illnesses", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DYSILLIF": { + "title": "19A Cognitive dysfunction from medical illnesses, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DEP": { + "title": "20 Depression", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DEPIF": { + "title": "20A Depression, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "OTHPSY": { + "title": "21 Other major psychiatric illness", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "OTHPSYIF": { + "title": "21A Other major psychiatric illness, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "DOWNS": { + "title": "22 Down’s syndrome", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "DOWNSIF": { + "title": "22A Down’s syndrome, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "PARK": { + "title": "23 Parkinson’s disease", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "PARKIF": { + "title": "23A Parkinson’s disease, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "STROKE": { + "title": "24 Stroke", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "STROKIF": { + "title": "24A Stroke, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "HYCEPH": { + "title": "25 Hydrocephalus", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "HYCEPHIF": { + "title": "25A Hydrocephalus, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "BRNINJ": { + "title": "26 Traumatic brain injury", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "BRNINJIF": { + "title": "26A Traumatic brain injury, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "NEOP": { + "title": "27 CNS neoplasm", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "NEOPIF": { + "title": "27A CNS neoplasm, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTH": { + "title": "28 Other cognitive/neurologic condition", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "COGOTHIF": { + "title": "28A Other cognitive/neurologic condition, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTHX": { + "title": "28B Other cognitive/neurologic condition, specify", + "description": "Blank if #28, COGOTH = 0 (Absent).", + "type": "string" + }, + "COGOTH2": { + "title": "29 Other cognitive/neurologic condition", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "COGOTH2F": { + "title": "29A Other cognitive/neurologic condition, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTH2X": { + "title": "29B Other cognitive/neurologic condition, specify", + "description": "Blank if #29, COGOTH2 = 0 (Absent).", + "type": "string" + }, + "COGOTH3": { + "title": "30 Other cognitive/neurologic condition", + "type": "string", + "enum": [ + "0 Absent", + "1 Present" + ] + }, + "COGOTH3F": { + "title": "30A Other cognitive/neurologic condition, primary or contributing", + "description": "Should be coded only if condition is present AND subject is cognitively impaired, otherwise leave blank.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "COGOTH3X": { + "title": "30B Other cognitive/neurologic condition, specify", + "description": "Blank if #30, COGOTH3 = 0 (Absent).", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "WHODIDDX": { + "title": "1 Responses are based on:" + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?" + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?" + }, + "cogn_impair.MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only" + }, + "cogn_impair.MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains." + }, + "cogn_impair.MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain" + }, + "cogn_impair.MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain" + }, + "cogn_impair.MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain" + }, + "cogn_impair.MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain" + }, + "cogn_impair.MCINON1": { + "title": "4C Non-amnestic MCI – single domain" + }, + "cogn_impair.MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language" + }, + "cogn_impair.MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention" + }, + "cogn_impair.MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function" + }, + "cogn_impair.MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial" + }, + "cogn_impair.MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains" + }, + "cogn_impair.MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language" + }, + "cogn_impair.MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention" + }, + "cogn_impair.MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function" + }, + "cogn_impair.MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial" + }, + "cogn_impair.IMPNOMCI": { + "title": "4E Impaired, not MCI" + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)" + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing" + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)" + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing" + }, + "DLB": { + "title": "7 Dementia with Lewy bodies" + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing" + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)" + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing" + }, + "VASCPS": { + "title": "9 Vascular dementia (NINDS/AIREN Possible)" + }, + "VASCPSIF": { + "title": "9A Vascular dementia (NINDS/AIREN Possible), primary or contributing" + }, + "ALCDEM": { + "title": "10 Alcohol-related dementia" + }, + "ALCDEMIF": { + "title": "10A Alcohol-related dementia, primary or contributing" + }, + "DEMUN": { + "title": "11 Dementia of undetermined etiology" + }, + "DEMUNIF": { + "title": "11A Dementia of undetermined etiology, primary or contributing" + }, + "FTD": { + "title": "12 Frontotemporal dementia (behavioral/executive dementia)" + }, + "FTDIF": { + "title": "12A Frontotemporal dementia, primary or contributing" + }, + "PPAPH": { + "title": "13 Primary progressive aphasia (aphasic dementia)" + }, + "PPAPHIF": { + "title": "13A Primary progressive aphasia, primary or contributing" + }, + "PNAPH": { + "title": "13A1 Progressive nonfluent aphasia" + }, + "SEMDEMAN": { + "title": "13A2 Semantic dementia – anomia plus word comprehension" + }, + "SEMDEMAG": { + "title": "13A3 Semantic dementia – agnosic variant" + }, + "PPAOTHR": { + "title": "13A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)" + }, + "PSP": { + "title": "14 Progressive supranuclear palsy" + }, + "PSPIF": { + "title": "14A Progressive supranuclear palsy, primary or contributing" + }, + "CORT": { + "title": "15 Corticobasal degeneration" + }, + "CORTIF": { + "title": "15A Corticobasal degeneration, primary or contributing" + }, + "HUNT": { + "title": "16 Huntington’s disease" + }, + "HUNTIF": { + "title": "16A Huntington’s disease, primary or contributing" + }, + "PRION": { + "title": "17 Prion disease" + }, + "PRIONIF": { + "title": "17A Prion disease, primary or contributing" + }, + "MEDS": { + "title": "18 Cognitive dysfunction from medications" + }, + "MEDSIF": { + "title": "18A Cognitive dysfunction from medications, primary or contributing" + }, + "DYSILL": { + "title": "19 Cognitive dysfunction from medical illnesses" + }, + "DYSILLIF": { + "title": "19A Cognitive dysfunction from medical illnesses, primary or contributing" + }, + "DEP": { + "title": "20 Depression" + }, + "DEPIF": { + "title": "20A Depression, primary or contributing" + }, + "OTHPSY": { + "title": "21 Other major psychiatric illness" + }, + "OTHPSYIF": { + "title": "21A Other major psychiatric illness, primary or contributing" + }, + "DOWNS": { + "title": "22 Down’s syndrome" + }, + "DOWNSIF": { + "title": "22A Down’s syndrome, primary or contributing" + }, + "PARK": { + "title": "23 Parkinson’s disease" + }, + "PARKIF": { + "title": "23A Parkinson’s disease, primary or contributing" + }, + "STROKE": { + "title": "24 Stroke" + }, + "STROKIF": { + "title": "24A Stroke, primary or contributing" + }, + "HYCEPH": { + "title": "25 Hydrocephalus" + }, + "HYCEPHIF": { + "title": "25A Hydrocephalus, primary or contributing" + }, + "BRNINJ": { + "title": "26 Traumatic brain injury" + }, + "BRNINJIF": { + "title": "26A Traumatic brain injury, primary or contributing" + }, + "NEOP": { + "title": "27 CNS neoplasm" + }, + "NEOPIF": { + "title": "27A CNS neoplasm, primary or contributing" + }, + "COGOTH": { + "title": "28 Other cognitive/neurologic condition" + }, + "COGOTHIF": { + "title": "28A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTHX": { + "title": "28B Other cognitive/neurologic condition, specify" + }, + "COGOTH2": { + "title": "29 Other cognitive/neurologic condition" + }, + "COGOTH2F": { + "title": "29A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTH2X": { + "title": "29B Other cognitive/neurologic condition, specify" + }, + "COGOTH3": { + "title": "30 Other cognitive/neurologic condition" + }, + "COGOTH3F": { + "title": "30A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTH3X": { + "title": "30B Other cognitive/neurologic condition, specify" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "WHODIDDX": { + "title": "1 Responses are based on:" + }, + "NORMCOG": { + "title": "2 Does the subject have normal cognition (no MCI, dementia, or otherneurological condition resulting in cognitive impairment)?" + }, + "DEMENTED": { + "title": "3 Does the subject meet criteria for dementia (in accordance withstandard criteria for dementia of the Alzheimer’s type or for other non-Alzheimer’s dementing disorders)?" + }, + "cogn_impair.MCIAMEM": { + "title": "4A Amnestic MCI – memory impairment only" + }, + "cogn_impair.MCIAPLUS": { + "title": "4B Amnestic MCI – memory impairment plus one or more other domains." + }, + "cogn_impair.MCIAPLAN": { + "title": "4B1 Amnestic MCI – memory impairment plus language domain" + }, + "cogn_impair.MCIAPATT": { + "title": "4B2 Amnestic MCI – memory impairment plus attention domain" + }, + "cogn_impair.MCIAPEX": { + "title": "4B3 Amnestic MCI – memory impairment plus executive function domain" + }, + "cogn_impair.MCIAPVIS": { + "title": "4B4 Amnestic MCI – memory impairment plus visuospatial domain" + }, + "cogn_impair.MCINON1": { + "title": "4C Non-amnestic MCI – single domain" + }, + "cogn_impair.MCIN1LAN": { + "title": "4C1 Non-amnestic MCI – single domain, language" + }, + "cogn_impair.MCIN1ATT": { + "title": "4C2 Non-amnestic MCI – single domain, attention" + }, + "cogn_impair.MCIN1EX": { + "title": "4C3 Non-amnestic MCI – single domain, executive function" + }, + "cogn_impair.MCIN1VIS": { + "title": "4C4 Non-amnestic MCI – single domain, visuospatial" + }, + "cogn_impair.MCINON2": { + "title": "4D Non-amnestic MCI – multiple domains" + }, + "cogn_impair.MCIN2LAN": { + "title": "4D1 Non-amnestic MCI – multiple domains, language" + }, + "cogn_impair.MCIN2ATT": { + "title": "4D2 Non-amnestic MCI – multiple domains, attention" + }, + "cogn_impair.MCIN2EX": { + "title": "4D3 Non-amnestic MCI – multiple domains, executive function" + }, + "cogn_impair.MCIN2VIS": { + "title": "4D4 Non-amnestic MCI – multiple domains, visuospatial" + }, + "cogn_impair.IMPNOMCI": { + "title": "4E Impaired, not MCI" + }, + "PROBAD": { + "title": "5 Probable AD (NINCDS/ADRDA)" + }, + "PROBADIF": { + "title": "5A Probable AD, primary or contributing" + }, + "POSSAD": { + "title": "6 Possible AD (NINCDS/ADRDA)" + }, + "POSSADIF": { + "title": "6A Possible AD, primary or contributing" + }, + "DLB": { + "title": "7 Dementia with Lewy bodies" + }, + "DLBIF": { + "title": "7A Dementia with Lewy bodies, primary or contributing" + }, + "VASC": { + "title": "8 Vascular dementia (NINDS/AIREN Probable)" + }, + "VASCIF": { + "title": "8A Vascular dementia (NINDS/AIREN Probable), primary or contributing" + }, + "VASCPS": { + "title": "9 Vascular dementia (NINDS/AIREN Possible)" + }, + "VASCPSIF": { + "title": "9A Vascular dementia (NINDS/AIREN Possible), primary or contributing" + }, + "ALCDEM": { + "title": "10 Alcohol-related dementia" + }, + "ALCDEMIF": { + "title": "10A Alcohol-related dementia, primary or contributing" + }, + "DEMUN": { + "title": "11 Dementia of undetermined etiology" + }, + "DEMUNIF": { + "title": "11A Dementia of undetermined etiology, primary or contributing" + }, + "FTD": { + "title": "12 Frontotemporal dementia (behavioral/executive dementia)" + }, + "FTDIF": { + "title": "12A Frontotemporal dementia, primary or contributing" + }, + "PPAPH": { + "title": "13 Primary progressive aphasia (aphasic dementia)" + }, + "PPAPHIF": { + "title": "13A Primary progressive aphasia, primary or contributing" + }, + "PNAPH": { + "title": "13A1 Progressive nonfluent aphasia" + }, + "SEMDEMAN": { + "title": "13A2 Semantic dementia – anomia plus word comprehension" + }, + "SEMDEMAG": { + "title": "13A3 Semantic dementia – agnosic variant" + }, + "PPAOTHR": { + "title": "13A4 Other (e.g. logopenic, anomic, transcortical, word deafness, syntacticcomprehension, motor speech disorder)" + }, + "PSP": { + "title": "14 Progressive supranuclear palsy" + }, + "PSPIF": { + "title": "14A Progressive supranuclear palsy, primary or contributing" + }, + "CORT": { + "title": "15 Corticobasal degeneration" + }, + "CORTIF": { + "title": "15A Corticobasal degeneration, primary or contributing" + }, + "HUNT": { + "title": "16 Huntington’s disease" + }, + "HUNTIF": { + "title": "16A Huntington’s disease, primary or contributing" + }, + "PRION": { + "title": "17 Prion disease" + }, + "PRIONIF": { + "title": "17A Prion disease, primary or contributing" + }, + "MEDS": { + "title": "18 Cognitive dysfunction from medications" + }, + "MEDSIF": { + "title": "18A Cognitive dysfunction from medications, primary or contributing" + }, + "DYSILL": { + "title": "19 Cognitive dysfunction from medical illnesses" + }, + "DYSILLIF": { + "title": "19A Cognitive dysfunction from medical illnesses, primary or contributing" + }, + "DEP": { + "title": "20 Depression" + }, + "DEPIF": { + "title": "20A Depression, primary or contributing" + }, + "OTHPSY": { + "title": "21 Other major psychiatric illness" + }, + "OTHPSYIF": { + "title": "21A Other major psychiatric illness, primary or contributing" + }, + "DOWNS": { + "title": "22 Down’s syndrome" + }, + "DOWNSIF": { + "title": "22A Down’s syndrome, primary or contributing" + }, + "PARK": { + "title": "23 Parkinson’s disease" + }, + "PARKIF": { + "title": "23A Parkinson’s disease, primary or contributing" + }, + "STROKE": { + "title": "24 Stroke" + }, + "STROKIF": { + "title": "24A Stroke, primary or contributing" + }, + "HYCEPH": { + "title": "25 Hydrocephalus" + }, + "HYCEPHIF": { + "title": "25A Hydrocephalus, primary or contributing" + }, + "BRNINJ": { + "title": "26 Traumatic brain injury" + }, + "BRNINJIF": { + "title": "26A Traumatic brain injury, primary or contributing" + }, + "NEOP": { + "title": "27 CNS neoplasm" + }, + "NEOPIF": { + "title": "27A CNS neoplasm, primary or contributing" + }, + "COGOTH": { + "title": "28 Other cognitive/neurologic condition" + }, + "COGOTHIF": { + "title": "28A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTHX": { + "title": "28B Other cognitive/neurologic condition, specify" + }, + "COGOTH2": { + "title": "29 Other cognitive/neurologic condition" + }, + "COGOTH2F": { + "title": "29A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTH2X": { + "title": "29B Other cognitive/neurologic condition, specify" + }, + "COGOTH3": { + "title": "30 Other cognitive/neurologic condition" + }, + "COGOTH3F": { + "title": "30A Other cognitive/neurologic condition, primary or contributing" + }, + "COGOTH3X": { + "title": "30B Other cognitive/neurologic condition, specify" + } + }, + "boost_values": { + "patient": 1.0, + "WHODIDDX": 1.0, + "NORMCOG": 1.0, + "DEMENTED": 1.0, + "cogn_impair.MCIAMEM": 1.0, + "cogn_impair.MCIAPLUS": 1.0, + "cogn_impair.MCIAPLAN": 1.0, + "cogn_impair.MCIAPATT": 1.0, + "cogn_impair.MCIAPEX": 1.0, + "cogn_impair.MCIAPVIS": 1.0, + "cogn_impair.MCINON1": 1.0, + "cogn_impair.MCIN1LAN": 1.0, + "cogn_impair.MCIN1ATT": 1.0, + "cogn_impair.MCIN1EX": 1.0, + "cogn_impair.MCIN1VIS": 1.0, + "cogn_impair.MCINON2": 1.0, + "cogn_impair.MCIN2LAN": 1.0, + "cogn_impair.MCIN2ATT": 1.0, + "cogn_impair.MCIN2EX": 1.0, + "cogn_impair.MCIN2VIS": 1.0, + "cogn_impair.IMPNOMCI": 1.0, + "PROBAD": 1.0, + "PROBADIF": 1.0, + "POSSAD": 1.0, + "POSSADIF": 1.0, + "DLB": 1.0, + "DLBIF": 1.0, + "VASC": 1.0, + "VASCIF": 1.0, + "VASCPS": 1.0, + "VASCPSIF": 1.0, + "ALCDEM": 1.0, + "ALCDEMIF": 1.0, + "DEMUN": 1.0, + "DEMUNIF": 1.0, + "FTD": 1.0, + "FTDIF": 1.0, + "PPAPH": 1.0, + "PPAPHIF": 1.0, + "PNAPH": 1.0, + "SEMDEMAN": 1.0, + "SEMDEMAG": 1.0, + "PPAOTHR": 1.0, + "PSP": 1.0, + "PSPIF": 1.0, + "CORT": 1.0, + "CORTIF": 1.0, + "HUNT": 1.0, + "HUNTIF": 1.0, + "PRION": 1.0, + "PRIONIF": 1.0, + "MEDS": 1.0, + "MEDSIF": 1.0, + "DYSILL": 1.0, + "DYSILLIF": 1.0, + "DEP": 1.0, + "DEPIF": 1.0, + "OTHPSY": 1.0, + "OTHPSYIF": 1.0, + "DOWNS": 1.0, + "DOWNSIF": 1.0, + "PARK": 1.0, + "PARKIF": 1.0, + "STROKE": 1.0, + "STROKIF": 1.0, + "HYCEPH": 1.0, + "HYCEPHIF": 1.0, + "BRNINJ": 1.0, + "BRNINJIF": 1.0, + "NEOP": 1.0, + "NEOPIF": 1.0, + "COGOTH": 1.0, + "COGOTHIF": 1.0, + "COGOTHX": 1.0, + "COGOTH2": 1.0, + "COGOTH2F": 1.0, + "COGOTH2X": 1.0, + "COGOTH3": 1.0, + "COGOTH3F": 1.0, + "COGOTH3X": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_d1v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_d1v3.json b/src/encoded/schemas/ivp_d1v3.json new file mode 100644 index 0000000000..5e0d480cd6 --- /dev/null +++ b/src/encoded/schemas/ivp_d1v3.json @@ -0,0 +1,2129 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM D1: Clinician Diagnosis", + "description": "INSTRUCTIONS: This form is to be completed by the clinician. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form D1. Link to NACC Coding Guidebook. Check only one box per question.\nThis form is divided into three main sections:\nSection 1 Cognitive Status: Normal cognition/MCI/dementia and dementia syndrome\nSection 2 Biomarkers, imaging and genetics: Neurodegenerative imaging and CSF biomarkers, imaging evidence for CVD, and known genetic mutations for AD and FTLD\nSection 3 Etiological diagnoses: presumed etiological diagnoses for the cognitive disorder.", + "id": "/profiles/ivp_d1v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "dxmethod", + "sec1", + "sec2", + "sec3" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_d1.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "dxmethod": { + "title": "1. Diagnosis method - responses in this form are based on diagnosis by:", + "type": "string", + "enum": [ + "1 A single clinician", + "2 A formal consensus panel", + "3 Other (e.g., two or more clinicians or other informal group)" + ] + }, + "sec1": { + "title": "SECTION 1: Cognitive and behavioral status", + "type": "object", + "properties": { + "normcog": { + "title": "2. Does the subject have normal cognition (global CDR=0 and/or neuropsychological testing within normal range) and normal behavior (i.e., the subject does not exhibit behavior sufficient to diagnose MCI or dementia due to FTLD or LBD)?", + "description": "ALL-CAUSE DEMENTIA\nThe subject has cognitive or behavioral (neuropsychiatric) symptoms that meet all of the following criteria:\n- Interfere with ability to function as before at work or at usual activities?\n- Represent a decline from previous levels of functioning?\n- Are not explained by delirium or major psychiatric disorder?\n- Include cognitive impairment detected and diagnosed through a combination of 1) history-taking and 2) objective\ncognitive\nassessment (bedside or neuropsychological testing)?AND\nImpairment in one* or more of the following domains.\n- Impaired ability to acquire and remember new information\n- Impaired reasoning and handling of complex tasks, poor judgment\n- Impaired visuospatial abilities\n- Impaired language functions\n- Changes in personality, behavior, or comportment\n*In the event of single-domain impairment (e.g., language in PPA, behavior in bvFTD, posterior cortical atrophy),\nthe subject must not fulfill criteria for MCI.", + "type": "string", + "enum": [ + "0 No (CONTINUE TO QUESTION 3)", + "1 Yes (SKIP TO QUESTION 6)" + ] + }, + "demented": { + "title": "3. Does the subject meet the criteria for dementia?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 5)", + "1 Yes (CONTINUE TO QUESTION 4)" + ] + }, + "note_d1_3": { + "title": "4.If the subject meets criteria for dementia, answer Questions 4a-4f below and then SKIP TO QUESTION 6.", + "description": "Based entirely on the history and examination (including neuropsychological testing), what is the cognitive/behavioral syndrome? Select one or more as Present; all others will default to Absent in the NACC database.\nDementia syndrome", + "type": "object", + "properties": { + "demen_synd": { + "title": "Dementia syndrome", + "type": "object", + "properties": { + "amndem": { + "title": "4a. Amnestic multidomain dementia syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "pca": { + "title": "4b. Posterior cortical atrophy syndrome (or primary visual presentation)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "ppasyn": { + "title": "4c. Primary progressive aphasia (PPA) syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "ppasynt": { + "title": "4c1.", + "type": "string", + "enum": [ + "1 Meets criteria for semantic PPA", + "2 Meets criteria for logopenic PPA", + "3 Meets criteria for nonfluent/agrammatic PPA", + "4 PPA other/not otherwise specified" + ] + }, + "ftdsyn": { + "title": "4d. Behavioral variant FTD (bvFTD) syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "lbdsyn": { + "title": "4e. Lewy body dementia syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "namndem": { + "title": "4f. Non-amnestic multidomain dementia, not PCA, PPA, bvFTD, or DLB syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + } + } + } + } + }, + "note_d1_6": { + "title": "5. If the subject does not have normal cognition or behavior and is not clinically demented, indicate the type of cognitive impairment below. MCI CORE CLINICAL CRITERIA \nIs the subject, the co-participant, or a clinician concerned about a change in cognition compared to the subject's previous level?\nIs there impairment in one or more cognitive domains (memory, language, executive function, attention, and visuospatial skills)?\nIs there largely preserved independence in functional abilities (no change from prior manner of functioning or uses minimal aids or assistance)?", + "description": "Select one syndrome from 5a-5e as being Present (all others will default to Absent in the NACC database), and then CONTINUE TO QUESTION 6. If you select MCI below, it should meet the MCI core clinical criteria outlined above. ", + "type": "object", + "properties": { + "mciamem": { + "title": "5a. Amnestic MCI, single domain (aMCI SD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "mciaplus": { + "title": "5b. Amnestic MCI, multiple domains (aMCI MD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "note_d1_8": { + "title": "CHECK YES for at least one additional domain (besides memory):", + "type": "object", + "properties": { + "mciaplan": { + "title": "5b1. Language", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mciapatt": { + "title": "5b2. Attention", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mciapex": { + "title": "5b3. Executive", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mciapvis": { + "title": "5b4 Visuospatial", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "mcinon1": { + "title": "5c. Non-amnestic MCI, single domain (naMCI SD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "note_d1_9": { + "title": "CHECK YES to indicate the affected domain:", + "type": "object", + "properties": { + "mcin1lan": { + "title": "5c1. Language", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin1att": { + "title": "5c2. Attention", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin1ex": { + "title": "5c3. Executive", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin1vis": { + "title": "5c4. Visuospatial", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "mcinon2": { + "title": "5d. Non-amnestic MCI, multiple domains (naMCI MD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "note_d1_10": { + "title": "CHECK YES for at least two domains:", + "type": "object", + "properties": { + "mcin2lan": { + "title": "5d1 Language", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin2att": { + "title": "5d2. Attention", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin2ex": { + "title": "5d3. Executive", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "mcin2vis": { + "title": "5d4. Visuospatial", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "impnomci": { + "title": "5e. Cognitively impaired, not MCI", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + } + } + } + } + }, + "sec2": { + "title": "SECTION 2: Biomarkers, imaging, and genetics", + "description": "Section 2 must be completed for all subjects.", + "type": "object", + "properties": { + "biomarker_find": { + "title": "6. Indicate neurodegenerative biomarker status, using local standards for positivity.\nBiomarker Findings", + "type": "object", + "properties": { + "amylpet": { + "title": "6a. Abnormally elevated amyloid on PET", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "amylcsf": { + "title": "6b. Abnormally low amyloid in CSF", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fdgad": { + "title": "6c. FDG-PET pattern of AD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "hippatr": { + "title": "6d. Hippocampal atrophy", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "taupetad": { + "title": "6e. Tau PET evidence for AD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "csftau": { + "title": "6f. Abnormally elevated CSF tau or ptau", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "fdgftld": { + "title": "6g. FDG-PET evidence for frontal or anterior temporal hypometabolism for FTLD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "tpetftld": { + "title": "6h. Tau PET evidence for FTLD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "mrftld": { + "title": "6i. Structural MR evidence for frontal or anterior temporal atrophy for FTLD", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "datscan": { + "title": "6j. Dopamine transporter scan (DATscan) evidence for Lewy body disease", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown, not assessed" + ] + }, + "othbiom": { + "title": "6k. Other neurodegenerative biomarker", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "othbiomx": { + "title": "6k1. Other neurodegenerative biomarker description (SPECIFY):", + "type": "string" + } + } + }, + "image_find": { + "title": "7. Is there evidence for cerebrovascular disease (CVD) on imaging?\nImaging Findings", + "type": "object", + "properties": { + "imaglinf": { + "title": "7a. Large vessel infarct(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "imaglac": { + "title": "7b. Lacunar infarct(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "imagmach": { + "title": "7c. Macrohemorrhage(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "imagmich": { + "title": "7d. Microhemorrhage(s)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "imagmwmh": { + "title": "7e. Moderate white-matter hyperintensity (CHS score 5-6)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + }, + "imagewmh": { + "title": "7f. Extensive white-matter hyperintensity (CHS score 7-8+)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Unknown/not assessed" + ] + } + } + }, + "admut": { + "title": "8. Does the subject have a dominantly inherited AD mutation (PSEN1, PSEN2, APP)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown/not assessed" + ] + }, + "ftldmut": { + "title": "9. Does the subject have a hereditary FTLD mutation (e.g, GRN, VCP, TARBP, FUS, C9orf72, CHMP2B, MAPT)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown/not assessed" + ] + }, + "othmut": { + "title": "10. Does the subject have a hereditary mutation other than AD or FTLD mutation?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown/not assessed" + ] + }, + "othmutx": { + "title": "10a. If question 10 is 1 Yes, please specify hereditary mutation other than AD or FTLD mutation.", + "type": "string" + } + } + }, + "sec3": { + "title": "SECTION 3: Etiologic diagnoses", + "description": "Section 3 must be filled out for all subjects. Indicate presumptive etiologic diagnoses of the cognitive disorder and whether a given diagnosis is a primary, contributing, or non-contributing cause of the observed impairment, based on the clinician's best judgment. Select one or more diagnoses as Present; all others will default to Absent in the NACC database. Only one diagnosis should be selected as 1=Primary.For subjects with normal cognition: Indicate the presence of any diagnoses by marking Present, and leave the questions on whether the diagnosis was primary, contributing, or non-contributing blank. Subjects with positive biomarkers but no clinical symptoms of Alzheimer's disease, Lewy body disease, or frontotemporal lobar degeneration should not have these diagnoses marked as Present. Instead, the biomarker data from Section 2 can be used to identify the presence of preclinical disease. \nEtiologic diagnoses", + "type": "object", + "properties": { + "etio_diag": { + "title": "Etiologic diagnoses", + "type": "object", + "properties": { + "alzdis": { + "title": "11. Alzheimer's disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "alzdisif": { + "title": "11a. If Alzheimer's disease present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "lbdis": { + "title": "12. Lewy body disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "lbdif": { + "title": "12a. If Lewy body disease present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "park": { + "title": "12b. Parkinson's disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "msa": { + "title": "13. Multiple system atrophy", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "msaif": { + "title": "13a. If Multiple system atrophy present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "note_d1_13": { + "title": "14. Frontotemporal lobar degeneration", + "type": "object", + "properties": { + "psp": { + "title": "14a. Progressive supranuclear palsy (PSP)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "pspif": { + "title": "14a1. If Progressive supranuclear palsy (PSP) is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "cort": { + "title": "14b. Corticobasal degeneration (CBD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "cortif": { + "title": "14b1. If Corticobasal degeneration (CBD) is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "ftldmo": { + "title": "14c. FTLD with motor neuron disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "ftldmoif": { + "title": "14c1. If FTLD with motor neuron disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "ftldnos": { + "title": "14d. FTLD NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "ftldnoif": { + "title": "14d1. If FTLD NOS is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "ftldsubt": { + "title": "14e. If FTLD (Questions 14a-14d) is Present, specify FTLD subtype:", + "type": "string", + "enum": [ + "1 Tauopathy", + "2 TDP-43 proteinopathy", + "3 Other (SPECIFY):", + "9 Unknown" + ] + }, + "ftldsubx": { + "title": "14e1. Other FTLD, specify", + "type": "string" + } + } + }, + "cvd": { + "title": "15. Vascular Brain injury (based on clinical or imaging evidence) If significant vascular brain injury is absent, SKIP TO QUESTION 16.", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "cvdif": { + "title": "15a. If vascular brain injury is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "prevstk": { + "title": "15b. Previous symptomatic stroke?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 15c)", + "1 Yes" + ] + }, + "strokedec": { + "title": "15b1. Temporal relationship between stroke and cognitive decline?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "stkimag": { + "title": "15b2. Confirmation of stroke by neuroimaging?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown; no relevant imaging data available" + ] + }, + "infnetw": { + "title": "15c. Is there imaging evidence of cystic infarction in cognitive network(s)?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown; no relevant imaging data available" + ] + }, + "infwmh": { + "title": "15d. Is there imaging evidence of cystic infarction, imaging evidence of extensive white matter hyperintensity (CHS grade 7-8+), and impairment in executive function? ", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown; no relevant imaging data available" + ] + }, + "esstrem": { + "title": "16. Essential tremor", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "esstreif": { + "title": "16a. If essential tremor is present, is it primary or contributing or non-contributing.", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "downs": { + "title": "17. Down syndrome", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "downsif": { + "title": "17a. If Down syndrome is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "hunt": { + "title": "18. Huntington's disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "huntif": { + "title": "18a. If Huntington's disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "prion": { + "title": "19. Prion disease (CJD, other)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "prionif": { + "title": "19a. If Prion's disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "brninj": { + "title": "20. Traumatic brain injury", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "brninjif": { + "title": "20a. If Traumatic brain injury is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "brnincte": { + "title": "20b. If traumatic brain injury present, does the subject have symptoms consistent with chronic traumatic encephalopathy?", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "hyceph": { + "title": "21. Normal-pressure hydrocephalus", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "hycephif": { + "title": "21a. If Normal-pressure hydrocephalus is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "epilep": { + "title": "22. Epilepsy", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "epilepif": { + "title": "22a. If Epilepsy is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "neop": { + "title": "23. CNS neoplasm", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "neopif": { + "title": "23a. If CNS neoplasm present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "neopstat": { + "title": "23b. CNS neoplasm, benign or malignant?", + "type": "string", + "enum": [ + "1 Benign", + "2 Malignant" + ] + }, + "hiv": { + "title": "24. Human immunodeficiency virus (HIV)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "hivif": { + "title": "24a. If Human immunodeficiency virus (HIV) is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "othcog": { + "title": "25. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "othcogif": { + "title": "25a. If other cognitive impairment present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "othcogx": { + "title": "25b. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above. If Present, specify: ", + "type": "string" + } + } + }, + "condition": { + "title": "Condition", + "type": "object", + "properties": { + "dep": { + "title": "26. Active depression", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "depif": { + "title": "26a. If active depression is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "deptreat": { + "title": "26b. If active depression present, select one:", + "type": "string", + "enum": [ + "0 Untreated", + "1 Treated with medication and/or counseling" + ] + }, + "bipoldx": { + "title": "27. Bipolar disorder", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "bipoldif": { + "title": "27a. If bipolar disorder is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "schizop": { + "title": "28. Schizophrenia or other psychosis", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "schizoif": { + "title": "28a. If Schizophrenia or other psychosis is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "anxiet": { + "title": "29. Anxiety disorder", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "anxietif": { + "title": "29a. If Anxiety disorder is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "delir": { + "title": "30. Delirium", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "delirif": { + "title": "30a. If Delirium is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "ptsddx": { + "title": "31. Post-traumatic stress disorder (PTSD)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "ptsddxif": { + "title": "31a. If Post-traumatic stress disorder is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "othpsy": { + "title": "32. Other psychiatric disease", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "othpsyif": { + "title": "32a. If other psychiatric disease is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "othpsyx": { + "title": "32b. If other psychiatric disease is present, please specify:", + "type": "string" + }, + "alcdem": { + "title": "33. Cognitive impairment due to alcohol abuse", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "alcdemif": { + "title": "33a. If cognitive impairment due to alcohol abuse is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "alcabuse": { + "title": "33b. Current alcohol abuse:", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "impsub": { + "title": "34. Cognitive impairment due to other substance abuse", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "impsubif": { + "title": "34a. If Cognitive impairment due to other substance abuse is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "dysill": { + "title": "35. Cognitive impairment due to systemic disease/medical illness (as indicated on Form D2)", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "dysillif": { + "title": "35a. If Cognitive impairment due to systemic disease/medical illness is present, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "meds": { + "title": "36. Cognitive impairment due to medications", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "medsif": { + "title": "36a. If Cognitive impairment due to medications, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "cogoth": { + "title": "37. Cognitive impairment NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "cogothif": { + "title": "37a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "cogothx": { + "title": "37b. If Cognitive impairment NOS present, specify:", + "type": "string" + }, + "cogoth2": { + "title": "38. Cognitive impairment NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "cogoth2f": { + "title": "38a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "cogoth2x": { + "title": "38b. If Cognitive impairment NOS present, specify:", + "type": "string" + }, + "cogoth3": { + "title": "39. Cognitive impairment NOS", + "type": "string", + "enum": [ + "1 Present", + "0 Absent" + ] + }, + "cogoth3f": { + "title": "39a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?", + "type": "string", + "enum": [ + "1 Primary", + "2 Contributing", + "3 Non-contributing" + ] + }, + "cogoth3x": { + "title": "39b. If Cognitive impairment NOS present, specify:", + "type": "string" + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "dxmethod": { + "title": "1. Diagnosis method - responses in this form are based on diagnosis by:" + }, + "sec1.normcog": { + "title": "2. Does the subject have normal cognition (global CDR=0 and/or neuropsychological testing within normal range) and normal behavior (i.e., the subject does not exhibit behavior sufficient to diagnose MCI or dementia due to FTLD or LBD)?" + }, + "sec1.demented": { + "title": "3. Does the subject meet the criteria for dementia?" + }, + "sec1.note_d1_3.demen_synd.amndem": { + "title": "4a. Amnestic multidomain dementia syndrome" + }, + "sec1.note_d1_3.demen_synd.pca": { + "title": "4b. Posterior cortical atrophy syndrome (or primary visual presentation)" + }, + "sec1.note_d1_3.demen_synd.ppasyn": { + "title": "4c. Primary progressive aphasia (PPA) syndrome" + }, + "sec1.note_d1_3.demen_synd.ppasynt": { + "title": "4c1." + }, + "sec1.note_d1_3.demen_synd.ftdsyn": { + "title": "4d. Behavioral variant FTD (bvFTD) syndrome" + }, + "sec1.note_d1_3.demen_synd.lbdsyn": { + "title": "4e. Lewy body dementia syndrome" + }, + "sec1.note_d1_3.demen_synd.namndem": { + "title": "4f. Non-amnestic multidomain dementia, not PCA, PPA, bvFTD, or DLB syndrome" + }, + "sec1.note_d1_6.mciamem": { + "title": "5a. Amnestic MCI, single domain (aMCI SD)" + }, + "sec1.note_d1_6.mciaplus": { + "title": "5b. Amnestic MCI, multiple domains (aMCI MD)" + }, + "sec1.note_d1_6.note_d1_8.mciaplan": { + "title": "5b1. Language" + }, + "sec1.note_d1_6.note_d1_8.mciapatt": { + "title": "5b2. Attention" + }, + "sec1.note_d1_6.note_d1_8.mciapex": { + "title": "5b3. Executive" + }, + "sec1.note_d1_6.note_d1_8.mciapvis": { + "title": "5b4 Visuospatial" + }, + "sec1.note_d1_6.mcinon1": { + "title": "5c. Non-amnestic MCI, single domain (naMCI SD)" + }, + "sec1.note_d1_6.note_d1_9.mcin1lan": { + "title": "5c1. Language" + }, + "sec1.note_d1_6.note_d1_9.mcin1att": { + "title": "5c2. Attention" + }, + "sec1.note_d1_6.note_d1_9.mcin1ex": { + "title": "5c3. Executive" + }, + "sec1.note_d1_6.note_d1_9.mcin1vis": { + "title": "5c4. Visuospatial" + }, + "sec1.note_d1_6.mcinon2": { + "title": "5d. Non-amnestic MCI, multiple domains (naMCI MD)" + }, + "sec1.note_d1_6.note_d1_10.mcin2lan": { + "title": "5d1 Language" + }, + "sec1.note_d1_6.note_d1_10.mcin2att": { + "title": "5d2. Attention" + }, + "sec1.note_d1_6.note_d1_10.mcin2ex": { + "title": "5d3. Executive" + }, + "sec1.note_d1_6.note_d1_10.mcin2vis": { + "title": "5d4. Visuospatial" + }, + "sec1.note_d1_6.impnomci": { + "title": "5e. Cognitively impaired, not MCI" + }, + "sec2.biomarker_find.amylpet": { + "title": "6a. Abnormally elevated amyloid on PET" + }, + "sec2.biomarker_find.amylcsf": { + "title": "6b. Abnormally low amyloid in CSF" + }, + "sec2.biomarker_find.fdgad": { + "title": "6c. FDG-PET pattern of AD" + }, + "sec2.biomarker_find.hippatr": { + "title": "6d. Hippocampal atrophy" + }, + "sec2.biomarker_find.taupetad": { + "title": "6e. Tau PET evidence for AD" + }, + "sec2.biomarker_find.csftau": { + "title": "6f. Abnormally elevated CSF tau or ptau" + }, + "sec2.biomarker_find.fdgftld": { + "title": "6g. FDG-PET evidence for frontal or anterior temporal hypometabolism for FTLD" + }, + "sec2.biomarker_find.tpetftld": { + "title": "6h. Tau PET evidence for FTLD" + }, + "sec2.biomarker_find.mrftld": { + "title": "6i. Structural MR evidence for frontal or anterior temporal atrophy for FTLD" + }, + "sec2.biomarker_find.datscan": { + "title": "6j. Dopamine transporter scan (DATscan) evidence for Lewy body disease" + }, + "sec2.biomarker_find.othbiom": { + "title": "6k. Other neurodegenerative biomarker" + }, + "sec2.biomarker_find.othbiomx": { + "title": "6k1. Other neurodegenerative biomarker description (SPECIFY):" + }, + "sec2.image_find.imaglinf": { + "title": "7a. Large vessel infarct(s)" + }, + "sec2.image_find.imaglac": { + "title": "7b. Lacunar infarct(s)" + }, + "sec2.image_find.imagmach": { + "title": "7c. Macrohemorrhage(s)" + }, + "sec2.image_find.imagmich": { + "title": "7d. Microhemorrhage(s)" + }, + "sec2.image_find.imagmwmh": { + "title": "7e. Moderate white-matter hyperintensity (CHS score 5-6)" + }, + "sec2.image_find.imagewmh": { + "title": "7f. Extensive white-matter hyperintensity (CHS score 7-8+)" + }, + "sec2.admut": { + "title": "8. Does the subject have a dominantly inherited AD mutation (PSEN1, PSEN2, APP)?" + }, + "sec2.ftldmut": { + "title": "9. Does the subject have a hereditary FTLD mutation (e.g, GRN, VCP, TARBP, FUS, C9orf72, CHMP2B, MAPT)?" + }, + "sec2.othmut": { + "title": "10. Does the subject have a hereditary mutation other than AD or FTLD mutation?" + }, + "sec2.othmutx": { + "title": "10a. If question 10 is 1 Yes, please specify hereditary mutation other than AD or FTLD mutation." + }, + "sec3.etio_diag.alzdis": { + "title": "11. Alzheimer's disease" + }, + "sec3.etio_diag.alzdisif": { + "title": "11a. If Alzheimer's disease present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.lbdis": { + "title": "12. Lewy body disease" + }, + "sec3.etio_diag.lbdif": { + "title": "12a. If Lewy body disease present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.park": { + "title": "12b. Parkinson's disease" + }, + "sec3.etio_diag.msa": { + "title": "13. Multiple system atrophy" + }, + "sec3.etio_diag.msaif": { + "title": "13a. If Multiple system atrophy present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.note_d1_13.psp": { + "title": "14a. Progressive supranuclear palsy (PSP)" + }, + "sec3.etio_diag.note_d1_13.pspif": { + "title": "14a1. If Progressive supranuclear palsy (PSP) is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.note_d1_13.cort": { + "title": "14b. Corticobasal degeneration (CBD)" + }, + "sec3.etio_diag.note_d1_13.cortif": { + "title": "14b1. If Corticobasal degeneration (CBD) is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.note_d1_13.ftldmo": { + "title": "14c. FTLD with motor neuron disease" + }, + "sec3.etio_diag.note_d1_13.ftldmoif": { + "title": "14c1. If FTLD with motor neuron disease is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.note_d1_13.ftldnos": { + "title": "14d. FTLD NOS" + }, + "sec3.etio_diag.note_d1_13.ftldnoif": { + "title": "14d1. If FTLD NOS is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.note_d1_13.ftldsubt": { + "title": "14e. If FTLD (Questions 14a-14d) is Present, specify FTLD subtype:" + }, + "sec3.etio_diag.note_d1_13.ftldsubx": { + "title": "14e1. Other FTLD, specify" + }, + "sec3.etio_diag.cvd": { + "title": "15. Vascular Brain injury (based on clinical or imaging evidence) If significant vascular brain injury is absent, SKIP TO QUESTION 16." + }, + "sec3.etio_diag.cvdif": { + "title": "15a. If vascular brain injury is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.prevstk": { + "title": "15b. Previous symptomatic stroke?" + }, + "sec3.etio_diag.strokedec": { + "title": "15b1. Temporal relationship between stroke and cognitive decline?" + }, + "sec3.etio_diag.stkimag": { + "title": "15b2. Confirmation of stroke by neuroimaging?" + }, + "sec3.etio_diag.infnetw": { + "title": "15c. Is there imaging evidence of cystic infarction in cognitive network(s)?" + }, + "sec3.etio_diag.infwmh": { + "title": "15d. Is there imaging evidence of cystic infarction, imaging evidence of extensive white matter hyperintensity (CHS grade 7-8+), and impairment in executive function? " + }, + "sec3.etio_diag.esstrem": { + "title": "16. Essential tremor" + }, + "sec3.etio_diag.esstreif": { + "title": "16a. If essential tremor is present, is it primary or contributing or non-contributing." + }, + "sec3.etio_diag.downs": { + "title": "17. Down syndrome" + }, + "sec3.etio_diag.downsif": { + "title": "17a. If Down syndrome is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.hunt": { + "title": "18. Huntington's disease" + }, + "sec3.etio_diag.huntif": { + "title": "18a. If Huntington's disease is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.prion": { + "title": "19. Prion disease (CJD, other)" + }, + "sec3.etio_diag.prionif": { + "title": "19a. If Prion's disease is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.brninj": { + "title": "20. Traumatic brain injury" + }, + "sec3.etio_diag.brninjif": { + "title": "20a. If Traumatic brain injury is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.brnincte": { + "title": "20b. If traumatic brain injury present, does the subject have symptoms consistent with chronic traumatic encephalopathy?" + }, + "sec3.etio_diag.hyceph": { + "title": "21. Normal-pressure hydrocephalus" + }, + "sec3.etio_diag.hycephif": { + "title": "21a. If Normal-pressure hydrocephalus is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.epilep": { + "title": "22. Epilepsy" + }, + "sec3.etio_diag.epilepif": { + "title": "22a. If Epilepsy is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.neop": { + "title": "23. CNS neoplasm" + }, + "sec3.etio_diag.neopif": { + "title": "23a. If CNS neoplasm present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.neopstat": { + "title": "23b. CNS neoplasm, benign or malignant?" + }, + "sec3.etio_diag.hiv": { + "title": "24. Human immunodeficiency virus (HIV)" + }, + "sec3.etio_diag.hivif": { + "title": "24a. If Human immunodeficiency virus (HIV) is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.othcog": { + "title": "25. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above" + }, + "sec3.etio_diag.othcogif": { + "title": "25a. If other cognitive impairment present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.othcogx": { + "title": "25b. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above. If Present, specify: " + }, + "sec3.condition.dep": { + "title": "26. Active depression" + }, + "sec3.condition.depif": { + "title": "26a. If active depression is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.deptreat": { + "title": "26b. If active depression present, select one:" + }, + "sec3.condition.bipoldx": { + "title": "27. Bipolar disorder" + }, + "sec3.condition.bipoldif": { + "title": "27a. If bipolar disorder is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.schizop": { + "title": "28. Schizophrenia or other psychosis" + }, + "sec3.condition.schizoif": { + "title": "28a. If Schizophrenia or other psychosis is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.anxiet": { + "title": "29. Anxiety disorder" + }, + "sec3.condition.anxietif": { + "title": "29a. If Anxiety disorder is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.delir": { + "title": "30. Delirium" + }, + "sec3.condition.delirif": { + "title": "30a. If Delirium is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.ptsddx": { + "title": "31. Post-traumatic stress disorder (PTSD)" + }, + "sec3.condition.ptsddxif": { + "title": "31a. If Post-traumatic stress disorder is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.othpsy": { + "title": "32. Other psychiatric disease" + }, + "sec3.condition.othpsyif": { + "title": "32a. If other psychiatric disease is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.othpsyx": { + "title": "32b. If other psychiatric disease is present, please specify:" + }, + "sec3.condition.alcdem": { + "title": "33. Cognitive impairment due to alcohol abuse" + }, + "sec3.condition.alcdemif": { + "title": "33a. If cognitive impairment due to alcohol abuse is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.alcabuse": { + "title": "33b. Current alcohol abuse:" + }, + "sec3.condition.impsub": { + "title": "34. Cognitive impairment due to other substance abuse" + }, + "sec3.condition.impsubif": { + "title": "34a. If Cognitive impairment due to other substance abuse is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.dysill": { + "title": "35. Cognitive impairment due to systemic disease/medical illness (as indicated on Form D2)" + }, + "sec3.condition.dysillif": { + "title": "35a. If Cognitive impairment due to systemic disease/medical illness is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.meds": { + "title": "36. Cognitive impairment due to medications" + }, + "sec3.condition.medsif": { + "title": "36a. If Cognitive impairment due to medications, is it primary, contributing or non-contributing?" + }, + "sec3.condition.cogoth": { + "title": "37. Cognitive impairment NOS" + }, + "sec3.condition.cogothif": { + "title": "37a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?" + }, + "sec3.condition.cogothx": { + "title": "37b. If Cognitive impairment NOS present, specify:" + }, + "sec3.condition.cogoth2": { + "title": "38. Cognitive impairment NOS" + }, + "sec3.condition.cogoth2f": { + "title": "38a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?" + }, + "sec3.condition.cogoth2x": { + "title": "38b. If Cognitive impairment NOS present, specify:" + }, + "sec3.condition.cogoth3": { + "title": "39. Cognitive impairment NOS" + }, + "sec3.condition.cogoth3f": { + "title": "39a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?" + }, + "sec3.condition.cogoth3x": { + "title": "39b. If Cognitive impairment NOS present, specify:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "dxmethod": { + "title": "1. Diagnosis method - responses in this form are based on diagnosis by:" + }, + "sec1.normcog": { + "title": "2. Does the subject have normal cognition (global CDR=0 and/or neuropsychological testing within normal range) and normal behavior (i.e., the subject does not exhibit behavior sufficient to diagnose MCI or dementia due to FTLD or LBD)?" + }, + "sec1.demented": { + "title": "3. Does the subject meet the criteria for dementia?" + }, + "sec1.note_d1_3.demen_synd.amndem": { + "title": "4a. Amnestic multidomain dementia syndrome" + }, + "sec1.note_d1_3.demen_synd.pca": { + "title": "4b. Posterior cortical atrophy syndrome (or primary visual presentation)" + }, + "sec1.note_d1_3.demen_synd.ppasyn": { + "title": "4c. Primary progressive aphasia (PPA) syndrome" + }, + "sec1.note_d1_3.demen_synd.ppasynt": { + "title": "4c1." + }, + "sec1.note_d1_3.demen_synd.ftdsyn": { + "title": "4d. Behavioral variant FTD (bvFTD) syndrome" + }, + "sec1.note_d1_3.demen_synd.lbdsyn": { + "title": "4e. Lewy body dementia syndrome" + }, + "sec1.note_d1_3.demen_synd.namndem": { + "title": "4f. Non-amnestic multidomain dementia, not PCA, PPA, bvFTD, or DLB syndrome" + }, + "sec1.note_d1_6.mciamem": { + "title": "5a. Amnestic MCI, single domain (aMCI SD)" + }, + "sec1.note_d1_6.mciaplus": { + "title": "5b. Amnestic MCI, multiple domains (aMCI MD)" + }, + "sec1.note_d1_6.note_d1_8.mciaplan": { + "title": "5b1. Language" + }, + "sec1.note_d1_6.note_d1_8.mciapatt": { + "title": "5b2. Attention" + }, + "sec1.note_d1_6.note_d1_8.mciapex": { + "title": "5b3. Executive" + }, + "sec1.note_d1_6.note_d1_8.mciapvis": { + "title": "5b4 Visuospatial" + }, + "sec1.note_d1_6.mcinon1": { + "title": "5c. Non-amnestic MCI, single domain (naMCI SD)" + }, + "sec1.note_d1_6.note_d1_9.mcin1lan": { + "title": "5c1. Language" + }, + "sec1.note_d1_6.note_d1_9.mcin1att": { + "title": "5c2. Attention" + }, + "sec1.note_d1_6.note_d1_9.mcin1ex": { + "title": "5c3. Executive" + }, + "sec1.note_d1_6.note_d1_9.mcin1vis": { + "title": "5c4. Visuospatial" + }, + "sec1.note_d1_6.mcinon2": { + "title": "5d. Non-amnestic MCI, multiple domains (naMCI MD)" + }, + "sec1.note_d1_6.note_d1_10.mcin2lan": { + "title": "5d1 Language" + }, + "sec1.note_d1_6.note_d1_10.mcin2att": { + "title": "5d2. Attention" + }, + "sec1.note_d1_6.note_d1_10.mcin2ex": { + "title": "5d3. Executive" + }, + "sec1.note_d1_6.note_d1_10.mcin2vis": { + "title": "5d4. Visuospatial" + }, + "sec1.note_d1_6.impnomci": { + "title": "5e. Cognitively impaired, not MCI" + }, + "sec2.biomarker_find.note_d1_11": { + "title": "Section 2 must be completed for all subjects." + }, + "sec2.biomarker_find.amylpet": { + "title": "6a. Abnormally elevated amyloid on PET" + }, + "sec2.biomarker_find.amylcsf": { + "title": "6b. Abnormally low amyloid in CSF" + }, + "sec2.biomarker_find.fdgad": { + "title": "6c. FDG-PET pattern of AD" + }, + "sec2.biomarker_find.hippatr": { + "title": "6d. Hippocampal atrophy" + }, + "sec2.biomarker_find.taupetad": { + "title": "6e. Tau PET evidence for AD" + }, + "sec2.biomarker_find.csftau": { + "title": "6f. Abnormally elevated CSF tau or ptau" + }, + "sec2.biomarker_find.fdgftld": { + "title": "6g. FDG-PET evidence for frontal or anterior temporal hypometabolism for FTLD" + }, + "sec2.biomarker_find.tpetftld": { + "title": "6h. Tau PET evidence for FTLD" + }, + "sec2.biomarker_find.mrftld": { + "title": "6i. Structural MR evidence for frontal or anterior temporal atrophy for FTLD" + }, + "sec2.biomarker_find.datscan": { + "title": "6j. Dopamine transporter scan (DATscan) evidence for Lewy body disease" + }, + "sec2.biomarker_find.othbiom": { + "title": "6k. Other neurodegenerative biomarker" + }, + "sec2.biomarker_find.othbiomx": { + "title": "6k1. Other neurodegenerative biomarker description (SPECIFY):" + }, + "sec2.image_find.imaglinf": { + "title": "7a. Large vessel infarct(s)" + }, + "sec2.image_find.imaglac": { + "title": "7b. Lacunar infarct(s)" + }, + "sec2.image_find.imagmach": { + "title": "7c. Macrohemorrhage(s)" + }, + "sec2.image_find.imagmich": { + "title": "7d. Microhemorrhage(s)" + }, + "sec2.image_find.imagmwmh": { + "title": "7e. Moderate white-matter hyperintensity (CHS score 5-6)" + }, + "sec2.image_find.imagewmh": { + "title": "7f. Extensive white-matter hyperintensity (CHS score 7-8+)" + }, + "sec2.admut": { + "title": "8. Does the subject have a dominantly inherited AD mutation (PSEN1, PSEN2, APP)?" + }, + "sec2.ftldmut": { + "title": "9. Does the subject have a hereditary FTLD mutation (e.g, GRN, VCP, TARBP, FUS, C9orf72, CHMP2B, MAPT)?" + }, + "sec2.othmut": { + "title": "10. Does the subject have a hereditary mutation other than AD or FTLD mutation?" + }, + "sec2.othmutx": { + "title": "10a. If question 10 is 1 Yes, please specify hereditary mutation other than AD or FTLD mutation." + }, + "sec3.etio_diag.alzdis": { + "title": "11. Alzheimer's disease" + }, + "sec3.etio_diag.alzdisif": { + "title": "11a. If Alzheimer's disease present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.lbdis": { + "title": "12. Lewy body disease" + }, + "sec3.etio_diag.lbdif": { + "title": "12a. If Lewy body disease present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.park": { + "title": "12b. Parkinson's disease" + }, + "sec3.etio_diag.msa": { + "title": "13. Multiple system atrophy" + }, + "sec3.etio_diag.msaif": { + "title": "13a. If Multiple system atrophy present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.note_d1_13.psp": { + "title": "14a. Progressive supranuclear palsy (PSP)" + }, + "sec3.etio_diag.note_d1_13.pspif": { + "title": "14a1. If Progressive supranuclear palsy (PSP) is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.note_d1_13.cort": { + "title": "14b. Corticobasal degeneration (CBD)" + }, + "sec3.etio_diag.note_d1_13.cortif": { + "title": "14b1. If Corticobasal degeneration (CBD) is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.note_d1_13.ftldmo": { + "title": "14c. FTLD with motor neuron disease" + }, + "sec3.etio_diag.note_d1_13.ftldmoif": { + "title": "14c1. If FTLD with motor neuron disease is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.note_d1_13.ftldnos": { + "title": "14d. FTLD NOS" + }, + "sec3.etio_diag.note_d1_13.ftldnoif": { + "title": "14d1. If FTLD NOS is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.note_d1_13.ftldsubt": { + "title": "14e. If FTLD (Questions 14a-14d) is Present, specify FTLD subtype:" + }, + "sec3.etio_diag.note_d1_13.ftldsubx": { + "title": "14e1. Other FTLD, specify" + }, + "sec3.etio_diag.cvd": { + "title": "15. Vascular Brain injury (based on clinical or imaging evidence) If significant vascular brain injury is absent, SKIP TO QUESTION 16." + }, + "sec3.etio_diag.cvdif": { + "title": "15a. If vascular brain injury is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.prevstk": { + "title": "15b. Previous symptomatic stroke?" + }, + "sec3.etio_diag.strokedec": { + "title": "15b1. Temporal relationship between stroke and cognitive decline?" + }, + "sec3.etio_diag.stkimag": { + "title": "15b2. Confirmation of stroke by neuroimaging?" + }, + "sec3.etio_diag.infnetw": { + "title": "15c. Is there imaging evidence of cystic infarction in cognitive network(s)?" + }, + "sec3.etio_diag.infwmh": { + "title": "15d. Is there imaging evidence of cystic infarction, imaging evidence of extensive white matter hyperintensity (CHS grade 7-8+), and impairment in executive function? " + }, + "sec3.etio_diag.esstrem": { + "title": "16. Essential tremor" + }, + "sec3.etio_diag.esstreif": { + "title": "16a. If essential tremor is present, is it primary or contributing or non-contributing." + }, + "sec3.etio_diag.downs": { + "title": "17. Down syndrome" + }, + "sec3.etio_diag.downsif": { + "title": "17a. If Down syndrome is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.hunt": { + "title": "18. Huntington's disease" + }, + "sec3.etio_diag.huntif": { + "title": "18a. If Huntington's disease is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.prion": { + "title": "19. Prion disease (CJD, other)" + }, + "sec3.etio_diag.prionif": { + "title": "19a. If Prion's disease is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.brninj": { + "title": "20. Traumatic brain injury" + }, + "sec3.etio_diag.brninjif": { + "title": "20a. If Traumatic brain injury is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.brnincte": { + "title": "20b. If traumatic brain injury present, does the subject have symptoms consistent with chronic traumatic encephalopathy?" + }, + "sec3.etio_diag.hyceph": { + "title": "21. Normal-pressure hydrocephalus" + }, + "sec3.etio_diag.hycephif": { + "title": "21a. If Normal-pressure hydrocephalus is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.epilep": { + "title": "22. Epilepsy" + }, + "sec3.etio_diag.epilepif": { + "title": "22a. If Epilepsy is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.neop": { + "title": "23. CNS neoplasm" + }, + "sec3.etio_diag.neopif": { + "title": "23a. If CNS neoplasm present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.neopstat": { + "title": "23b. CNS neoplasm, benign or malignant?" + }, + "sec3.etio_diag.hiv": { + "title": "24. Human immunodeficiency virus (HIV)" + }, + "sec3.etio_diag.hivif": { + "title": "24a. If Human immunodeficiency virus (HIV) is present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.othcog": { + "title": "25. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above" + }, + "sec3.etio_diag.othcogif": { + "title": "25a. If other cognitive impairment present, is it primary, contributing or non-contributing?" + }, + "sec3.etio_diag.othcogx": { + "title": "25b. Cognitive impairment due to other neurologic, genetic, or infectious conditions not listed above. If Present, specify: " + }, + "sec3.condition.dep": { + "title": "26. Active depression" + }, + "sec3.condition.depif": { + "title": "26a. If active depression is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.deptreat": { + "title": "26b. If active depression present, select one:" + }, + "sec3.condition.bipoldx": { + "title": "27. Bipolar disorder" + }, + "sec3.condition.bipoldif": { + "title": "27a. If bipolar disorder is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.schizop": { + "title": "28. Schizophrenia or other psychosis" + }, + "sec3.condition.schizoif": { + "title": "28a. If Schizophrenia or other psychosis is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.anxiet": { + "title": "29. Anxiety disorder" + }, + "sec3.condition.anxietif": { + "title": "29a. If Anxiety disorder is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.delir": { + "title": "30. Delirium" + }, + "sec3.condition.delirif": { + "title": "30a. If Delirium is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.ptsddx": { + "title": "31. Post-traumatic stress disorder (PTSD)" + }, + "sec3.condition.ptsddxif": { + "title": "31a. If Post-traumatic stress disorder is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.othpsy": { + "title": "32. Other psychiatric disease" + }, + "sec3.condition.othpsyif": { + "title": "32a. If other psychiatric disease is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.othpsyx": { + "title": "32b. If other psychiatric disease is present, please specify:" + }, + "sec3.condition.alcdem": { + "title": "33. Cognitive impairment due to alcohol abuse" + }, + "sec3.condition.alcdemif": { + "title": "33a. If cognitive impairment due to alcohol abuse is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.alcabuse": { + "title": "33b. Current alcohol abuse:" + }, + "sec3.condition.impsub": { + "title": "34. Cognitive impairment due to other substance abuse" + }, + "sec3.condition.impsubif": { + "title": "34a. If Cognitive impairment due to other substance abuse is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.dysill": { + "title": "35. Cognitive impairment due to systemic disease/medical illness (as indicated on Form D2)" + }, + "sec3.condition.dysillif": { + "title": "35a. If Cognitive impairment due to systemic disease/medical illness is present, is it primary, contributing or non-contributing?" + }, + "sec3.condition.meds": { + "title": "36. Cognitive impairment due to medications" + }, + "sec3.condition.medsif": { + "title": "36a. If Cognitive impairment due to medications, is it primary, contributing or non-contributing?" + }, + "sec3.condition.cogoth": { + "title": "37. Cognitive impairment NOS" + }, + "sec3.condition.cogothif": { + "title": "37a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?" + }, + "sec3.condition.cogothx": { + "title": "37b. If Cognitive impairment NOS present, specify:" + }, + "sec3.condition.cogoth2": { + "title": "38. Cognitive impairment NOS" + }, + "sec3.condition.cogoth2f": { + "title": "38a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?" + }, + "sec3.condition.cogoth2x": { + "title": "38b. If Cognitive impairment NOS present, specify:" + }, + "sec3.condition.cogoth3": { + "title": "39. Cognitive impairment NOS" + }, + "sec3.condition.cogoth3f": { + "title": "39a. If Cognitive impairment NOS, is it primary, contributing or non-contributing?" + }, + "sec3.condition.cogoth3x": { + "title": "39b. If Cognitive impairment NOS present, specify:" + } + }, + "boost_values": { + "patient": 1.0, + "dxmethod": 1.0, + "sec1.normcog": 1.0, + "sec1.demented": 1.0, + "sec1.note_d1_3.demen_synd.amndem": 1.0, + "sec1.note_d1_3.demen_synd.pca": 1.0, + "sec1.note_d1_3.demen_synd.ppasyn": 1.0, + "sec1.note_d1_3.demen_synd.ppasynt": 1.0, + "sec1.note_d1_3.demen_synd.ftdsyn": 1.0, + "sec1.note_d1_3.demen_synd.lbdsyn": 1.0, + "sec1.note_d1_3.demen_synd.namndem": 1.0, + "sec1.note_d1_6.mciamem": 1.0, + "sec1.note_d1_6.mciaplus": 1.0, + "sec1.note_d1_6.note_d1_8.mciaplan": 1.0, + "sec1.note_d1_6.note_d1_8.mciapatt": 1.0, + "sec1.note_d1_6.note_d1_8.mciapex": 1.0, + "sec1.note_d1_6.note_d1_8.mciapvis": 1.0, + "sec1.note_d1_6.mcinon1": 1.0, + "sec1.note_d1_6.note_d1_9.mcin1lan": 1.0, + "sec1.note_d1_6.note_d1_9.mcin1att": 1.0, + "sec1.note_d1_6.note_d1_9.mcin1ex": 1.0, + "sec1.note_d1_6.note_d1_9.mcin1vis": 1.0, + "sec1.note_d1_6.mcinon2": 1.0, + "sec1.note_d1_6.note_d1_10.mcin2lan": 1.0, + "sec1.note_d1_6.note_d1_10.mcin2att": 1.0, + "sec1.note_d1_6.note_d1_10.mcin2ex": 1.0, + "sec1.note_d1_6.note_d1_10.mcin2vis": 1.0, + "sec1.note_d1_6.impnomci": 1.0, + "sec2.biomarker_find.amylpet": 1.0, + "sec2.biomarker_find.amylcsf": 1.0, + "sec2.biomarker_find.fdgad": 1.0, + "sec2.biomarker_find.hippatr": 1.0, + "sec2.biomarker_find.taupetad": 1.0, + "sec2.biomarker_find.csftau": 1.0, + "sec2.biomarker_find.fdgftld": 1.0, + "sec2.biomarker_find.tpetftld": 1.0, + "sec2.biomarker_find.mrftld": 1.0, + "sec2.biomarker_find.datscan": 1.0, + "sec2.biomarker_find.othbiom": 1.0, + "sec2.image_find.imaglinf": 1.0, + "sec2.image_find.imaglac": 1.0, + "sec2.image_find.imagmach": 1.0, + "sec2.image_find.imagmich": 1.0, + "sec2.image_find.imagmwmh": 1.0, + "sec2.image_find.imagewmh": 1.0, + "sec2.admut": 1.0, + "sec2.ftldmut": 1.0, + "sec2.othmut": 1.0, + "sec3.etio_diag.alzdisif": 1.0, + "sec3.etio_diag.lbdis": 1.0, + "sec3.etio_diag.lbdif": 1.0, + "sec3.etio_diag.park": 1.0, + "sec3.etio_diag.msa": 1.0, + "sec3.etio_diag.msaif": 1.0, + "sec3.etio_diag.note_d1_13.psp": 1.0, + "sec3.etio_diag.note_d1_13.pspif": 1.0, + "sec3.etio_diag.note_d1_13.cort": 1.0, + "sec3.etio_diag.note_d1_13.cortif": 1.0, + "sec3.etio_diag.note_d1_13.ftldmo": 1.0, + "sec3.etio_diag.note_d1_13.ftldmoif": 1.0, + "sec3.etio_diag.note_d1_13.ftldnos": 1.0, + "sec3.etio_diag.note_d1_13.ftldnoif": 1.0, + "sec3.etio_diag.note_d1_13.ftldsubt": 1.0, + "sec3.etio_diag.note_d1_13.ftldsubx": 1.0, + "sec3.etio_diag.cvd": 1.0, + "sec3.etio_diag.cvdif": 1.0, + "sec3.etio_diag.prevstk": 1.0, + "sec3.etio_diag.strokedec": 1.0, + "sec3.etio_diag.stkimag": 1.0, + "sec3.etio_diag.infnetw": 1.0, + "sec3.etio_diag.infwmh": 1.0, + "sec3.etio_diag.esstrem": 1.0, + "sec3.etio_diag.esstreif": 1.0, + "sec3.etio_diag.downs": 1.0, + "sec3.etio_diag.downsif": 1.0, + "sec3.etio_diag.hunt": 1.0, + "sec3.etio_diag.huntif": 1.0, + "sec3.etio_diag.prion": 1.0, + "sec3.etio_diag.prionif": 1.0, + "sec3.etio_diag.brninj": 1.0, + "sec3.etio_diag.brninjif": 1.0, + "sec3.etio_diag.brnincte": 1.0, + "sec3.etio_diag.hyceph": 1.0, + "sec3.etio_diag.hycephif": 1.0, + "sec3.etio_diag.epilep": 1.0, + "sec3.etio_diag.epilepif": 1.0, + "sec3.etio_diag.neop": 1.0, + "sec3.etio_diag.neopif": 1.0, + "sec3.etio_diag.neopstat": 1.0, + "sec3.etio_diag.hiv": 1.0, + "sec3.etio_diag.hivif": 1.0, + "sec3.etio_diag.othcog": 1.0, + "sec3.etio_diag.othcogif": 1.0, + "sec3.condition.dep": 1.0, + "sec3.condition.depif": 1.0, + "sec3.condition.deptreat": 1.0, + "sec3.condition.bipoldx": 1.0, + "sec3.condition.bipoldif": 1.0, + "sec3.condition.schizop": 1.0, + "sec3.condition.schizoif": 1.0, + "sec3.condition.anxiet": 1.0, + "sec3.condition.anxietif": 1.0, + "sec3.condition.delir": 1.0, + "sec3.condition.delirif": 1.0, + "sec3.condition.ptsddx": 1.0, + "sec3.condition.ptsddxif": 1.0, + "sec3.condition.othpsy": 1.0, + "sec3.condition.othpsyif": 1.0, + "sec3.condition.othpsyx": 1.0, + "sec3.condition.alcdem": 1.0, + "sec3.condition.alcdemif": 1.0, + "sec3.condition.alcabuse": 1.0, + "sec3.condition.impsub": 1.0, + "sec3.condition.impsubif": 1.0, + "sec3.condition.dysill": 1.0, + "sec3.condition.dysillif": 1.0, + "sec3.condition.meds": 1.0, + "sec3.condition.medsif": 1.0, + "sec3.condition.cogoth": 1.0, + "sec3.condition.cogothif": 1.0, + "sec3.condition.cogothx": 1.0, + "sec3.condition.cogoth2": 1.0, + "sec3.condition.cogoth2f": 1.0, + "sec3.condition.cogoth2x": 1.0, + "sec3.condition.cogoth3": 1.0, + "sec3.condition.cogoth3f": 1.0, + "sec3.condition.cogoth3x": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_d1v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_d2.json b/src/encoded/schemas/ivp_d2.json new file mode 100644 index 0000000000..662f3b16ab --- /dev/null +++ b/src/encoded/schemas/ivp_d2.json @@ -0,0 +1,367 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM D2: Clinician-assessed Medical Conditions", + "description": "INSTRUCTIONS: This form is to be completed by a physician, physician's assistant, nurse practitioner, or other qualified practitioner. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form D2. Link to NACC Coding Guidebook .\nMedical conditions and procedures \nThe following questions should be answered based on review of all available information, including new diagnoses made during the current visit, previous medical records, procedures, laboratory tests, and the clinical exam.", + "comment": " ", + "id": "/profiles/uds_ivp_d2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "cancer", + "sele_note" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 2)", + "1 Yes, primary/non-metastatic", + "2 Yes, metastatic", + "8 Not assessed (SKIP TO QUESTION 2)" + ] + }, + "cancsite": { + "title": "1a. If yes, specify primary site:", + "type": "string" + }, + "sele_note": { + "title": "If any of the conditions below are present (even if successfully treated), please check Yes.", + "type": "object", + "properties": { + "diabet": { + "title": "2. Diabetes", + "type": "string", + "enum": [ + "0 No", + "1 Yes, Type I", + "2 Yes, Type II", + "3 Yes, other type(diabetes insipidus, latent autoimmune diabetes/type 1.5, gestational diabetes)", + "9 Not assessed or unknown" + ] + }, + "myoinf": { + "title": "3. Myocardial infarct", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "conghrt": { + "title": "4. Congestive heart failure", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "afibrill": { + "title": "5. Atrial fibrillation", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hypert": { + "title": "6. Hypertension", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "angina": { + "title": "7. Angina", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hypchol": { + "title": "8. Hypercholesterolemia", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "vb12def": { + "title": "9. B12 deficiency", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "thydis": { + "title": "10. Thyroid disease", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "artype": { + "title": "11a. If yes, what type?", + "type": "string", + "enum": [ + "1 Rheumatoid", + "2 Osteoarthritis", + "3 Other (SPECIFY BELOW):", + "9 Unknown" + ] + }, + "artypex": { + "title": "11a1. If other type of arthritis SPECIFY:", + "type": "string" + }, + "note_d2_3": { + "title": "11b. If yes, regions affected (check at least one):", + "type": "object", + "properties": { + "artupex": { + "title": "11b1. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Upper extremity" + ] + }, + "artloex": { + "title": "11b2. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Lower extremity" + ] + }, + "artspin": { + "title": "11b3. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Spine" + ] + }, + "artunkn": { + "title": "11b4. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Unknown" + ] + } + } + + }, + "urineinc": { + "title": "12. Incontinence - urinary", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "bowlinc": { + "title": "13. Incontinence - bowel", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "sleepap": { + "title": "14. Sleep apnea", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "remdis": { + "title": "15. REM sleep behavior disorder (RBD)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hyposom": { + "title": "16. Hyposomnia/insomnia", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "sleepotx": { + "title": "17a. Specify other sleep disorder:", + "type": "string" + }, + "angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hvalve": { + "title": "21. Procedure: heart valve replacement or repair", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "antienc": { + "title": "22. Antibody-mediated encephalopathy", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "antiencx": { + "title": "22a. Antibody-mediated encephalopathy, SPECIFY:", + "type": "string" + }, + "othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "othcondx": { + "title": "23a. If other medical conditions SPECIFY:", + "type": "string" + } + } + + } + }, + + "boost_values": { + "patient": 1.0, + "schema_version": 1.0, + "cancer": 1.0, + "cancsite": 1.0, + "sele_note.diabet": 1.0, + "sele_note.myoinf": 1.0, + "sele_note.conghrt": 1.0, + "sele_note.afibrill": 1.0, + "sele_note.hypert": 1.0, + "sele_note.angina": 1.0, + "sele_note.hypchol": 1.0, + "sele_note.vb12def": 1.0, + "sele_note.thydis": 1.0, + "sele_note.arth": 1.0, + "sele_note.artype": 1.0, + "sele_note.artypex": 1.0, + "sele_note.note_d2_3.artupex": 1.0, + "sele_note.note_d2_3.artloex": 1.0, + "sele_note.note_d2_3.artspin": 1.0, + "sele_note.note_d2_3.artunkn": 1.0, + "sele_note.urineinc": 1.0, + "sele_note.bowlinc": 1.0, + "sele_note.sleepap": 1.0, + "sele_note.remdis": 1.0, + "sele_note.hyposom": 1.0, + "sele_note.sleepoth": 1.0, + "sele_note.sleepotx": 1.0, + "sele_note.angiocp": 1.0, + "sele_note.angiopci": 1.0, + "sele_note.pacemake": 1.0, + "sele_note.hvalve": 1.0, + "sele_note.antienc": 1.0, + "sele_note.antiencx": 1.0, + "sele_note.othcond": 1.0, + "sele_note.othcondx": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_d2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_d2v2.json b/src/encoded/schemas/ivp_d2v2.json new file mode 100644 index 0000000000..795e8fa596 --- /dev/null +++ b/src/encoded/schemas/ivp_d2v2.json @@ -0,0 +1,584 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM D2: Clinician-assessed Medical Conditions", + "description": "INSTRUCTIONS: This form is to be completed by a physician, physician's assistant, nurse practitioner, or other qualified practitioner. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form D2. Link to NACC Coding Guidebook .\nMedical conditions and procedures \nThe following questions should be answered based on review of all available information, including new diagnoses made during the current visit, previous medical records, procedures, laboratory tests, and the clinical exam.", + "comment": " ", + "id": "/profiles/ivp_d2v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "cancer", + "sele_note" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_d2.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 2)", + "1 Yes, primary/non-metastatic", + "2 Yes, metastatic", + "8 Not assessed (SKIP TO QUESTION 2)" + ] + }, + "cancsite": { + "title": "1a. If yes, specify primary site:", + "type": "string" + }, + "sele_note": { + "title": "If any of the conditions below are present (even if successfully treated), please check Yes.", + "type": "object", + "properties": { + "diabet": { + "title": "2. Diabetes", + "type": "string", + "enum": [ + "0 No", + "1 Yes, Type I", + "2 Yes, Type II", + "3 Yes, other type(diabetes insipidus, latent autoimmune diabetes/type 1.5, gestational diabetes)", + "9 Not assessed or unknown" + ] + }, + "myoinf": { + "title": "3. Myocardial infarct", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "conghrt": { + "title": "4. Congestive heart failure", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "afibrill": { + "title": "5. Atrial fibrillation", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hypert": { + "title": "6. Hypertension", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "angina": { + "title": "7. Angina", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hypchol": { + "title": "8. Hypercholesterolemia", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "vb12def": { + "title": "9. B12 deficiency", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "thydis": { + "title": "10. Thyroid disease", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "artype": { + "title": "11a. If yes, what type?", + "type": "string", + "enum": [ + "1 Rheumatoid", + "2 Osteoarthritis", + "3 Other (SPECIFY BELOW):", + "9 Unknown" + ] + }, + "artypex": { + "title": "11a1. If other type of arthritis SPECIFY:", + "type": "string" + }, + "note_d2_3": { + "title": "11b. If yes, regions affected (check at least one):", + "type": "object", + "properties": { + "artupex": { + "title": "11b1. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Upper extremity" + ] + }, + "artloex": { + "title": "11b2. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Lower extremity" + ] + }, + "artspin": { + "title": "11b3. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Spine" + ] + }, + "artunkn": { + "title": "11b4. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Unknown" + ] + } + } + + }, + "urineinc": { + "title": "12. Incontinence - urinary", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "bowlinc": { + "title": "13. Incontinence - bowel", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "sleepap": { + "title": "14. Sleep apnea", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "remdis": { + "title": "15. REM sleep behavior disorder (RBD)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hyposom": { + "title": "16. Hyposomnia/insomnia", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "sleepotx": { + "title": "17a. Specify other sleep disorder:", + "type": "string" + }, + "angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hvalve": { + "title": "21. Procedure: heart valve replacement or repair", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "antienc": { + "title": "22. Antibody-mediated encephalopathy", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "antiencx": { + "title": "22a. Antibody-mediated encephalopathy, SPECIFY:", + "type": "string" + }, + "othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "othcondx": { + "title": "23a. If other medical conditions SPECIFY:", + "type": "string" + } + } + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "schema_version": { + "default": "1" + }, + "cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic" + }, + "cancsite": { + "title": "1a. If yes, specify primary site:" + }, + "sele_note.diabet": { + "title": "2. Diabetes" + }, + "sele_note.myoinf": { + "title": "3. Myocardial infarct" + }, + "sele_note.conghrt": { + "title": "4. Congestive heart failure" + }, + "sele_note.afibrill": { + "title": "5. Atrial fibrillation" + }, + "sele_note.hypert": { + "title": "6. Hypertension" + }, + "sele_note.angina": { + "title": "7. Angina" + }, + "sele_note.hypchol": { + "title": "8. Hypercholesterolemia" + }, + "sele_note.vb12def": { + "title": "9. B12 deficiency" + }, + "sele_note.thydis": { + "title": "10. Thyroid disease" + }, + "sele_note.arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12" + }, + "sele_note.artype": { + "title": "11a. If yes, what type?" + }, + "sele_note.artypex": { + "title": "11a1. If other type of arthritis SPECIFY:" + }, + "sele_note.note_d2_3.artupex": { + "title": "11b1. Arthritis region affected" + }, + "sele_note.note_d2_3.artloex": { + "title": "11b2. Arthritis region affected" + }, + "sele_note.note_d2_3.artspin": { + "title": "11b3. Arthritis region affected" + }, + "sele_note.note_d2_3.artunkn": { + "title": "11b4. Arthritis region affected" + }, + "sele_note.urineinc": { + "title": "12. Incontinence - urinary" + }, + "sele_note.bowlinc": { + "title": "13. Incontinence - bowel" + }, + "sele_note.sleepap": { + "title": "14. Sleep apnea" + }, + "sele_note.remdis": { + "title": "15. REM sleep behavior disorder (RBD)" + }, + "sele_note.hyposom": { + "title": "16. Hyposomnia/insomnia" + }, + "sele_note.sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):" + }, + "sele_note.sleepotx": { + "title": "17a. Specify other sleep disorder:" + }, + "sele_note.angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent" + }, + "sele_note.angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent" + }, + "sele_note.pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator" + }, + "sele_note.hvalve": { + "title": "21. Procedure: heart valve replacement or repair" + }, + "sele_note.antienc": { + "title": "22. Antibody-mediated encephalopathy" + }, + "sele_note.antiencx": { + "title": "22a. Antibody-mediated encephalopathy, SPECIFY:" + }, + "sele_note.othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):" + }, + "sele_note.othcondx": { + "title": "23a. If other medical conditions SPECIFY:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "schema_version": { + "default": "1" + }, + "cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic" + }, + "cancsite": { + "title": "1a. If yes, specify primary site:" + }, + "sele_note.diabet": { + "title": "2. Diabetes" + }, + "sele_note.myoinf": { + "title": "3. Myocardial infarct" + }, + "sele_note.conghrt": { + "title": "4. Congestive heart failure" + }, + "sele_note.afibrill": { + "title": "5. Atrial fibrillation" + }, + "sele_note.hypert": { + "title": "6. Hypertension" + }, + "sele_note.angina": { + "title": "7. Angina" + }, + "sele_note.hypchol": { + "title": "8. Hypercholesterolemia" + }, + "sele_note.vb12def": { + "title": "9. B12 deficiency" + }, + "sele_note.thydis": { + "title": "10. Thyroid disease" + }, + "sele_note.arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12" + }, + "sele_note.artype": { + "title": "11a. If yes, what type?" + }, + "sele_note.artypex": { + "title": "11a1. If other type of arthritis SPECIFY:" + }, + "sele_note.note_d2_3.artupex": { + "title": "11b1. Arthritis region affected" + }, + "sele_note.note_d2_3.artloex": { + "title": "11b2. Arthritis region affected" + }, + "sele_note.note_d2_3.artspin": { + "title": "11b3. Arthritis region affected" + }, + "sele_note.note_d2_3.artunkn": { + "title": "11b4. Arthritis region affected" + }, + "sele_note.urineinc": { + "title": "12. Incontinence - urinary" + }, + "sele_note.bowlinc": { + "title": "13. Incontinence - bowel" + }, + "sele_note.sleepap": { + "title": "14. Sleep apnea" + }, + "sele_note.remdis": { + "title": "15. REM sleep behavior disorder (RBD)" + }, + "sele_note.hyposom": { + "title": "16. Hyposomnia/insomnia" + }, + "sele_note.sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):" + }, + "sele_note.sleepotx": { + "title": "17a. Specify other sleep disorder:" + }, + "sele_note.angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent" + }, + "sele_note.angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent" + }, + "sele_note.pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator" + }, + "sele_note.hvalve": { + "title": "21. Procedure: heart valve replacement or repair" + }, + "sele_note.antienc": { + "title": "22. Antibody-mediated encephalopathy" + }, + "sele_note.antiencx": { + "title": "22a. Antibody-mediated encephalopathy, SPECIFY:" + }, + "sele_note.othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):" + }, + "sele_note.othcondx": { + "title": "23a. If other medical conditions SPECIFY:" + } + }, + "boost_values": { + "patient": 1.0, + "schema_version": 1.0, + "cancer": 1.0, + "cancsite": 1.0, + "sele_note.diabet": 1.0, + "sele_note.myoinf": 1.0, + "sele_note.conghrt": 1.0, + "sele_note.afibrill": 1.0, + "sele_note.hypert": 1.0, + "sele_note.angina": 1.0, + "sele_note.hypchol": 1.0, + "sele_note.vb12def": 1.0, + "sele_note.thydis": 1.0, + "sele_note.arth": 1.0, + "sele_note.artype": 1.0, + "sele_note.artypex": 1.0, + "sele_note.note_d2_3.artupex": 1.0, + "sele_note.note_d2_3.artloex": 1.0, + "sele_note.note_d2_3.artspin": 1.0, + "sele_note.note_d2_3.artunkn": 1.0, + "sele_note.urineinc": 1.0, + "sele_note.bowlinc": 1.0, + "sele_note.sleepap": 1.0, + "sele_note.remdis": 1.0, + "sele_note.hyposom": 1.0, + "sele_note.sleepoth": 1.0, + "sele_note.sleepotx": 1.0, + "sele_note.angiocp": 1.0, + "sele_note.angiopci": 1.0, + "sele_note.pacemake": 1.0, + "sele_note.hvalve": 1.0, + "sele_note.antienc": 1.0, + "sele_note.antiencx": 1.0, + "sele_note.othcond": 1.0, + "sele_note.othcondx": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_d2v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_d2v3.json b/src/encoded/schemas/ivp_d2v3.json new file mode 100644 index 0000000000..d44a4b519d --- /dev/null +++ b/src/encoded/schemas/ivp_d2v3.json @@ -0,0 +1,584 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM D2: Clinician-assessed Medical Conditions", + "description": "INSTRUCTIONS: This form is to be completed by a physician, physician's assistant, nurse practitioner, or other qualified practitioner. For additional clarification and examples, see UDS Coding Guidebook for Initial Visit Packet, Form D2. Link to NACC Coding Guidebook .\nMedical conditions and procedures \nThe following questions should be answered based on review of all available information, including new diagnoses made during the current visit, previous medical records, procedures, laboratory tests, and the clinical exam.", + "comment": " ", + "id": "/profiles/ivp_d2v3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "cancer", + "sele_note" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_d2.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 2)", + "1 Yes, primary/non-metastatic", + "2 Yes, metastatic", + "8 Not assessed (SKIP TO QUESTION 2)" + ] + }, + "cancsite": { + "title": "1a. If yes, specify primary site:", + "type": "string" + }, + "sele_note": { + "title": "If any of the conditions below are present (even if successfully treated), please check Yes.", + "type": "object", + "properties": { + "diabet": { + "title": "2. Diabetes", + "type": "string", + "enum": [ + "0 No", + "1 Yes, Type I", + "2 Yes, Type II", + "3 Yes, other type(diabetes insipidus, latent autoimmune diabetes/type 1.5, gestational diabetes)", + "9 Not assessed or unknown" + ] + }, + "myoinf": { + "title": "3. Myocardial infarct", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "conghrt": { + "title": "4. Congestive heart failure", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "afibrill": { + "title": "5. Atrial fibrillation", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hypert": { + "title": "6. Hypertension", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "angina": { + "title": "7. Angina", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hypchol": { + "title": "8. Hypercholesterolemia", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "vb12def": { + "title": "9. B12 deficiency", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "thydis": { + "title": "10. Thyroid disease", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "artype": { + "title": "11a. If yes, what type?", + "type": "string", + "enum": [ + "1 Rheumatoid", + "2 Osteoarthritis", + "3 Other (SPECIFY BELOW):", + "9 Unknown" + ] + }, + "artypex": { + "title": "11a1. If other type of arthritis SPECIFY:", + "type": "string" + }, + "note_d2_3": { + "title": "11b. If yes, regions affected (check at least one):", + "type": "object", + "properties": { + "artupex": { + "title": "11b1. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Upper extremity" + ] + }, + "artloex": { + "title": "11b2. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Lower extremity" + ] + }, + "artspin": { + "title": "11b3. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Spine" + ] + }, + "artunkn": { + "title": "11b4. Arthritis region affected", + "type": "string", + "enum": [ + "0", + "1 Unknown" + ] + } + } + + }, + "urineinc": { + "title": "12. Incontinence - urinary", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "bowlinc": { + "title": "13. Incontinence - bowel", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "sleepap": { + "title": "14. Sleep apnea", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "remdis": { + "title": "15. REM sleep behavior disorder (RBD)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hyposom": { + "title": "16. Hyposomnia/insomnia", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "sleepotx": { + "title": "17a. Specify other sleep disorder:", + "type": "string" + }, + "angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "hvalve": { + "title": "21. Procedure: heart valve replacement or repair", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "antienc": { + "title": "22. Antibody-mediated encephalopathy", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "antiencx": { + "title": "22a. Antibody-mediated encephalopathy, SPECIFY:", + "type": "string" + }, + "othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "othcondx": { + "title": "23a. If other medical conditions SPECIFY:", + "type": "string" + } + } + + } + }, + "facets": { + "status": { + "title": "Status" + }, + "schema_version": { + "default": "1" + }, + "cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic" + }, + "cancsite": { + "title": "1a. If yes, specify primary site:" + }, + "sele_note.diabet": { + "title": "2. Diabetes" + }, + "sele_note.myoinf": { + "title": "3. Myocardial infarct" + }, + "sele_note.conghrt": { + "title": "4. Congestive heart failure" + }, + "sele_note.afibrill": { + "title": "5. Atrial fibrillation" + }, + "sele_note.hypert": { + "title": "6. Hypertension" + }, + "sele_note.angina": { + "title": "7. Angina" + }, + "sele_note.hypchol": { + "title": "8. Hypercholesterolemia" + }, + "sele_note.vb12def": { + "title": "9. B12 deficiency" + }, + "sele_note.thydis": { + "title": "10. Thyroid disease" + }, + "sele_note.arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12" + }, + "sele_note.artype": { + "title": "11a. If yes, what type?" + }, + "sele_note.artypex": { + "title": "11a1. If other type of arthritis SPECIFY:" + }, + "sele_note.note_d2_3.artupex": { + "title": "11b1. Arthritis region affected" + }, + "sele_note.note_d2_3.artloex": { + "title": "11b2. Arthritis region affected" + }, + "sele_note.note_d2_3.artspin": { + "title": "11b3. Arthritis region affected" + }, + "sele_note.note_d2_3.artunkn": { + "title": "11b4. Arthritis region affected" + }, + "sele_note.urineinc": { + "title": "12. Incontinence - urinary" + }, + "sele_note.bowlinc": { + "title": "13. Incontinence - bowel" + }, + "sele_note.sleepap": { + "title": "14. Sleep apnea" + }, + "sele_note.remdis": { + "title": "15. REM sleep behavior disorder (RBD)" + }, + "sele_note.hyposom": { + "title": "16. Hyposomnia/insomnia" + }, + "sele_note.sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):" + }, + "sele_note.sleepotx": { + "title": "17a. Specify other sleep disorder:" + }, + "sele_note.angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent" + }, + "sele_note.angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent" + }, + "sele_note.pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator" + }, + "sele_note.hvalve": { + "title": "21. Procedure: heart valve replacement or repair" + }, + "sele_note.antienc": { + "title": "22. Antibody-mediated encephalopathy" + }, + "sele_note.antiencx": { + "title": "22a. Antibody-mediated encephalopathy, SPECIFY:" + }, + "sele_note.othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):" + }, + "sele_note.othcondx": { + "title": "23a. If other medical conditions SPECIFY:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "schema_version": { + "default": "1" + }, + "cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic" + }, + "cancsite": { + "title": "1a. If yes, specify primary site:" + }, + "sele_note.diabet": { + "title": "2. Diabetes" + }, + "sele_note.myoinf": { + "title": "3. Myocardial infarct" + }, + "sele_note.conghrt": { + "title": "4. Congestive heart failure" + }, + "sele_note.afibrill": { + "title": "5. Atrial fibrillation" + }, + "sele_note.hypert": { + "title": "6. Hypertension" + }, + "sele_note.angina": { + "title": "7. Angina" + }, + "sele_note.hypchol": { + "title": "8. Hypercholesterolemia" + }, + "sele_note.vb12def": { + "title": "9. B12 deficiency" + }, + "sele_note.thydis": { + "title": "10. Thyroid disease" + }, + "sele_note.arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12" + }, + "sele_note.artype": { + "title": "11a. If yes, what type?" + }, + "sele_note.artypex": { + "title": "11a1. If other type of arthritis SPECIFY:" + }, + "sele_note.note_d2_3.artupex": { + "title": "11b1. Arthritis region affected" + }, + "sele_note.note_d2_3.artloex": { + "title": "11b2. Arthritis region affected" + }, + "sele_note.note_d2_3.artspin": { + "title": "11b3. Arthritis region affected" + }, + "sele_note.note_d2_3.artunkn": { + "title": "11b4. Arthritis region affected" + }, + "sele_note.urineinc": { + "title": "12. Incontinence - urinary" + }, + "sele_note.bowlinc": { + "title": "13. Incontinence - bowel" + }, + "sele_note.sleepap": { + "title": "14. Sleep apnea" + }, + "sele_note.remdis": { + "title": "15. REM sleep behavior disorder (RBD)" + }, + "sele_note.hyposom": { + "title": "16. Hyposomnia/insomnia" + }, + "sele_note.sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):" + }, + "sele_note.sleepotx": { + "title": "17a. Specify other sleep disorder:" + }, + "sele_note.angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent" + }, + "sele_note.angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent" + }, + "sele_note.pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator" + }, + "sele_note.hvalve": { + "title": "21. Procedure: heart valve replacement or repair" + }, + "sele_note.antienc": { + "title": "22. Antibody-mediated encephalopathy" + }, + "sele_note.antiencx": { + "title": "22a. Antibody-mediated encephalopathy, SPECIFY:" + }, + "sele_note.othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):" + }, + "sele_note.othcondx": { + "title": "23a. If other medical conditions SPECIFY:" + } + }, + "boost_values": { + "patient": 1.0, + "schema_version": 1.0, + "cancer": 1.0, + "cancsite": 1.0, + "sele_note.diabet": 1.0, + "sele_note.myoinf": 1.0, + "sele_note.conghrt": 1.0, + "sele_note.afibrill": 1.0, + "sele_note.hypert": 1.0, + "sele_note.angina": 1.0, + "sele_note.hypchol": 1.0, + "sele_note.vb12def": 1.0, + "sele_note.thydis": 1.0, + "sele_note.arth": 1.0, + "sele_note.artype": 1.0, + "sele_note.artypex": 1.0, + "sele_note.note_d2_3.artupex": 1.0, + "sele_note.note_d2_3.artloex": 1.0, + "sele_note.note_d2_3.artspin": 1.0, + "sele_note.note_d2_3.artunkn": 1.0, + "sele_note.urineinc": 1.0, + "sele_note.bowlinc": 1.0, + "sele_note.sleepap": 1.0, + "sele_note.remdis": 1.0, + "sele_note.hyposom": 1.0, + "sele_note.sleepoth": 1.0, + "sele_note.sleepotx": 1.0, + "sele_note.angiocp": 1.0, + "sele_note.angiopci": 1.0, + "sele_note.pacemake": 1.0, + "sele_note.hvalve": 1.0, + "sele_note.antienc": 1.0, + "sele_note.antiencx": 1.0, + "sele_note.othcond": 1.0, + "sele_note.othcondx": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_d2v3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_e1v1.json b/src/encoded/schemas/ivp_e1v1.json new file mode 100644 index 0000000000..11287b0189 --- /dev/null +++ b/src/encoded/schemas/ivp_e1v1.json @@ -0,0 +1,411 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet, Form E1: Imaging/Labs", + "description": "NOTE: This form is to be completed by ADC or clinic staff.For additional \nclarification and examples, see UDS Coding Guidebook for Initial Visit\nPacket, Form E1.Check only one box per response category.\n\n", + "id": "/profiles/ivp_e1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "neur_image": { + "title": "Imaging (of the subject’s head) available at your ADC:", + "description": "", + "type": "object", + "properties": { + "comp_tomo": { + "title": "1. Computed tomography", + "description": "", + "type": "object", + "properties": { + "CTFLM": { + "title": "1A Computed tomography, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CTDIG": { + "title": "1B Computed tomography, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_clinic": { + "title": "2. Magnetic resonance imaging – Clinical study", + "description": "", + "type": "object", + "properties": { + "MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_research_stru": { + "title": "3. Magnetic resonance imaging – Research study/structural", + "description": "", + "type": "object", + "properties": { + "MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_research_func": { + "title": "4. Magnetic resonance imaging – Research study/functional\n ", + "description": "", + "type": "object", + "properties": { + "MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_spec": { + "title": "5. Magnetic resonance spectroscopy ", + "description": "", + "type": "object", + "properties": { + "MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "spect": { + "title": "6. SPECT", + "description": "", + "type": "object", + "properties": { + "SPECTFLM": { + "title": "6A SPECT, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "SPECTDIG": { + "title": "6B SPECT, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "pet": { + "title": "7. PET ", + "description": "", + "type": "object", + "properties": { + "PETFLM": { + "title": "7A PET, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "PETDIG": { + "title": "7B PET, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + } + }, + "specimen": { + "title": "Specimens available at your ADC: ", + "description": "", + "type": "object", + "properties": { + "DNA": { + "title": "8 DNA", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "SERUM": { + "title": "10 Serum/plasma", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "genotyping": { + "title": "Genotyping results:", + "description": "", + "type": "object", + "properties": { + "APOE": { + "title": "11 APOE genotype collected", + "comment": "Comment If the subject’s APOE genotype (data) is not accessible to your Center researchers within a few hours, then this question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "neur_image.comp_tomo.CTFLM": { + "title": "1A Computed tomography, film" + }, + "neur_image.comp_tomo.CTDIG": { + "title": "1B Computed tomography, digital image" + }, + "neur_image.magn_clinic.MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film" + }, + "neur_image.magn_clinic.MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image" + }, + "neur_image.magn_research_stru.MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film" + }, + "neur_image.magn_research_stru.MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image" + }, + "neur_image.magn_research_func.MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film" + }, + "neur_image.magn_research_func.MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image" + }, + "neur_image.magn_spec.MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film" + }, + "neur_image.magn_spec.MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image" + }, + "neur_image.spect.SPECTFLM": { + "title": "6A SPECT, film" + }, + "neur_image.spect.SPECTDIG": { + "title": "6B SPECT, digital image" + }, + "neur_image.pet.PETFLM": { + "title": "7A PET, film" + }, + "neur_image.pet.PETDIG": { + "title": "7B PET, digital image" + }, + "specimen.DNA": { + "title": "8 DNA" + }, + "specimen.CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem" + }, + "specimen.SERUM": { + "title": "10 Serum/plasma" + }, + "genotyping.APOE": { + "title": "11 APOE genotype collected" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "neur_image.comp_tomo.CTFLM": { + "title": "1A Computed tomography, film" + }, + "neur_image.comp_tomo.CTDIG": { + "title": "1B Computed tomography, digital image" + }, + "neur_image.magn_clinic.MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film" + }, + "neur_image.magn_clinic.MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image" + }, + "neur_image.magn_research_stru.MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film" + }, + "neur_image.magn_research_stru.MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image" + }, + "neur_image.magn_research_func.MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film" + }, + "neur_image.magn_research_func.MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image" + }, + "neur_image.magn_spec.MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film" + }, + "neur_image.magn_spec.MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image" + }, + "neur_image.spect.SPECTFLM": { + "title": "6A SPECT, film" + }, + "neur_image.spect.SPECTDIG": { + "title": "6B SPECT, digital image" + }, + "neur_image.pet.PETFLM": { + "title": "7A PET, film" + }, + "neur_image.pet.PETDIG": { + "title": "7B PET, digital image" + }, + "specimen.DNA": { + "title": "8 DNA" + }, + "specimen.CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem" + }, + "specimen.SERUM": { + "title": "10 Serum/plasma" + }, + "genotyping.APOE": { + "title": "11 APOE genotype collected" + } + }, + "boost_values": { + "patient": 1.0, + "neur_image.comp_tomo.CTFLM": 1.0, + "neur_image.comp_tomo.CTDIG": 1.0, + "neur_image.magn_clinic.MRI1FLM": 1.0, + "neur_image.magn_clinic.MRI1DIG": 1.0, + "neur_image.magn_research_stru.MRI2FLM": 1.0, + "neur_image.magn_research_stru.MRI2DIG": 1.0, + "neur_image.magn_research_func.MRI3FLM": 1.0, + "neur_image.magn_research_func.MRI3DIG": 1.0, + "neur_image.magn_spec.MRISPFLM": 1.0, + "neur_image.magn_spec.MRISPDIG": 1.0, + "neur_image.spect.SPECTFLM": 1.0, + "neur_image.spect.SPECTDIG": 1.0, + "neur_image.pet.PETFLM": 1.0, + "neur_image.pet.PETDIG": 1.0, + "specimen.DNA": 1.0, + "specimen.CSFANTEM": 1.0, + "specimen.SERUM": 1.0, + "genotyping.APOE": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_e1v1.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/ivp_e1v2.json b/src/encoded/schemas/ivp_e1v2.json new file mode 100644 index 0000000000..6cd5c29d73 --- /dev/null +++ b/src/encoded/schemas/ivp_e1v2.json @@ -0,0 +1,411 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet, Form E1: Imaging/Labs", + "description": "NOTE: This form is to be completed by ADC or clinic staff.For additional \nclarification and examples, see UDS Coding Guidebook for Initial Visit\nPacket, Form E1.Check only one box per response category.\n\n", + "id": "/profiles/ivp_e1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "neur_image": { + "title": "Neuroimaging available at your ADC:", + + "type": "object", + "properties": { + "comp_tomo": { + "title": "1. Computed tomography", + + "type": "object", + "properties": { + "CTFLM": { + "title": "1A Computed tomography, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CTDIG": { + "title": "1B Computed tomography, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_clinic": { + "title": "2. Magnetic resonance imaging – Clinical study", + + "type": "object", + "properties": { + "MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_research_stru": { + "title": "3. Magnetic resonance imaging – Research study/structural", + + "type": "object", + "properties": { + "MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_research_func": { + "title": "4. Magnetic resonance imaging – Research study/functional\n ", + + "type": "object", + "properties": { + "MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "magn_spec": { + "title": "5. Magnetic resonance spectroscopy ", + + "type": "object", + "properties": { + "MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "spect": { + "title": "6. SPECT", + + "type": "object", + "properties": { + "SPECTFLM": { + "title": "6A SPECT, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "SPECTDIG": { + "title": "6B SPECT, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "pet": { + "title": "7. PET ", + + "type": "object", + "properties": { + "PETFLM": { + "title": "7A PET, film", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "PETDIG": { + "title": "7B PET, digital image", + "comment": "Imaging (of the subject’s head) available at your ADC. If data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + } + }, + "specimen": { + "title": "Specimens available at your ADC: ", + + "type": "object", + "properties": { + "DNA": { + "title": "8 DNA", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "SERUM": { + "title": "10 Serum/plasma", + "comment": "Specimens available at your ADC. If specimen and/or data are not\n available to your Center researchers within a few hours, then this\n question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + }, + "genotyping": { + "title": "Genotyping results:", + + "type": "object", + "properties": { + "APOE": { + "title": "11 APOE genotype collected", + "comment": "Comment If the subject’s APOE genotype (data) is not accessible to your Center researchers within a few hours, then this question should be coded \"No\".", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "neur_image.comp_tomo.CTFLM": { + "title": "1A Computed tomography, film" + }, + "neur_image.comp_tomo.CTDIG": { + "title": "1B Computed tomography, digital image" + }, + "neur_image.magn_clinic.MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film" + }, + "neur_image.magn_clinic.MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image" + }, + "neur_image.magn_research_stru.MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film" + }, + "neur_image.magn_research_stru.MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image" + }, + "neur_image.magn_research_func.MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film" + }, + "neur_image.magn_research_func.MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image" + }, + "neur_image.magn_spec.MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film" + }, + "neur_image.magn_spec.MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image" + }, + "neur_image.spect.SPECTFLM": { + "title": "6A SPECT, film" + }, + "neur_image.spect.SPECTDIG": { + "title": "6B SPECT, digital image" + }, + "neur_image.pet.PETFLM": { + "title": "7A PET, film" + }, + "neur_image.pet.PETDIG": { + "title": "7B PET, digital image" + }, + "specimen.DNA": { + "title": "8 DNA" + }, + "specimen.CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem" + }, + "specimen.SERUM": { + "title": "10 Serum/plasma" + }, + "genotyping.APOE": { + "title": "11 APOE genotype collected" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "neur_image.comp_tomo.CTFLM": { + "title": "1A Computed tomography, film" + }, + "neur_image.comp_tomo.CTDIG": { + "title": "1B Computed tomography, digital image" + }, + "neur_image.magn_clinic.MRI1FLM": { + "title": "2A Magnetic resonance imaging – Clinical study, film" + }, + "neur_image.magn_clinic.MRI1DIG": { + "title": "2B Magnetic resonance imaging – Clinical study, digital image" + }, + "neur_image.magn_research_stru.MRI2FLM": { + "title": "3A Magnetic resonance imaging – Research study/structural, film" + }, + "neur_image.magn_research_stru.MRI2DIG": { + "title": "3B Magnetic resonance imaging – Research study/structural, digital image" + }, + "neur_image.magn_research_func.MRI3FLM": { + "title": "4A Magnetic resonance imaging – Research study/functional, film" + }, + "neur_image.magn_research_func.MRI3DIG": { + "title": "4B Magnetic resonance imaging – Research study/functional, digital image" + }, + "neur_image.magn_spec.MRISPFLM": { + "title": "5A Magnetic resonance spectroscopy, film" + }, + "neur_image.magn_spec.MRISPDIG": { + "title": "5B Magnetic resonance spectroscopy, digital image" + }, + "neur_image.spect.SPECTFLM": { + "title": "6A SPECT, film" + }, + "neur_image.spect.SPECTDIG": { + "title": "6B SPECT, digital image" + }, + "neur_image.pet.PETFLM": { + "title": "7A PET, film" + }, + "neur_image.pet.PETDIG": { + "title": "7B PET, digital image" + }, + "specimen.DNA": { + "title": "8 DNA" + }, + "specimen.CSFANTEM": { + "title": "9 Cerebrospinal fluid – ante-mortem" + }, + "specimen.SERUM": { + "title": "10 Serum/plasma" + }, + "genotyping.APOE": { + "title": "11 APOE genotype collected" + } + }, + "boost_values": { + "patient": 1.0, + "neur_image.comp_tomo.CTFLM": 1.0, + "neur_image.comp_tomo.CTDIG": 1.0, + "neur_image.magn_clinic.MRI1FLM": 1.0, + "neur_image.magn_clinic.MRI1DIG": 1.0, + "neur_image.magn_research_stru.MRI2FLM": 1.0, + "neur_image.magn_research_stru.MRI2DIG": 1.0, + "neur_image.magn_research_func.MRI3FLM": 1.0, + "neur_image.magn_research_func.MRI3DIG": 1.0, + "neur_image.magn_spec.MRISPFLM": 1.0, + "neur_image.magn_spec.MRISPDIG": 1.0, + "neur_image.spect.SPECTFLM": 1.0, + "neur_image.spect.SPECTDIG": 1.0, + "neur_image.pet.PETFLM": 1.0, + "neur_image.pet.PETDIG": 1.0, + "specimen.DNA": 1.0, + "specimen.CSFANTEM": 1.0, + "specimen.SERUM": 1.0, + "genotyping.APOE": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_e1v2.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/ivp_z1v1.json b/src/encoded/schemas/ivp_z1v1.json new file mode 100644 index 0000000000..dd872dba6f --- /dev/null +++ b/src/encoded/schemas/ivp_z1v1.json @@ -0,0 +1,504 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet.Form Z1: Form Checklist", + "description": "NOTE: This form is to be completed by clinic staff.\nNACC expects and intends that all UDS forms will be attempted on all subjects, but we realize this may be impossible\nwhen the patient is terminally ill, or when there is no informant, or for other reasons. NACC requires that Forms Z1,\nA1, A5, B4, B9, C1, D1, and E1 be submitted for a subject to be included in the UDS database, even though these\nforms may include some missing data.\nFor forms not designated as required, if it is not feasible to collect all or almost all of the data elements for a subject\nand the ADC therefore decides not to attempt collection of those data, an explanation must be provided. Please\nindicate this decision below by including the appropriate explanatory code and any additional comments.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem 97 = Other problem\n96 = Cognitive/behavior problem 98 = Verbal refusal\n", + "id": "/profiles/ivp_z1v1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted", + "description": "Blank if #1, A2SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted", + "description": "Blank if #2, A3SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted", + "description": "Blank if #3, A4SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted", + "description": "Blank if #4, B1SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted", + "description": "Blank if #5, B2SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B2COMM": { + "title": "5B Form B2, Eval.Form – Hachinski Ischemic Scale", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted", + "description": "Blank if #6, B3SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B5SUB": { + "title": "7 Form B5, Behavioral Assessment – NPI-Q submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B5NOT": { + "title": "7A Reason Form B5, Behavioral Assessment – NPI-Q not submitted", + "description": "Blank if #7, B5SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B5COMM": { + "title": "7B Form B5, Behavioral Assessment – NPI-Q, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B6SUB": { + "title": "8 Form B6, Behavioral Assessment – GDS submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B6NOT": { + "title": "8A Reason Form B6, Behavioral Assessment – GDS not submitted", + "description": "Blank if #8, B6SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B6COMM": { + "title": "8B Form B6, Behavioral Assessment – GDS, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B7SUB": { + "title": "9 Form B7, Functional Assessment – FAQ submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B7NOT": { + "title": "9A Reason Form B7, Functional Assessment – FAQ not submitted", + "description": "Blank if #9, B7SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B7COMM": { + "title": "9B Form B7, Functional Assessment – FAQ, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted", + "description": "Blank if #10, B8SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted" + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted" + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted" + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted" + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted" + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted" + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted" + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted" + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted" + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted" + }, + "B2COMM": { + "title": "5B Form B2, Evaluation Form – HIS and CVD, comments (provide if needed)" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted" + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted" + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)" + }, + "B5SUB": { + "title": "7 Form B5, Behavioral Assessment – NPI-Q submitted" + }, + "B5NOT": { + "title": "7A Reason Form B5, Behavioral Assessment – NPI-Q not submitted" + }, + "B5COMM": { + "title": "7B Form B5, Behavioral Assessment – NPI-Q, comments (provide if needed)" + }, + "B6SUB": { + "title": "8 Form B6, Behavioral Assessment – GDS submitted" + }, + "B6NOT": { + "title": "8A Reason Form B6, Behavioral Assessment – GDS not submitted" + }, + "B6COMM": { + "title": "8B Form B6, Behavioral Assessment – GDS, comments (provide if needed)" + }, + "B7SUB": { + "title": "9 Form B7, Functional Assessment – FAQ submitted" + }, + "B7NOT": { + "title": "9A Reason Form B7, Functional Assessment – FAQ not submitted" + }, + "B7COMM": { + "title": "9B Form B7, Functional Assessment – FAQ, comments (provide if needed)" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings" + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted" + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted" + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted" + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted" + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted" + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted" + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted" + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted" + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted" + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted" + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted" + }, + "B2COMM": { + "title": "5B Form B2, Evaluation Form – HIS and CVD, comments (provide if needed)" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted" + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted" + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)" + }, + "B5SUB": { + "title": "7 Form B5, Behavioral Assessment – NPI-Q submitted" + }, + "B5NOT": { + "title": "7A Reason Form B5, Behavioral Assessment – NPI-Q not submitted" + }, + "B5COMM": { + "title": "7B Form B5, Behavioral Assessment – NPI-Q, comments (provide if needed)" + }, + "B6SUB": { + "title": "8 Form B6, Behavioral Assessment – GDS submitted" + }, + "B6NOT": { + "title": "8A Reason Form B6, Behavioral Assessment – GDS not submitted" + }, + "B6COMM": { + "title": "8B Form B6, Behavioral Assessment – GDS, comments (provide if needed)" + }, + "B7SUB": { + "title": "9 Form B7, Functional Assessment – FAQ submitted" + }, + "B7NOT": { + "title": "9A Reason Form B7, Functional Assessment – FAQ not submitted" + }, + "B7COMM": { + "title": "9B Form B7, Functional Assessment – FAQ, comments (provide if needed)" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings" + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted" + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)" + } + }, + "boost_values": { + "patient": 1.0, + "A2SUB": 1.0, + "A2NOT": 1.0, + "A2COMM": 1.0, + "A3SUB": 1.0, + "A3NOT": 1.0, + "A3COMM": 1.0, + "A4SUB": 1.0, + "A4NOT": 1.0, + "A4COMM": 1.0, + "B1SUB": 1.0, + "B1NOT": 1.0, + "B1COMM": 1.0, + "B2SUB": 1.0, + "B2NOT": 1.0, + "B2COMM": 1.0, + "B3SUB": 1.0, + "B3NOT": 1.0, + "B3COMM": 1.0, + "B5SUB": 1.0, + "B5NOT": 1.0, + "B5COMM": 1.0, + "B6SUB": 1.0, + "B6NOT": 1.0, + "B6COMM": 1.0, + "B7SUB": 1.0, + "B7NOT": 1.0, + "B7COMM": 1.0, + "B8SUB": 1.0, + "B8NOT": 1.0, + "B8COMM": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_z1v1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_z1v2.json b/src/encoded/schemas/ivp_z1v2.json new file mode 100644 index 0000000000..c065f3451f --- /dev/null +++ b/src/encoded/schemas/ivp_z1v2.json @@ -0,0 +1,504 @@ +{ + "title": "NACC Uniform Data Set (UDS) – Initial Visit Packet.Form Z1: Form Checklist", + "description": "NOTE: This form is to be completed by clinic staff.\nNACC expects and intends that all UDS forms will be attempted on all subjects, but we realize this may be impossible\nwhen the patient is terminally ill, or when there is no informant, or for other reasons. NACC requires that Forms Z1,\nA1, A5, B4, B9, C1, D1, and E1 be submitted for a subject to be included in the UDS database, even though these\nforms may include some missing data.\nFor forms not designated as required, if it is not feasible to collect all or almost all of the data elements for a subject\nand the ADC therefore decides not to attempt collection of those data, an explanation must be provided. Please\nindicate this decision below by including the appropriate explanatory code and any additional comments.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem 97 = Other problem\n96 = Cognitive/behavior problem 98 = Verbal refusal\n", + "id": "/profiles/ivp_z1v2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted", + "description": "Blank if #1, A2SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted", + "description": "Blank if #2, A3SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted", + "description": "Blank if #3, A4SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted", + "description": "Blank if #4, B1SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted", + "description": "Blank if #5, B2SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B2COMM": { + "title": "5B Form B2, Evaluation Form – HIS and CVD, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted", + "description": "Blank if #6, B3SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B5SUB": { + "title": "7 Form B5 or B5S, Behavioral Assessment – NPI-Q submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B5NOT": { + "title": "7A Reason Form B5 or B5S, Behavioral Assessment – NPI-Q not submitted", + "description": "Blank if #7, B5SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B5COMM": { + "title": "7B Form B5 or B5S, Behavioral Assessment – NPI-Q, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“),ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B6SUB": { + "title": "8 Form B6 or B6S, Behavioral Assessment – GDS submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B6NOT": { + "title": "8A Reason Form B6 or B6S, Behavioral Assessment – GDS not submitted", + "description": "Blank if #8, B6SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B6COMM": { + "title": "8B Form B6 or B6S, Behavioral Assessment – GDS, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B7SUB": { + "title": "9 Form B7 or B7S, Functional Assessment – FAQ submitted", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B7NOT": { + "title": "9A Reason Form B7 or B7S, Functional Assessment – FAQ not submitted", + "description": "Blank if #9, B7SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B7COMM": { + "title": "9B Form B7 or B7S, Functional Assessment – FAQ, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted", + "description": "Blank if #10, B8SUB = 1 (Yes).", + "type": "string", + "enum": [ + "95 Physical problem", + "96 Cognitive/behavior problem", + "97 Other problem", + "98 Verbal refusal" + ] + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)", + "description": "Any text or numbers but cannot use single quotes (‘), double quotes (“), ampersands (&), or percentage signs (%).", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted" + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted" + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted" + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted" + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted" + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted" + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted" + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted" + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted" + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted" + }, + "B2COMM": { + "title": "5B Form B2, Evaluation Form – HIS and CVD, comments (provide if needed)" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted" + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted" + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)" + }, + "B5SUB": { + "title": "7 Form B5 or B5S, Behavioral Assessment – NPI-Q submitted" + }, + "B5NOT": { + "title": "7A Reason Form B5 or B5S, Behavioral Assessment – NPI-Q not submitted" + }, + "B5COMM": { + "title": "7B Form B5 or B5S, Behavioral Assessment – NPI-Q, comments (provide if needed)" + }, + "B6SUB": { + "title": "8 Form B6 or B6S, Behavioral Assessment – GDS submitted" + }, + "B6NOT": { + "title": "8A Reason Form B6 or B6S, Behavioral Assessment – GDS not submitted" + }, + "B6COMM": { + "title": "8B Form B6 or B6S, Behavioral Assessment – GDS, comments (provide if needed)" + }, + "B7SUB": { + "title": "9 Form B7 or B7S, Functional Assessment – FAQ submitted" + }, + "B7NOT": { + "title": "9A Reason Form B7 or B7S, Functional Assessment – FAQ not submitted" + }, + "B7COMM": { + "title": "9B Form B7 or B7S, Functional Assessment – FAQ, comments (provide if needed)" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings" + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted" + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "A2SUB": { + "title": "1 Form A2, Informant Demographics submitted" + }, + "A2NOT": { + "title": "1A Reason Form A2, Informant Demographics not submitted" + }, + "A2COMM": { + "title": "1B Form A2, Informant Demographics, comments (provide if needed)" + }, + "A3SUB": { + "title": "2 Form A3, Subject Family History submitted" + }, + "A3NOT": { + "title": "2A Reason Form A3, Subject Family History not submitted" + }, + "A3COMM": { + "title": "2B Form A3, Subject Family History, comments (provide if needed)" + }, + "A4SUB": { + "title": "3 Form A4, Subject Medications submitted" + }, + "A4NOT": { + "title": "3A Reason Form A4, Subject Medications not submitted" + }, + "A4COMM": { + "title": "3B Form A4, Subject Medications, comments (provide if needed)" + }, + "B1SUB": { + "title": "4 Form B1, Evaluation Form – Physical submitted" + }, + "B1NOT": { + "title": "4A Reason Form B1, Evaluation Form – Physical not submitted" + }, + "B1COMM": { + "title": "4B Form B1, Evaluation Form – Physical, comments (provide if needed)" + }, + "B2SUB": { + "title": "5 Form B2, Evaluation Form – HIS and CVD submitted" + }, + "B2NOT": { + "title": "5A Reason Form B2, Evaluation Form – HIS and CVD not submitted" + }, + "B2COMM": { + "title": "5B Form B2, Evaluation Form – HIS and CVD, comments (provide if needed)" + }, + "B3SUB": { + "title": "6 Form B3, Evaluation Form – UPDRS submitted" + }, + "B3NOT": { + "title": "6A Reason Form B3 Evaluation Form – UPDRS not submitted" + }, + "B3COMM": { + "title": "6B Form B3, Evaluation Form – UPDRS, comments (provide if needed)" + }, + "B5SUB": { + "title": "7 Form B5 or B5S, Behavioral Assessment – NPI-Q submitted" + }, + "B5NOT": { + "title": "7A Reason Form B5 or B5S, Behavioral Assessment – NPI-Q not submitted" + }, + "B5COMM": { + "title": "7B Form B5 or B5S, Behavioral Assessment – NPI-Q, comments (provide if needed)" + }, + "B6SUB": { + "title": "8 Form B6 or B6S, Behavioral Assessment – GDS submitted" + }, + "B6NOT": { + "title": "8A Reason Form B6 or B6S, Behavioral Assessment – GDS not submitted" + }, + "B6COMM": { + "title": "8B Form B6 or B6S, Behavioral Assessment – GDS, comments (provide if needed)" + }, + "B7SUB": { + "title": "9 Form B7 or B7S, Functional Assessment – FAQ submitted" + }, + "B7NOT": { + "title": "9A Reason Form B7 or B7S, Functional Assessment – FAQ not submitted" + }, + "B7COMM": { + "title": "9B Form B7 or B7S, Functional Assessment – FAQ, comments (provide if needed)" + }, + "B8SUB": { + "title": "10 Form B8, Evaluation – Physical/Neurological Exam Findings" + }, + "B8NOT": { + "title": "10A Reason Form B8, Evaluation – Physical/Neurological Exam Findings not submitted" + }, + "B8COMM": { + "title": "10B Form B8, Evaluation – Physical/Neurological Exam Findings, comments (provide if needed)" + } + }, + "boost_values": { + "patient": 1.0, + "A2SUB": 1.0, + "A2NOT": 1.0, + "A2COMM": 1.0, + "A3SUB": 1.0, + "A3NOT": 1.0, + "A3COMM": 1.0, + "A4SUB": 1.0, + "A4NOT": 1.0, + "A4COMM": 1.0, + "B1SUB": 1.0, + "B1NOT": 1.0, + "B1COMM": 1.0, + "B2SUB": 1.0, + "B2NOT": 1.0, + "B2COMM": 1.0, + "B3SUB": 1.0, + "B3NOT": 1.0, + "B3COMM": 1.0, + "B5SUB": 1.0, + "B5NOT": 1.0, + "B5COMM": 1.0, + "B6SUB": 1.0, + "B6NOT": 1.0, + "B6COMM": 1.0, + "B7SUB": 1.0, + "B7NOT": 1.0, + "B7COMM": 1.0, + "B8SUB": 1.0, + "B8NOT": 1.0, + "B8COMM": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_z1v2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_z1x.json b/src/encoded/schemas/ivp_z1x.json new file mode 100644 index 0000000000..e941622ede --- /dev/null +++ b/src/encoded/schemas/ivp_z1x.json @@ -0,0 +1,648 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM Z1X: Form Checklist", + "description": "INSTRUCTIONS: This form is to be completed by clinic personnel.\nNACC expects and intends that all UDS forms will be attempted on all subjects, but we realize this may be impossible\nwhen the patient is terminally ill, or when there is no co-participant, or for other reasons. An explanation is required\nbelow for forms that are not submitted.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem\n96 = Cognitive or behavior problem\n97 = Other problem\n98 = Verbal refusal\n*Key for FTLD MODULE ONLY: Allowable codes are 95-98 as above as well as 99=Unknown or inadequate\ninformation.", + "id": "/profiles/uds_ivp_z1x.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "note_z1x_1", + "note_z1x_2", + "note_z1x_3", + "note_z1x_4", + "note_z1x_5", + "note_z1x_6", + "note_z1x_7", + "note_z1x_8", + "note_z1x_9", + "note_z1x_10", + "note_z1x_11", + "note_z1x_12", + "note_z1x_13", + "note_z1x_14", + "note_z1x_15", + "cls_form" + ], + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "note_z1x_1": { + "title": "A1 SUBJECT DEMOGRAPHICS", + "type": "object", + "properties": { + "langa1": { + "title": "1a. Language used for A1 Subject Demographics", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_2": { + "title": "A2 Co-participant Demographics", + "type": "object", + "properties": { + "a2sub": { + "title": "2b. Submitted A2 Co-participant Demographics", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "a2not": { + "title": "2c. If A2 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langa2": { + "title": "2a. Language used for A2 Co-Participant Demographics", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_3": { + "title": "A3 Subject Family History", + "type": "object", + "properties": { + "a3sub": { + "title": "3b. Submitted A3 Subject Family History", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "a3not": { + "title": "3c. If A3 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langa3": { + "title": "3a. Language used for A3 Subject Family History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_4": { + "title": "A4 Subject Medications", + "type": "object", + "properties": { + "langa4": { + "title": "4a. Language used for A4 Subject Medications", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "a4sub": { + "title": "4b. Submitted A4 Subject Medications", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "a4not": { + "title": "4c. IfA4 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + } + + } + }, + "note_z1x_5": { + "title": "A5 Subject Health History", + "type": "object", + "properties": { + "langa5": { + "title": "5a. Language used for A5 Subject Health History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_6": { + "title": "B1 EVALUATION FORM - Physical", + "type": "object", + "properties": { + "b1sub": { + "title": "6b. Submitted B1 EVALUATION FORM - Physical", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b1not": { + "title": "6c. If B1 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb1": { + "title": "6a. Language used for B1 Evaluation Form: Physical", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_7": { + "title": "B4 Global Staging - CDR: Standard and Supplemental", + "type": "object", + "properties": { + "langb4": { + "title": "7b. Language used for B4 CDR® Plus NACC FTLD", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_8": { + "title": "B5 BEHAVIORAL ASSESSMENT NPI-Q", + "type": "object", + "properties": { + "b5sub": { + "title": "8b. Submitted B5 BEHAVIORAL ASSESSMENT NPI-Q", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b5not": { + "title": "8c. If B5 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb5": { + "title": "8a. Language used for B5 Behaviorial Assessment: NPI-Q", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_9": { + "title": "B6 BEHAVIORAL ASSESSMENT - GDS", + "type": "object", + "properties": { + "b6sub": { + "title": "9b. Submitted B6 BEHAVIORAL ASSESSMENT - GDS", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b6not": { + "title": "9c. If B6 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb6": { + "title": "9a. Language B6 Behavioral Assessment: GDS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_10": { + "title": "B7 FUNCTIONAL ASSESSMENT - FAS", + "type": "object", + "properties": { + "b7sub": { + "title": "10b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b7not": { + "title": "10c. If B7 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb7": { + "title": "10a. Language used for B7 Functional Assessment: FAS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_11": { + "title": "B8 EVALUATION FORM Neurological Examination Findings", + "type": "object", + "properties": { + "langb8": { + "title": "11a. Language used for B8 Neurological Examination Findings", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_12": { + "title": "B9 Clinician Judgment of Symptoms", + "type": "object", + "properties": { + "langb9": { + "title": "12a. Language used for B9 Clinician Judgment of Symptoms", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_13": { + "title": "C2 Neuropsychological Battery Scores", + "type": "object", + "properties": { + "langc2": { + "title": "13a. Language used for C2 Neuropsychological Battery Scores", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_14": { + "title": "D1 Clinician Diagnosis", + "type": "object", + "properties": { + "langd1": { + "title": "14a. Language used for D1 Clinician Diagnosis", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_15": { + "title": "D2 Clinician-assessed Medical Conditions", + "type": "object", + "properties": { + "langd2": { + "title": "15a. Language used for D2 Clinician-assessed Medical Conditions", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "ftld_module": { + "title": "FTLD Module", + "description": "*Key for FTLD MODULE ONLY: Allowable codes are 95-98 as above as well as 99=Unknown or inadequate information.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem\n96 = Cognitive or behavior problem\n97 = Other problem\n98 = Verbal refusal\n99=Unknown or inadequate information", + "type": "object", + "properties": { + "ftda3afs": { + "title": "16b. Submitted A3A Record of Consent for Biologic Specimen Use", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftda3afr": { + "title": "16c. If A3a not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langa3a": { + "title": "16a. Language used for A3A Record of Consent for Biologic Specimen Use", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langb3f": { + "title": "17a. Language used for B3f Supplemental UPDRS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langb9f": { + "title": "18a. Language used for B9F Clinical PPA and bvFTD Features", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langc1f": { + "title": "19a. Language used for C1F Neuropsychological Battery summary Scores", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langc2f": { + "title": "20a. Language used for C2F Social Norms Questionnaire", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langc3f": { + "title": "21a. Language used for C3F Social Behavior Observer Checklist", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "ftdc4fs": { + "title": "22b. Submitted C4F Behavioral Inhibition Scale", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftdc4fr": { + "title": "22c. If C4F not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langc4f": { + "title": "22a. Language used for C4F Behavioral Inhibition Scale", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "ftdc5fs": { + "title": "23b. Submitted C5F Interpersonal Reactivity Index", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftdc5fr": { + "title": "23c. If C5F not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langc5f": { + "title": "23a. Language used for C5F Interpersonal Reactivity Index", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "ftdc6fs": { + "title": "24b. Submitted C6F Revised Self-monitoring Scale", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftdc6fr": { + "title": "24c. If C6F not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langc6f": { + "title": "24a. Language used for C6F Revised Self-monitoring Scale", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "lange2f": { + "title": "25a. Language used for E2F Imaging Available", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "lange3f": { + "title": "26a. Language used for E3F Imaging in Diagnosis", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "cls_form": { + "title": "CLS Form, questions display for Hispanic participants", + "type": "object", + "properties": { + "clssub": { + "title": "27b. Submitted CLS Subject's Language History", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "langcls": { + "title": "27a. Language used for CLS Subject's Language History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + } + }, + + "boost_values": { + "patient": 1.0, + "note_z1x_1.langa1": 1.0, + "note_z1x_2.a2sub": 1.0, + "note_z1x_2.a2not": 1.0, + "note_z1x_2.langa2": 1.0, + "note_z1x_3.a3sub": 1.0, + "note_z1x_3.a3not": 1.0, + "note_z1x_3.langa3": 1.0, + "note_z1x_4.a4sub": 1.0, + "note_z1x_4.a4not": 1.0, + "note_z1x_4.langa4": 1.0, + "note_z1x_5.langa5": 1.0, + "note_z1x_6.b1sub": 1.0, + "note_z1x_6.b1not": 1.0, + "note_z1x_6.langb1": 1.0, + "note_z1x_7.langb4": 1.0, + "note_z1x_8.b5sub": 1.0, + "note_z1x_8.b5not": 1.0, + "note_z1x_8.langb5": 1.0, + "note_z1x_9.b6sub": 1.0, + "note_z1x_9.b6not": 1.0, + "note_z1x_9.langb6": 1.0, + "note_z1x_10.b7sub": 1.0, + "note_z1x_10.b7not": 1.0, + "note_z1x_10.langb7": 1.0, + "note_z1x_11.langb8": 1.0, + "note_z1x_12.langb9": 1.0, + "note_z1x_13.langc2": 1.0, + "note_z1x_14.langd1": 1.0, + "note_z1x_15.langd2": 1.0, + "ftld_module.ftda3afs": 1.0, + "ftld_module.ftda3afr": 1.0, + "ftld_module.langa3a": 1.0, + "ftld_module.langb3f": 1.0, + "ftld_module.langb9f": 1.0, + "ftld_module.langc1f": 1.0, + "ftld_module.langc2f": 1.0, + "ftld_module.langc3f": 1.0, + "ftld_module.ftdc4fs": 1.0, + "ftld_module.ftdc4fr": 1.0, + "ftld_module.langc4f": 1.0, + "ftld_module.ftdc5fs": 1.0, + "ftld_module.ftdc5fr": 1.0, + "ftld_module.langc5f": 1.0, + "ftld_module.ftdc6fs": 1.0, + "ftld_module.ftdc6fr": 1.0, + "ftld_module.langc6f": 1.0, + "ftld_module.lange2f": 1.0, + "ftld_module.lange3f": 1.0, + "cls_form.clssub": 1.0, + "cls_form.langcls": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_z1x.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_z1xv2.json b/src/encoded/schemas/ivp_z1xv2.json new file mode 100644 index 0000000000..64ce6a1867 --- /dev/null +++ b/src/encoded/schemas/ivp_z1xv2.json @@ -0,0 +1,961 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM Z1X: Form Checklist", + "description": "INSTRUCTIONS: This form is to be completed by clinic personnel.\nNACC expects and intends that all UDS forms will be attempted on all subjects, but we realize this may be impossible\nwhen the patient is terminally ill, or when there is no co-participant, or for other reasons. An explanation is required\nbelow for forms that are not submitted.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem\n96 = Cognitive or behavior problem\n97 = Other problem\n98 = Verbal refusal\n*Key for FTLD MODULE ONLY: Allowable codes are 95-98 as above as well as 99=Unknown or inadequate\ninformation.", + "id": "/profiles/ivp_z1xv2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "note_z1x_1", + "note_z1x_2", + "note_z1x_3", + "note_z1x_4", + "note_z1x_5", + "note_z1x_6", + "note_z1x_7", + "note_z1x_8", + "note_z1x_9", + "note_z1x_10", + "note_z1x_11", + "note_z1x_12", + "note_z1x_13", + "note_z1x_14", + "note_z1x_15", + "cls_form" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_z1x.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "note_z1x_1": { + "title": "A1 SUBJECT DEMOGRAPHICS", + "type": "object", + "properties": { + "langa1": { + "title": "1a. Language used for A1 Subject Demographics", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_2": { + "title": "A2 Co-participant Demographics", + "type": "object", + "properties": { + "a2sub": { + "title": "2b. Submitted A2 Co-participant Demographics", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "a2not": { + "title": "2c. If A2 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langa2": { + "title": "2a. Language used for A2 Co-Participant Demographics", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_3": { + "title": "A3 Subject Family History", + "type": "object", + "properties": { + "a3sub": { + "title": "3b. Submitted A3 Subject Family History", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "a3not": { + "title": "3c. If A3 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langa3": { + "title": "3a. Language used for A3 Subject Family History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_4": { + "title": "A4 Subject Medications", + "type": "object", + "properties": { + "langa4": { + "title": "4a. Language used for A4 Subject Medications", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "a4sub": { + "title": "4b. Submitted A4 Subject Medications", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "a4not": { + "title": "4c. IfA4 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + } + + } + }, + "note_z1x_5": { + "title": "A5 Subject Health History", + "type": "object", + "properties": { + "langa5": { + "title": "5a. Language used for A5 Subject Health History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_6": { + "title": "B1 EVALUATION FORM - Physical", + "type": "object", + "properties": { + "b1sub": { + "title": "6b. Submitted B1 EVALUATION FORM - Physical", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b1not": { + "title": "6c. If B1 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb1": { + "title": "6a. Language used for B1 Evaluation Form: Physical", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_7": { + "title": "B4 Global Staging - CDR: Standard and Supplemental", + "type": "object", + "properties": { + "langb4": { + "title": "7b. Language used for B4 CDR® Plus NACC FTLD", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_8": { + "title": "B5 BEHAVIORAL ASSESSMENT NPI-Q", + "type": "object", + "properties": { + "b5sub": { + "title": "8b. Submitted B5 BEHAVIORAL ASSESSMENT NPI-Q", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b5not": { + "title": "8c. If B5 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb5": { + "title": "8a. Language used for B5 Behaviorial Assessment: NPI-Q", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_9": { + "title": "B6 BEHAVIORAL ASSESSMENT - GDS", + "type": "object", + "properties": { + "b6sub": { + "title": "9b. Submitted B6 BEHAVIORAL ASSESSMENT - GDS", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b6not": { + "title": "9c. If B6 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb6": { + "title": "9a. Language B6 Behavioral Assessment: GDS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_10": { + "title": "B7 FUNCTIONAL ASSESSMENT - FAS", + "type": "object", + "properties": { + "b7sub": { + "title": "10b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b7not": { + "title": "10c. If B7 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb7": { + "title": "10a. Language used for B7 Functional Assessment: FAS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_11": { + "title": "B8 EVALUATION FORM Neurological Examination Findings", + "type": "object", + "properties": { + "langb8": { + "title": "11a. Language used for B8 Neurological Examination Findings", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_12": { + "title": "B9 Clinician Judgment of Symptoms", + "type": "object", + "properties": { + "langb9": { + "title": "12a. Language used for B9 Clinician Judgment of Symptoms", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_13": { + "title": "C2 Neuropsychological Battery Scores", + "type": "object", + "properties": { + "langc2": { + "title": "13a. Language used for C2 Neuropsychological Battery Scores", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_14": { + "title": "D1 Clinician Diagnosis", + "type": "object", + "properties": { + "langd1": { + "title": "14a. Language used for D1 Clinician Diagnosis", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_15": { + "title": "D2 Clinician-assessed Medical Conditions", + "type": "object", + "properties": { + "langd2": { + "title": "15a. Language used for D2 Clinician-assessed Medical Conditions", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "ftld_module": { + "title": "FTLD Module", + "description": "*Key for FTLD MODULE ONLY: Allowable codes are 95-98 as above as well as 99=Unknown or inadequate information.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem\n96 = Cognitive or behavior problem\n97 = Other problem\n98 = Verbal refusal\n99=Unknown or inadequate information", + "type": "object", + "properties": { + "ftda3afs": { + "title": "16b. Submitted A3A Record of Consent for Biologic Specimen Use", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftda3afr": { + "title": "16c. If A3a not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langa3a": { + "title": "16a. Language used for A3A Record of Consent for Biologic Specimen Use", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langb3f": { + "title": "17a. Language used for B3f Supplemental UPDRS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langb9f": { + "title": "18a. Language used for B9F Clinical PPA and bvFTD Features", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langc1f": { + "title": "19a. Language used for C1F Neuropsychological Battery summary Scores", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langc2f": { + "title": "20a. Language used for C2F Social Norms Questionnaire", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langc3f": { + "title": "21a. Language used for C3F Social Behavior Observer Checklist", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "ftdc4fs": { + "title": "22b. Submitted C4F Behavioral Inhibition Scale", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftdc4fr": { + "title": "22c. If C4F not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langc4f": { + "title": "22a. Language used for C4F Behavioral Inhibition Scale", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "ftdc5fs": { + "title": "23b. Submitted C5F Interpersonal Reactivity Index", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftdc5fr": { + "title": "23c. If C5F not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langc5f": { + "title": "23a. Language used for C5F Interpersonal Reactivity Index", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "ftdc6fs": { + "title": "24b. Submitted C6F Revised Self-monitoring Scale", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftdc6fr": { + "title": "24c. If C6F not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langc6f": { + "title": "24a. Language used for C6F Revised Self-monitoring Scale", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "lange2f": { + "title": "25a. Language used for E2F Imaging Available", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "lange3f": { + "title": "26a. Language used for E3F Imaging in Diagnosis", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "cls_form": { + "title": "CLS Form, questions display for Hispanic participants", + "type": "object", + "properties": { + "clssub": { + "title": "27b. Submitted CLS Subject's Language History", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "langcls": { + "title": "27a. Language used for CLS Subject's Language History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "note_z1x_1.langa1": { + "title": "1a. Language used for A1 Subject Demographics" + }, + "note_z1x_2.a2sub": { + "title": "2b. Submitted A2 Co-participant Demographics" + }, + "note_z1x_2.a2not": { + "title": "2c. If A2 not submitted, specify reason. (see KEY)" + }, + "note_z1x_2.langa2": { + "title": "2a. Language used for A2 Co-Participant Demographics" + }, + "note_z1x_3.a3sub": { + "title": "3b. Submitted A3 Subject Family History" + }, + "note_z1x_3.a3not": { + "title": "3c. If A3 not submitted, specify reason. (see KEY)" + }, + "note_z1x_3.langa3": { + "title": "3a. Language used for A3 Subject Family History" + }, + "note_z1x_4.a4sub": { + "title": "4b. Submitted A4 Subject Medications" + }, + "note_z1x_4.a4not": { + "title": "4c. IfA4 not submitted, specify reason. (see KEY)" + }, + "note_z1x_4.langa4": { + "title": "4a. Language used for A4 Subject Medications" + }, + "note_z1x_5.langa5": { + "title": "5a. Language used for A5 Subject Health History" + }, + "note_z1x_6.b1sub": { + "title": "6b. Submitted B1 EVALUATION FORM - Physical" + }, + "note_z1x_6.b1not": { + "title": "6c. If B1 not submitted, specify reason. (see KEY)" + }, + "note_z1x_6.langb1": { + "title": "6a. Language used for B1 Evaluation Form: Physical" + }, + "note_z1x_7.langb4": { + "title": "7b. Language used for B4 CDR® Plus NACC FTLD" + }, + "note_z1x_8.b5sub": { + "title": "8b. Submitted B5 BEHAVIORAL ASSESSMENT NPI-Q" + }, + "note_z1x_8.b5not": { + "title": "8c. If B5 not submitted, specify reason. (see KEY)" + }, + "note_z1x_8.langb5": { + "title": "8a. Language used for B5 Behaviorial Assessment: NPI-Q" + }, + "note_z1x_9.b6sub": { + "title": "9b. Submitted B6 BEHAVIORAL ASSESSMENT - GDS" + }, + "note_z1x_9.b6not": { + "title": "9c. If B6 not submitted, specify reason. (see KEY)" + }, + "note_z1x_9.langb6": { + "title": "9a. Language B6 Behavioral Assessment: GDS" + }, + "note_z1x_10.b7sub": { + "title": "10b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS" + }, + "note_z1x_10.b7not": { + "title": "10c. If B7 not submitted, specify reason. (see KEY)" + }, + "note_z1x_10.langb7": { + "title": "10a. Language used for B7 Functional Assessment: FAS" + }, + "note_z1x_11.langb8": { + "title": "11a. Language used for B8 Neurological Examination Findings" + }, + "note_z1x_12.langb9": { + "title": "12a. Language used for B9 Clinician Judgment of Symptoms" + }, + "note_z1x_13.langc2": { + "title": "13a. Language used for C2 Neuropsychological Battery Scores" + }, + "note_z1x_14.langd1": { + "title": "14a. Language used for D1 Clinician Diagnosis" + }, + "note_z1x_15.langd2": { + "title": "15a. Language used for D2 Clinician-assessed Medical Conditions" + }, + "ftld_module.ftda3afs": { + "title": "16b. Submitted A3A Record of Consent for Biologic Specimen Use" + }, + "ftld_module.ftda3afr": { + "title": "16c. If A3a not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langa3a": { + "title": "16a. Language used for A3A Record of Consent for Biologic Specimen Use" + }, + "ftld_module.langb3f": { + "title": "17a. Language used for B3f Supplemental UPDRS" + }, + "ftld_module.langb9f": { + "title": "18a. Language used for B9F Clinical PPA and bvFTD Features" + }, + "ftld_module.langc1f": { + "title": "19a. Language used for C1F Neuropsychological Battery summary Scores" + }, + "ftld_module.langc2f": { + "title": "20a. Language used for C2F Social Norms Questionnaire" + }, + "ftld_module.langc3f": { + "title": "21a. Language used for C3F Social Behavior Observer Checklist" + }, + "ftld_module.ftdc4fs": { + "title": "22b. Submitted C4F Behavioral Inhibition Scale" + }, + "ftld_module.ftdc4fr": { + "title": "22c. If C4F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc4f": { + "title": "22a. Language used for C4F Behavioral Inhibition Scale" + }, + "ftld_module.ftdc5fs": { + "title": "23b. Submitted C5F Interpersonal Reactivity Index" + }, + "ftld_module.ftdc5fr": { + "title": "23c. If C5F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc5f": { + "title": "23a. Language used for C5F Interpersonal Reactivity Index" + }, + "ftld_module.ftdc6fs": { + "title": "24b. Submitted C6F Revised Self-monitoring Scale" + }, + "ftld_module.ftdc6fr": { + "title": "24c. If C6F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc6f": { + "title": "24a. Language used for C6F Revised Self-monitoring Scale" + }, + "ftld_module.lange2f": { + "title": "25a. Language used for E2F Imaging Available" + }, + "ftld_module.lange3f": { + "title": "26a. Language used for E3F Imaging in Diagnosis" + }, + "cls_form.clssub": { + "title": "27b. Submitted CLS Subject's Language History" + }, + "cls_form.langcls": { + "title": "27a. Language used for CLS Subject's Language History" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "note_z1x_1.langa1": { + "title": "1a. Language used for A1 Subject Demographics" + }, + "note_z1x_2.a2sub": { + "title": "2b. Submitted A2 Co-participant Demographics" + }, + "note_z1x_2.a2not": { + "title": "2c. If A2 not submitted, specify reason. (see KEY)" + }, + "note_z1x_2.langa2": { + "title": "2a. Language used for A2 Co-Participant Demographics" + }, + "note_z1x_3.a3sub": { + "title": "3b. Submitted A3 Subject Family History" + }, + "note_z1x_3.a3not": { + "title": "3c. If A3 not submitted, specify reason. (see KEY)" + }, + "note_z1x_3.langa3": { + "title": "3a. Language used for A3 Subject Family History" + }, + "note_z1x_4.a4sub": { + "title": "4b. Submitted A4 Subject Medications" + }, + "note_z1x_4.a4not": { + "title": "4c. IfA4 not submitted, specify reason. (see KEY)" + }, + "note_z1x_4.langa4": { + "title": "4a. Language used for A4 Subject Medications" + }, + "note_z1x_5.langa5": { + "title": "5a. Language used for A5 Subject Health History" + }, + "note_z1x_6.b1sub": { + "title": "6b. Submitted B1 EVALUATION FORM - Physical" + }, + "note_z1x_6.b1not": { + "title": "6c. If B1 not submitted, specify reason. (see KEY)" + }, + "note_z1x_6.langb1": { + "title": "6a. Language used for B1 Evaluation Form: Physical" + }, + "note_z1x_7.langb4": { + "title": "7b. Language used for B4 CDR® Plus NACC FTLD" + }, + "note_z1x_8.b5sub": { + "title": "8b. Submitted B5 BEHAVIORAL ASSESSMENT NPI-Q" + }, + "note_z1x_8.b5not": { + "title": "8c. If B5 not submitted, specify reason. (see KEY)" + }, + "note_z1x_8.langb5": { + "title": "8a. Language used for B5 Behaviorial Assessment: NPI-Q" + }, + "note_z1x_9.b6sub": { + "title": "9b. Submitted B6 BEHAVIORAL ASSESSMENT - GDS" + }, + "note_z1x_9.b6not": { + "title": "9c. If B6 not submitted, specify reason. (see KEY)" + }, + "note_z1x_9.langb6": { + "title": "9a. Language B6 Behavioral Assessment: GDS" + }, + "note_z1x_10.b7sub": { + "title": "10b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS" + }, + "note_z1x_10.b7not": { + "title": "10c. If B7 not submitted, specify reason. (see KEY)" + }, + "note_z1x_10.langb7": { + "title": "10a. Language used for B7 Functional Assessment: FAS" + }, + "note_z1x_11.langb8": { + "title": "11a. Language used for B8 Neurological Examination Findings" + }, + "note_z1x_12.langb9": { + "title": "12a. Language used for B9 Clinician Judgment of Symptoms" + }, + "note_z1x_13.langc2": { + "title": "13a. Language used for C2 Neuropsychological Battery Scores" + }, + "note_z1x_14.langd1": { + "title": "14a. Language used for D1 Clinician Diagnosis" + }, + "note_z1x_15.langd2": { + "title": "15a. Language used for D2 Clinician-assessed Medical Conditions" + }, + "ftld_module.ftda3afs": { + "title": "16b. Submitted A3A Record of Consent for Biologic Specimen Use" + }, + "ftld_module.ftda3afr": { + "title": "16c. If A3a not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langa3a": { + "title": "16a. Language used for A3A Record of Consent for Biologic Specimen Use" + }, + "ftld_module.langb3f": { + "title": "17a. Language used for B3f Supplemental UPDRS" + }, + "ftld_module.langb9f": { + "title": "18a. Language used for B9F Clinical PPA and bvFTD Features" + }, + "ftld_module.langc1f": { + "title": "19a. Language used for C1F Neuropsychological Battery summary Scores" + }, + "ftld_module.langc2f": { + "title": "20a. Language used for C2F Social Norms Questionnaire" + }, + "ftld_module.langc3f": { + "title": "21a. Language used for C3F Social Behavior Observer Checklist" + }, + "ftld_module.ftdc4fs": { + "title": "22b. Submitted C4F Behavioral Inhibition Scale" + }, + "ftld_module.ftdc4fr": { + "title": "22c. If C4F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc4f": { + "title": "22a. Language used for C4F Behavioral Inhibition Scale" + }, + "ftld_module.ftdc5fs": { + "title": "23b. Submitted C5F Interpersonal Reactivity Index" + }, + "ftld_module.ftdc5fr": { + "title": "23c. If C5F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc5f": { + "title": "23a. Language used for C5F Interpersonal Reactivity Index" + }, + "ftld_module.ftdc6fs": { + "title": "24b. Submitted C6F Revised Self-monitoring Scale" + }, + "ftld_module.ftdc6fr": { + "title": "24c. If C6F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc6f": { + "title": "24a. Language used for C6F Revised Self-monitoring Scale" + }, + "ftld_module.lange2f": { + "title": "25a. Language used for E2F Imaging Available" + }, + "ftld_module.lange3f": { + "title": "26a. Language used for E3F Imaging in Diagnosis" + }, + "cls_form.clssub": { + "title": "27b. Submitted CLS Subject's Language History" + }, + "cls_form.langcls": { + "title": "27a. Language used for CLS Subject's Language History" + } + }, + "boost_values": { + "patient": 1.0, + "note_z1x_1.langa1": 1.0, + "note_z1x_2.a2sub": 1.0, + "note_z1x_2.a2not": 1.0, + "note_z1x_2.langa2": 1.0, + "note_z1x_3.a3sub": 1.0, + "note_z1x_3.a3not": 1.0, + "note_z1x_3.langa3": 1.0, + "note_z1x_4.a4sub": 1.0, + "note_z1x_4.a4not": 1.0, + "note_z1x_4.langa4": 1.0, + "note_z1x_5.langa5": 1.0, + "note_z1x_6.b1sub": 1.0, + "note_z1x_6.b1not": 1.0, + "note_z1x_6.langb1": 1.0, + "note_z1x_7.langb4": 1.0, + "note_z1x_8.b5sub": 1.0, + "note_z1x_8.b5not": 1.0, + "note_z1x_8.langb5": 1.0, + "note_z1x_9.b6sub": 1.0, + "note_z1x_9.b6not": 1.0, + "note_z1x_9.langb6": 1.0, + "note_z1x_10.b7sub": 1.0, + "note_z1x_10.b7not": 1.0, + "note_z1x_10.langb7": 1.0, + "note_z1x_11.langb8": 1.0, + "note_z1x_12.langb9": 1.0, + "note_z1x_13.langc2": 1.0, + "note_z1x_14.langd1": 1.0, + "note_z1x_15.langd2": 1.0, + "ftld_module.ftda3afs": 1.0, + "ftld_module.ftda3afr": 1.0, + "ftld_module.langa3a": 1.0, + "ftld_module.langb3f": 1.0, + "ftld_module.langb9f": 1.0, + "ftld_module.langc1f": 1.0, + "ftld_module.langc2f": 1.0, + "ftld_module.langc3f": 1.0, + "ftld_module.ftdc4fs": 1.0, + "ftld_module.ftdc4fr": 1.0, + "ftld_module.langc4f": 1.0, + "ftld_module.ftdc5fs": 1.0, + "ftld_module.ftdc5fr": 1.0, + "ftld_module.langc5f": 1.0, + "ftld_module.ftdc6fs": 1.0, + "ftld_module.ftdc6fr": 1.0, + "ftld_module.langc6f": 1.0, + "ftld_module.lange2f": 1.0, + "ftld_module.lange3f": 1.0, + "cls_form.clssub": 1.0, + "cls_form.langcls": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_z1xv2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/ivp_z1xv3.json b/src/encoded/schemas/ivp_z1xv3.json new file mode 100644 index 0000000000..451d4a3203 --- /dev/null +++ b/src/encoded/schemas/ivp_z1xv3.json @@ -0,0 +1,961 @@ +{ + "title": "NACC Uniform Data Set (UDS) - INITIAL VISIT PACKETFORM Z1X: Form Checklist", + "description": "INSTRUCTIONS: This form is to be completed by clinic personnel.\nNACC expects and intends that all UDS forms will be attempted on all subjects, but we realize this may be impossible\nwhen the patient is terminally ill, or when there is no co-participant, or for other reasons. An explanation is required\nbelow for forms that are not submitted.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem\n96 = Cognitive or behavior problem\n97 = Other problem\n98 = Verbal refusal\n*Key for FTLD MODULE ONLY: Allowable codes are 95-98 as above as well as 99=Unknown or inadequate\ninformation.", + "id": "/profiles/ivp_z1xv3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "note_z1x_1", + "note_z1x_2", + "note_z1x_3", + "note_z1x_4", + "note_z1x_5", + "note_z1x_6", + "note_z1x_7", + "note_z1x_8", + "note_z1x_9", + "note_z1x_10", + "note_z1x_11", + "note_z1x_12", + "note_z1x_13", + "note_z1x_14", + "note_z1x_15", + "cls_form" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "ivp_z1x.json#/properties" + }, + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "note_z1x_1": { + "title": "A1 SUBJECT DEMOGRAPHICS", + "type": "object", + "properties": { + "langa1": { + "title": "1a. Language used for A1 Subject Demographics", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_2": { + "title": "A2 Co-participant Demographics", + "type": "object", + "properties": { + "a2sub": { + "title": "2b. Submitted A2 Co-participant Demographics", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "a2not": { + "title": "2c. If A2 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langa2": { + "title": "2a. Language used for A2 Co-Participant Demographics", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_3": { + "title": "A3 Subject Family History", + "type": "object", + "properties": { + "a3sub": { + "title": "3b. Submitted A3 Subject Family History", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "a3not": { + "title": "3c. If A3 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langa3": { + "title": "3a. Language used for A3 Subject Family History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_4": { + "title": "A4 Subject Medications", + "type": "object", + "properties": { + "langa4": { + "title": "4a. Language used for A4 Subject Medications", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "a4sub": { + "title": "4b. Submitted A4 Subject Medications", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "a4not": { + "title": "4c. IfA4 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + } + + } + }, + "note_z1x_5": { + "title": "A5 Subject Health History", + "type": "object", + "properties": { + "langa5": { + "title": "5a. Language used for A5 Subject Health History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_6": { + "title": "B1 EVALUATION FORM - Physical", + "type": "object", + "properties": { + "b1sub": { + "title": "6b. Submitted B1 EVALUATION FORM - Physical", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b1not": { + "title": "6c. If B1 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb1": { + "title": "6a. Language used for B1 Evaluation Form: Physical", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_7": { + "title": "B4 Global Staging - CDR: Standard and Supplemental", + "type": "object", + "properties": { + "langb4": { + "title": "7b. Language used for B4 CDR® Plus NACC FTLD", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_8": { + "title": "B5 BEHAVIORAL ASSESSMENT NPI-Q", + "type": "object", + "properties": { + "b5sub": { + "title": "8b. Submitted B5 BEHAVIORAL ASSESSMENT NPI-Q", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b5not": { + "title": "8c. If B5 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb5": { + "title": "8a. Language used for B5 Behaviorial Assessment: NPI-Q", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_9": { + "title": "B6 BEHAVIORAL ASSESSMENT - GDS", + "type": "object", + "properties": { + "b6sub": { + "title": "9b. Submitted B6 BEHAVIORAL ASSESSMENT - GDS", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b6not": { + "title": "9c. If B6 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb6": { + "title": "9a. Language B6 Behavioral Assessment: GDS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_10": { + "title": "B7 FUNCTIONAL ASSESSMENT - FAS", + "type": "object", + "properties": { + "b7sub": { + "title": "10b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "b7not": { + "title": "10c. If B7 not submitted, specify reason. (see KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langb7": { + "title": "10a. Language used for B7 Functional Assessment: FAS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_11": { + "title": "B8 EVALUATION FORM Neurological Examination Findings", + "type": "object", + "properties": { + "langb8": { + "title": "11a. Language used for B8 Neurological Examination Findings", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_12": { + "title": "B9 Clinician Judgment of Symptoms", + "type": "object", + "properties": { + "langb9": { + "title": "12a. Language used for B9 Clinician Judgment of Symptoms", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_13": { + "title": "C2 Neuropsychological Battery Scores", + "type": "object", + "properties": { + "langc2": { + "title": "13a. Language used for C2 Neuropsychological Battery Scores", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_14": { + "title": "D1 Clinician Diagnosis", + "type": "object", + "properties": { + "langd1": { + "title": "14a. Language used for D1 Clinician Diagnosis", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "note_z1x_15": { + "title": "D2 Clinician-assessed Medical Conditions", + "type": "object", + "properties": { + "langd2": { + "title": "15a. Language used for D2 Clinician-assessed Medical Conditions", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "ftld_module": { + "title": "FTLD Module", + "description": "*Key for FTLD MODULE ONLY: Allowable codes are 95-98 as above as well as 99=Unknown or inadequate information.\nKEY: If the specified form was not completed, please enter one of the following codes:\n95 = Physical problem\n96 = Cognitive or behavior problem\n97 = Other problem\n98 = Verbal refusal\n99=Unknown or inadequate information", + "type": "object", + "properties": { + "ftda3afs": { + "title": "16b. Submitted A3A Record of Consent for Biologic Specimen Use", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftda3afr": { + "title": "16c. If A3a not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langa3a": { + "title": "16a. Language used for A3A Record of Consent for Biologic Specimen Use", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langb3f": { + "title": "17a. Language used for B3f Supplemental UPDRS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langb9f": { + "title": "18a. Language used for B9F Clinical PPA and bvFTD Features", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langc1f": { + "title": "19a. Language used for C1F Neuropsychological Battery summary Scores", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langc2f": { + "title": "20a. Language used for C2F Social Norms Questionnaire", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "langc3f": { + "title": "21a. Language used for C3F Social Behavior Observer Checklist", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "ftdc4fs": { + "title": "22b. Submitted C4F Behavioral Inhibition Scale", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftdc4fr": { + "title": "22c. If C4F not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langc4f": { + "title": "22a. Language used for C4F Behavioral Inhibition Scale", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "ftdc5fs": { + "title": "23b. Submitted C5F Interpersonal Reactivity Index", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftdc5fr": { + "title": "23c. If C5F not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langc5f": { + "title": "23a. Language used for C5F Interpersonal Reactivity Index", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "ftdc6fs": { + "title": "24b. Submitted C6F Revised Self-monitoring Scale", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftdc6fr": { + "title": "24c. If C6F not submitted, specify reason. (see *KEY)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal", + "99 - Unknown or inadequate information" + ] + }, + "langc6f": { + "title": "24a. Language used for C6F Revised Self-monitoring Scale", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "lange2f": { + "title": "25a. Language used for E2F Imaging Available", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + }, + "lange3f": { + "title": "26a. Language used for E3F Imaging in Diagnosis", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "cls_form": { + "title": "CLS Form, questions display for Hispanic participants", + "type": "object", + "properties": { + "clssub": { + "title": "27b. Submitted CLS Subject's Language History", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "langcls": { + "title": "27a. Language used for CLS Subject's Language History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "note_z1x_1.langa1": { + "title": "1a. Language used for A1 Subject Demographics" + }, + "note_z1x_2.a2sub": { + "title": "2b. Submitted A2 Co-participant Demographics" + }, + "note_z1x_2.a2not": { + "title": "2c. If A2 not submitted, specify reason. (see KEY)" + }, + "note_z1x_2.langa2": { + "title": "2a. Language used for A2 Co-Participant Demographics" + }, + "note_z1x_3.a3sub": { + "title": "3b. Submitted A3 Subject Family History" + }, + "note_z1x_3.a3not": { + "title": "3c. If A3 not submitted, specify reason. (see KEY)" + }, + "note_z1x_3.langa3": { + "title": "3a. Language used for A3 Subject Family History" + }, + "note_z1x_4.a4sub": { + "title": "4b. Submitted A4 Subject Medications" + }, + "note_z1x_4.a4not": { + "title": "4c. IfA4 not submitted, specify reason. (see KEY)" + }, + "note_z1x_4.langa4": { + "title": "4a. Language used for A4 Subject Medications" + }, + "note_z1x_5.langa5": { + "title": "5a. Language used for A5 Subject Health History" + }, + "note_z1x_6.b1sub": { + "title": "6b. Submitted B1 EVALUATION FORM - Physical" + }, + "note_z1x_6.b1not": { + "title": "6c. If B1 not submitted, specify reason. (see KEY)" + }, + "note_z1x_6.langb1": { + "title": "6a. Language used for B1 Evaluation Form: Physical" + }, + "note_z1x_7.langb4": { + "title": "7b. Language used for B4 CDR® Plus NACC FTLD" + }, + "note_z1x_8.b5sub": { + "title": "8b. Submitted B5 BEHAVIORAL ASSESSMENT NPI-Q" + }, + "note_z1x_8.b5not": { + "title": "8c. If B5 not submitted, specify reason. (see KEY)" + }, + "note_z1x_8.langb5": { + "title": "8a. Language used for B5 Behaviorial Assessment: NPI-Q" + }, + "note_z1x_9.b6sub": { + "title": "9b. Submitted B6 BEHAVIORAL ASSESSMENT - GDS" + }, + "note_z1x_9.b6not": { + "title": "9c. If B6 not submitted, specify reason. (see KEY)" + }, + "note_z1x_9.langb6": { + "title": "9a. Language B6 Behavioral Assessment: GDS" + }, + "note_z1x_10.b7sub": { + "title": "10b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS" + }, + "note_z1x_10.b7not": { + "title": "10c. If B7 not submitted, specify reason. (see KEY)" + }, + "note_z1x_10.langb7": { + "title": "10a. Language used for B7 Functional Assessment: FAS" + }, + "note_z1x_11.langb8": { + "title": "11a. Language used for B8 Neurological Examination Findings" + }, + "note_z1x_12.langb9": { + "title": "12a. Language used for B9 Clinician Judgment of Symptoms" + }, + "note_z1x_13.langc2": { + "title": "13a. Language used for C2 Neuropsychological Battery Scores" + }, + "note_z1x_14.langd1": { + "title": "14a. Language used for D1 Clinician Diagnosis" + }, + "note_z1x_15.langd2": { + "title": "15a. Language used for D2 Clinician-assessed Medical Conditions" + }, + "ftld_module.ftda3afs": { + "title": "16b. Submitted A3A Record of Consent for Biologic Specimen Use" + }, + "ftld_module.ftda3afr": { + "title": "16c. If A3a not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langa3a": { + "title": "16a. Language used for A3A Record of Consent for Biologic Specimen Use" + }, + "ftld_module.langb3f": { + "title": "17a. Language used for B3f Supplemental UPDRS" + }, + "ftld_module.langb9f": { + "title": "18a. Language used for B9F Clinical PPA and bvFTD Features" + }, + "ftld_module.langc1f": { + "title": "19a. Language used for C1F Neuropsychological Battery summary Scores" + }, + "ftld_module.langc2f": { + "title": "20a. Language used for C2F Social Norms Questionnaire" + }, + "ftld_module.langc3f": { + "title": "21a. Language used for C3F Social Behavior Observer Checklist" + }, + "ftld_module.ftdc4fs": { + "title": "22b. Submitted C4F Behavioral Inhibition Scale" + }, + "ftld_module.ftdc4fr": { + "title": "22c. If C4F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc4f": { + "title": "22a. Language used for C4F Behavioral Inhibition Scale" + }, + "ftld_module.ftdc5fs": { + "title": "23b. Submitted C5F Interpersonal Reactivity Index" + }, + "ftld_module.ftdc5fr": { + "title": "23c. If C5F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc5f": { + "title": "23a. Language used for C5F Interpersonal Reactivity Index" + }, + "ftld_module.ftdc6fs": { + "title": "24b. Submitted C6F Revised Self-monitoring Scale" + }, + "ftld_module.ftdc6fr": { + "title": "24c. If C6F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc6f": { + "title": "24a. Language used for C6F Revised Self-monitoring Scale" + }, + "ftld_module.lange2f": { + "title": "25a. Language used for E2F Imaging Available" + }, + "ftld_module.lange3f": { + "title": "26a. Language used for E3F Imaging in Diagnosis" + }, + "cls_form.clssub": { + "title": "27b. Submitted CLS Subject's Language History" + }, + "cls_form.langcls": { + "title": "27a. Language used for CLS Subject's Language History" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "note_z1x_1.langa1": { + "title": "1a. Language used for A1 Subject Demographics" + }, + "note_z1x_2.a2sub": { + "title": "2b. Submitted A2 Co-participant Demographics" + }, + "note_z1x_2.a2not": { + "title": "2c. If A2 not submitted, specify reason. (see KEY)" + }, + "note_z1x_2.langa2": { + "title": "2a. Language used for A2 Co-Participant Demographics" + }, + "note_z1x_3.a3sub": { + "title": "3b. Submitted A3 Subject Family History" + }, + "note_z1x_3.a3not": { + "title": "3c. If A3 not submitted, specify reason. (see KEY)" + }, + "note_z1x_3.langa3": { + "title": "3a. Language used for A3 Subject Family History" + }, + "note_z1x_4.a4sub": { + "title": "4b. Submitted A4 Subject Medications" + }, + "note_z1x_4.a4not": { + "title": "4c. IfA4 not submitted, specify reason. (see KEY)" + }, + "note_z1x_4.langa4": { + "title": "4a. Language used for A4 Subject Medications" + }, + "note_z1x_5.langa5": { + "title": "5a. Language used for A5 Subject Health History" + }, + "note_z1x_6.b1sub": { + "title": "6b. Submitted B1 EVALUATION FORM - Physical" + }, + "note_z1x_6.b1not": { + "title": "6c. If B1 not submitted, specify reason. (see KEY)" + }, + "note_z1x_6.langb1": { + "title": "6a. Language used for B1 Evaluation Form: Physical" + }, + "note_z1x_7.langb4": { + "title": "7b. Language used for B4 CDR® Plus NACC FTLD" + }, + "note_z1x_8.b5sub": { + "title": "8b. Submitted B5 BEHAVIORAL ASSESSMENT NPI-Q" + }, + "note_z1x_8.b5not": { + "title": "8c. If B5 not submitted, specify reason. (see KEY)" + }, + "note_z1x_8.langb5": { + "title": "8a. Language used for B5 Behaviorial Assessment: NPI-Q" + }, + "note_z1x_9.b6sub": { + "title": "9b. Submitted B6 BEHAVIORAL ASSESSMENT - GDS" + }, + "note_z1x_9.b6not": { + "title": "9c. If B6 not submitted, specify reason. (see KEY)" + }, + "note_z1x_9.langb6": { + "title": "9a. Language B6 Behavioral Assessment: GDS" + }, + "note_z1x_10.b7sub": { + "title": "10b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS" + }, + "note_z1x_10.b7not": { + "title": "10c. If B7 not submitted, specify reason. (see KEY)" + }, + "note_z1x_10.langb7": { + "title": "10a. Language used for B7 Functional Assessment: FAS" + }, + "note_z1x_11.langb8": { + "title": "11a. Language used for B8 Neurological Examination Findings" + }, + "note_z1x_12.langb9": { + "title": "12a. Language used for B9 Clinician Judgment of Symptoms" + }, + "note_z1x_13.langc2": { + "title": "13a. Language used for C2 Neuropsychological Battery Scores" + }, + "note_z1x_14.langd1": { + "title": "14a. Language used for D1 Clinician Diagnosis" + }, + "note_z1x_15.langd2": { + "title": "15a. Language used for D2 Clinician-assessed Medical Conditions" + }, + "ftld_module.ftda3afs": { + "title": "16b. Submitted A3A Record of Consent for Biologic Specimen Use" + }, + "ftld_module.ftda3afr": { + "title": "16c. If A3a not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langa3a": { + "title": "16a. Language used for A3A Record of Consent for Biologic Specimen Use" + }, + "ftld_module.langb3f": { + "title": "17a. Language used for B3f Supplemental UPDRS" + }, + "ftld_module.langb9f": { + "title": "18a. Language used for B9F Clinical PPA and bvFTD Features" + }, + "ftld_module.langc1f": { + "title": "19a. Language used for C1F Neuropsychological Battery summary Scores" + }, + "ftld_module.langc2f": { + "title": "20a. Language used for C2F Social Norms Questionnaire" + }, + "ftld_module.langc3f": { + "title": "21a. Language used for C3F Social Behavior Observer Checklist" + }, + "ftld_module.ftdc4fs": { + "title": "22b. Submitted C4F Behavioral Inhibition Scale" + }, + "ftld_module.ftdc4fr": { + "title": "22c. If C4F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc4f": { + "title": "22a. Language used for C4F Behavioral Inhibition Scale" + }, + "ftld_module.ftdc5fs": { + "title": "23b. Submitted C5F Interpersonal Reactivity Index" + }, + "ftld_module.ftdc5fr": { + "title": "23c. If C5F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc5f": { + "title": "23a. Language used for C5F Interpersonal Reactivity Index" + }, + "ftld_module.ftdc6fs": { + "title": "24b. Submitted C6F Revised Self-monitoring Scale" + }, + "ftld_module.ftdc6fr": { + "title": "24c. If C6F not submitted, specify reason. (see *KEY)" + }, + "ftld_module.langc6f": { + "title": "24a. Language used for C6F Revised Self-monitoring Scale" + }, + "ftld_module.lange2f": { + "title": "25a. Language used for E2F Imaging Available" + }, + "ftld_module.lange3f": { + "title": "26a. Language used for E3F Imaging in Diagnosis" + }, + "cls_form.clssub": { + "title": "27b. Submitted CLS Subject's Language History" + }, + "cls_form.langcls": { + "title": "27a. Language used for CLS Subject's Language History" + } + }, + "boost_values": { + "patient": 1.0, + "note_z1x_1.langa1": 1.0, + "note_z1x_2.a2sub": 1.0, + "note_z1x_2.a2not": 1.0, + "note_z1x_2.langa2": 1.0, + "note_z1x_3.a3sub": 1.0, + "note_z1x_3.a3not": 1.0, + "note_z1x_3.langa3": 1.0, + "note_z1x_4.a4sub": 1.0, + "note_z1x_4.a4not": 1.0, + "note_z1x_4.langa4": 1.0, + "note_z1x_5.langa5": 1.0, + "note_z1x_6.b1sub": 1.0, + "note_z1x_6.b1not": 1.0, + "note_z1x_6.langb1": 1.0, + "note_z1x_7.langb4": 1.0, + "note_z1x_8.b5sub": 1.0, + "note_z1x_8.b5not": 1.0, + "note_z1x_8.langb5": 1.0, + "note_z1x_9.b6sub": 1.0, + "note_z1x_9.b6not": 1.0, + "note_z1x_9.langb6": 1.0, + "note_z1x_10.b7sub": 1.0, + "note_z1x_10.b7not": 1.0, + "note_z1x_10.langb7": 1.0, + "note_z1x_11.langb8": 1.0, + "note_z1x_12.langb9": 1.0, + "note_z1x_13.langc2": 1.0, + "note_z1x_14.langd1": 1.0, + "note_z1x_15.langd2": 1.0, + "ftld_module.ftda3afs": 1.0, + "ftld_module.ftda3afr": 1.0, + "ftld_module.langa3a": 1.0, + "ftld_module.langb3f": 1.0, + "ftld_module.langb9f": 1.0, + "ftld_module.langc1f": 1.0, + "ftld_module.langc2f": 1.0, + "ftld_module.langc3f": 1.0, + "ftld_module.ftdc4fs": 1.0, + "ftld_module.ftdc4fr": 1.0, + "ftld_module.langc4f": 1.0, + "ftld_module.ftdc5fs": 1.0, + "ftld_module.ftdc5fr": 1.0, + "ftld_module.langc5f": 1.0, + "ftld_module.ftdc6fs": 1.0, + "ftld_module.ftdc6fr": 1.0, + "ftld_module.langc6f": 1.0, + "ftld_module.lange2f": 1.0, + "ftld_module.lange3f": 1.0, + "cls_form.clssub": 1.0, + "cls_form.langcls": 1.0 + }, + "changelog": "/profiles/changelogs/ivp_z1xv3.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/m1.json b/src/encoded/schemas/m1.json new file mode 100644 index 0000000000..7173f77de6 --- /dev/null +++ b/src/encoded/schemas/m1.json @@ -0,0 +1,498 @@ +{ + "title": "NACC Uniform Data Set (UDS) Form M1: Milestones\n Please submit a new Milestones Form as soon as possible after each milestone event has occurred.", + "description": "INSTRUCTIONS: Review the types of milestone below and complete the appropriate box below. Use only one box (A or B) per form submitted. For more information, see flow chart on reverse.\n1. Data-collection status CHANGE followed by CONTINUED CONTACT with subject. The subject's status in the UDS or FTLD Module has changed, such that s/he will continue to be followed (at least minimally) by ADC.(Continued Contact, Box A only)\n 2. Change followed by NO FURTHER CONTACT with subject. Subject has DIED or been DROPPED FROM ADC with no further telephone contact and no minimal contact (such as to obtain autopsy).(No further Contact, Box B only)", + "id": "/profiles/uds_m1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "anyOf": [ + { + "required": [ + "box_a" + ] + }, + { + "required": [ + "box_b" + ] + } + ], + "properties": { + "schema_version": { + "default": "1" + }, + "box_a": { + "title": "BOX A - CHANGE WITH CONTINUED CONTACT", + "type": "object", + "properties": { + "changemo": { + "title": "1a. Date of status change, month", + "description": "1-12, 99 = Unknown", + "type": "string", + "pattern": "^[1-9]$|^1[0-2]$|^[99]$" + }, + "changedy": { + "title": "1b. Date of status change, day", + "description": "1-31,99 = Unknown", + "type": "string", + "pattern": "^[1-9]$|^[1-2][0-9]$|^3[0-1]$|^99$" + }, + "changeyr": { + "title": "1c. Date of status change, year", + "description": "Date can be submitted as YYYY(1875 to 2099)", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]$" + }, + "uds_ftld_sect": { + "title": "Complete the UDS and FTLD sections below, as appropriate", + + "type": "object", + "properties": { + "uds_status": { + "title": "UDS STATUS", + "type": "object", + "properties": { + "protocol": { + "title": "2a. UDS data collection status changed; subject's new status is (CHECK ONE):", + "type": "string", + "enum": [ + "1 Annual UDS follow-up by telephone (CONTINUE TO QUESTION 2a1)", + "2 Minimal contact (CONTINUE TO QUESTION 2a1) NOTE: Minimal contact status is reserved for subjects who can no longer participate for one of the reasons llisted in Question 2b, below.", + "3 Annual in-person UDS follow-up (CONTINUE TO QUESTION 2b6)" + ] + }, + "aconsent": { + "title": "2a1. Autopsy consent on file?", + "type": "string", + "enum": [ + "0 No (CONTINUE TO QUESTION 2b)", + "1 Yes (CONTINUE TO QUESTION 2b)" + ] + } + } + }, + "change_reason": { + "title": "2b. Reason(s) for change indicated in Question 2a (CHECK AT LEAST ONE):", + "type": "object", + "properties": { + "recogim": { + "title": "2b1 Subject is too cognitively impaired", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "rephyill": { + "title": "2b2 Subject is too ill or physically impaired", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "rerefuse": { + "title": "2b3 Subject refuses neuropsychological testing or clinical exam", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "renavail": { + "title": "2b4 Subject or co-participant unreachable, not available, or moved away", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "renurse": { + "title": "2b5 Subject has permanently entered nursing home", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "nursemo": { + "title": "2b5a. Month permanently moved to nursing home.", + "description": "Date permanently moved to nursing home, 1-12,99 = Unknown", + "type": "string", + "pattern": "^[1-9]$|^1[0-2]$|^[99]$" + }, + "nursedy": { + "title": "2b5b. Day permanently moved to nursing home.", + "description": "Date permanently moved to nursing home,1-31,99 = Unknown", + "type": "string", + "pattern": "^[1-9]$|^[1-2][0-9]$|^3[0-1]$|^99$" + }, + "nurseyr": { + "title": "2b5c. Year permanently moved to nursing home.", + "description": "Date permanently moved to nursing home,YYYY(1875 to 2099), year required", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]$" + }, + "rejoin": { + "title": "2b6 Subject is REJOINING ADC", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + } + } + } + } + }, + "ftld_module": { + "title": "FTLD MODULE STATUS", + "type": "object", + "properties": { + "ftlddisc": { + "title": "3. Subject will no longer receive FTLD Module follow-up, but annual in-person UDS visits will continue", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "ftldreas": { + "title": "3a. Reason (CHECK ONE):", + "type": "string", + "enum": [ + "1 ADC decision", + "2 Subject / informant refused", + "3 Informant not available", + "4 Other, specify below:" + ] + }, + "ftldreax": { + "title": "3a1. Other reason no FTLD Module follow up", + "description": "Any text or numbers with the exception of single quotes ('), double quotes (), ampersands (&), and percentage signs (%).", + "type": "string" + } + } + } + } + }, + "box_b": { + "title": "BOX B - NO FURTHER CONTACT", + "type": "object", + "properties": { + "deceased": { + "title": "4a. Subject has DIED (COMPLETE DEATH SECTION, BELOW)", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "discont": { + "title": "4b. Subject has been DROPPED from ADC (COMPLETE DROPPED SECTION, BELOW)", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "death": { + "title": "DEATH", + "type": "object", + "properties": { + "deathmo": { + "title": "5a1. Date of death, month", + "description": "1-12,99 = Unknown", + "type": "string", + "pattern": "^[1-9]$|^1[0-2]$|^[99]$" + }, + "deathdy": { + "title": "5a2. Date of death, day", + "description": "1-31,99 = Unknown", + "type": "string", + "pattern": "^[1-9]$|^[1-2][0-9]$|^3[0-1]$|^99$" + }, + "deathyr": { + "title": "5a3. Date of death, year", + "description": "YYYY(1875 to 2099), year required", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]$" + }, + "autopsy": { + "title": "5b. ADC autopsy:", + "type": "string", + "enum": [ + "0 No ADC autopsy expected", + "1 An ADC autopsy has been done; data submitted or pending" + ] + } + } + }, + "dropped": { + "title": "DROPPED", + "description": "DO NOT fill out this section if the subject has consented to autopsy or if you will maintain minimal contact. Instead, fill out Box A, UDS STATUS section.", + "type": "object", + "properties": { + "discmo": { + "title": "6a1. Date dropped from ADC, month", + "description": "1-12,99 = Unknown", + "type": "string", + "pattern": "^[1-9]$|^1[0-2]$|^[99]$" + }, + "discday": { + "title": "6a2. Date dropped from ADC, day", + "description": "1-31,99 = Unknown", + "type": "string", + "pattern": "^[1-9]$|^[1-2][0-9]$|^3[0-1]$|^99$" + }, + "discyr": { + "title": "6a3. Date dropped from ADC, year", + "description": "YYYY(1875 to 2099), year required", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]$" + }, + "dropreas": { + "title": "6b. Main reason for being dropped from ADC (CHECK ONE):", + "type": "string", + "enum": [ + "1 ADC decision or protocol", + "2 Subject or co-participant asked to be dropped" + ] + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "box_a.changemo": { + "title": "1a. Date of status change, month" + }, + "box_a.changedy": { + "title": "1b. Date of status change, day" + }, + "box_a.changeyr": { + "title": "1c. Date of status change, year" + }, + + "box_a.uds_ftld_sect.uds_status.protocol": { + "title": "2a. UDS data collection status changed; subject's new status is (CHECK ONE):" + }, + "box_a.uds_ftld_sect.uds_status.aconsent": { + "title": "2a1. Autopsy consent on file?" + }, + "box_a.uds_ftld_sect.change_reason.recogim": { + "title": "2b1 Subject is too cognitively impaired" + }, + "box_a.uds_ftld_sect.change_reason.rephyill": { + "title": "2b2 Subject is too ill or physically impaired" + }, + "box_a.uds_ftld_sect.change_reason.rerefuse": { + "title": "2b3 Subject refuses neuropsychological testing or clinical exam" + }, + "box_a.uds_ftld_sect.change_reason.renavail": { + "title": "2b4 Subject or co-participant unreachable, not available, or moved away" + }, + "box_a.uds_ftld_sect.change_reason.renurse": { + "title": "2b5 Subject has permanently entered nursing home" + }, + "box_a.uds_ftld_sect.change_reason.nursemo": { + "title": "2b5a. Month permanently moved to nursing home." + }, + "box_a.uds_ftld_sect.change_reason.nursedy": { + "title": "2b5b. Day permanently moved to nursing home." + }, + "box_a.uds_ftld_sect.change_reason.nurseyr": { + "title": "2b5c. Year permanently moved to nursing home." + }, + "box_a.uds_ftld_sect.change_reason.rejoin": { + "title": "2b6 Subject is REJOINING ADC" + }, + "box_a.ftld_module.ftlddisc": { + "title": "3. Subject will no longer receive FTLD Module follow-up, but annual in-person UDS visits will continue" + }, + "box_a.ftld_module.ftldreas": { + "title": "3a. Reason (CHECK ONE):" + }, + "box_a.ftld_module.ftldreax": { + "title": "3a1. Other reason no FTLD Module follow up" + }, + "box_b.deceased": { + "title": "4a. Subject has DIED (COMPLETE DEATH SECTION, BELOW)" + }, + "box_b.discont": { + "title": "4b. Subject has been DROPPED from ADC (COMPLETE DROPPED SECTION, BELOW)" + }, + "box_b.death.deathmo": { + "title": "5a1. Date of death, month" + }, + "box_b.death.deathdy": { + "title": "5a2. Date of death, day" + }, + "box_b.death.deathyr": { + "title": "5a3. Date of death, year" + }, + "box_b.death.autopsy": { + "title": "5b. ADC autopsy:" + }, + "box_b.dropped.discmo": { + "title": "6a1. Date dropped from ADC, month" + }, + "box_b.dropped.discday": { + "title": "6a2. Date dropped from ADC, day" + }, + "box_b.dropped.discyr": { + "title": "6a3. Date dropped from ADC, year" + }, + "box_b.dropped.dropreas": { + "title": "6b. Main reason for being dropped from ADC (CHECK ONE):" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "box_a.changemo": { + "title": "1a. Date of status change, month" + }, + "box_a.changedy": { + "title": "1b. Date of status change, day" + }, + "box_a.changeyr": { + "title": "1c. Date of status change, year" + }, + + "box_a.uds_ftld_sect.uds_status.protocol": { + "title": "2a. UDS data collection status changed; subject's new status is (CHECK ONE):" + }, + "box_a.uds_ftld_sect.uds_status.aconsent": { + "title": "2a1. Autopsy consent on file?" + }, + "box_a.uds_ftld_sect.change_reason.recogim": { + "title": "2b1 Subject is too cognitively impaired" + }, + "box_a.uds_ftld_sect.change_reason.rephyill": { + "title": "2b2 Subject is too ill or physically impaired" + }, + "box_a.uds_ftld_sect.change_reason.rerefuse": { + "title": "2b3 Subject refuses neuropsychological testing or clinical exam" + }, + "box_a.uds_ftld_sect.change_reason.renavail": { + "title": "2b4 Subject or co-participant unreachable, not available, or moved away" + }, + "box_a.uds_ftld_sect.change_reason.renurse": { + "title": "2b5 Subject has permanently entered nursing home" + }, + "box_a.uds_ftld_sect.change_reason.nursemo": { + "title": "2b5a. Month permanently moved to nursing home." + }, + "box_a.uds_ftld_sect.change_reason.nursedy": { + "title": "2b5b. Day permanently moved to nursing home." + }, + "box_a.uds_ftld_sect.change_reason.nurseyr": { + "title": "2b5c. Year permanently moved to nursing home." + }, + "box_a.uds_ftld_sect.change_reason.rejoin": { + "title": "2b6 Subject is REJOINING ADC" + }, + "box_a.ftld_module.ftlddisc": { + "title": "3. Subject will no longer receive FTLD Module follow-up, but annual in-person UDS visits will continue" + }, + "box_a.ftld_module.ftldreas": { + "title": "3a. Reason (CHECK ONE):" + }, + "box_a.ftld_module.ftldreax": { + "title": "3a1. Other reason no FTLD Module follow up" + }, + "box_b.deceased": { + "title": "4a. Subject has DIED (COMPLETE DEATH SECTION, BELOW)" + }, + "box_b.discont": { + "title": "4b. Subject has been DROPPED from ADC (COMPLETE DROPPED SECTION, BELOW)" + }, + "box_b.death.deathmo": { + "title": "5a1. Date of death, month" + }, + "box_b.death.deathdy": { + "title": "5a2. Date of death, day" + }, + "box_b.death.deathyr": { + "title": "5a3. Date of death, year" + }, + "box_b.death.autopsy": { + "title": "5b. ADC autopsy:" + }, + "box_b.dropped.discmo": { + "title": "6a1. Date dropped from ADC, month" + }, + "box_b.dropped.discday": { + "title": "6a2. Date dropped from ADC, day" + }, + "box_b.dropped.discyr": { + "title": "6a3. Date dropped from ADC, year" + }, + "box_b.dropped.dropreas": { + "title": "6b. Main reason for being dropped from ADC (CHECK ONE):" + } + }, + "boost_values": { + "patient": 1.0, + "box_a.changemo": 1.0, + "box_a.changedy": 1.0, + "box_a.changeyr": 1.0, + "box_a.uds_ftld_sect.uds_status.protocol": 1.0, + "box_a.uds_ftld_sect.uds_status.aconsent": 1.0, + "box_a.uds_ftld_sect.change_reason.recogim": 1.0, + "box_a.uds_ftld_sect.change_reason.rephyill": 1.0, + "box_a.uds_ftld_sect.change_reason.rerefuse": 1.0, + "box_a.uds_ftld_sect.change_reason.renavail": 1.0, + "box_a.uds_ftld_sect.change_reason.renurse": 1.0, + "box_a.uds_ftld_sect.change_reason.nursemo": 1.0, + "box_a.uds_ftld_sect.change_reason.nursedy": 1.0, + "box_a.uds_ftld_sect.change_reason.nurseyr": 1.0, + "box_a.uds_ftld_sect.change_reason.rejoin": 1.0, + "box_a.ftld_module.ftlddisc": 1.0, + "box_a.ftld_module.ftldreas": 1.0, + "box_a.ftld_module.ftldreax": 1.0, + "box_b.deceased": 1.0, + "box_b.discont": 1.0, + "box_b.death.deathmo": 1.0, + "box_b.death.deathdy": 1.0, + "box_b.death.deathyr": 1.0, + "box_b.death.autopsy": 1.0, + "box_b.dropped.discmo": 1.0, + "box_b.dropped.discday": 1.0, + "box_b.dropped.discyr": 1.0, + "box_b.dropped.dropreas": 1.0 + }, + "changelog": "/profiles/changelogs/m1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/medication.json b/src/encoded/schemas/medication.json index 1cb6cf760a..bc329f6466 100644 --- a/src/encoded/schemas/medication.json +++ b/src/encoded/schemas/medication.json @@ -18,7 +18,7 @@ }, "patient": { "title": "Patient", - "description": "The patient the lab was conducted for.", + "description": "The patient the medication was admistered for.", "type": "string", "linkTo": "Patient" }, @@ -37,7 +37,6 @@ "Interferon", "Ipilimumab", "Lenvatinib", - "Meds", "NKTR-214", "NKTR-262", "Nivolumab", diff --git a/src/encoded/schemas/mixins.json b/src/encoded/schemas/mixins.json index 1b16faf89f..1e8e8f92f9 100644 --- a/src/encoded/schemas/mixins.json +++ b/src/encoded/schemas/mixins.json @@ -78,6 +78,7 @@ "comment": "Do not submit. This is set by admins along the process of metadata submission.", "enum": [ "in progress", + "restricted", "released", "deleted", "replaced", @@ -94,7 +95,21 @@ "enum": [ "deleted", "in progress", - "released" + "restricted", + "released", + "public" + ] + } + }, + "form_status": { + "form_status": { + "title": "Complete?", + "type": "string", + "default": "Incomplete", + "enum": [ + "Incomplete", + "Unverified", + "Complete" ] } }, @@ -105,6 +120,7 @@ "default": "current", "enum": [ "current", + "restricted", "deleted", "disabled" ] @@ -138,6 +154,108 @@ "permission": "import_items" } }, + "examinier_initials": { + "initials": { + "title": "Examiner's initials (xxx)", + "description": "Examiner's initials,format XXX.", + "type": "string", + "pattern": "^([A-Z]( )?([A-Z])?[A-Z])$" + } + }, + "header": { + "patient": { + "title": "Patient", + "description": "PID. The patient the form belongs for.", + "type": "string", + "linkTo": "Patient" + }, + + "formver": { + "title": "Form Version Number", + "description": "Form Version Number for UDS3", + "type": "string", + "enum": [ + "3", + "2", + "1", + "3.10" + ] + }, + "adcid": { + "title": "Center ID", + "description": "Center ID, ADC name", + "type": "string", + "default": "25 University of Texas Southwestern", + "enum": [ + "2 Boston University", + "3 Case Western University", + "4 Columbia University", + "5 Duke University", + "6 Emory University", + "7 Massachusetts ADRC", + "8 Indiana University", + "9 Johns Hopkins University", + "10 Mayo Clinic", + "11 Mount Sinai", + "12 New York University", + "13 Northwestern University", + "14 Oregon Health & Science University", + "15 Rush University", + "16 University of California, Davis", + "17 University of California, Los Angeles", + "18 University of California, San Diego", + "19 University of Kentucky", + "20 University of Michigan", + "21 University of Pennsylvania", + "22 University of Pittsburgh", + "25 University of Texas Southwestern", + "26 University of Washington", + "27 Washington University in Saint Louis", + "28 University of Alabama", + "30 University of Southern California", + "31 University of California, Irvine", + "32 Stanford University", + "33 Arizona ADC", + "34 University of Arkansas", + "35 University of California, San Francisco", + "36 Florida ADC", + "37 University of Wisconsin", + "38 University of Kansas", + "39 Stanford University #2", + "40 Yale University", + "41 Florida ADRC", + "42 Wake Forest University", + "43 Univeristy of Michigan ADC" + ] + }, + "visdate": { + "title": "Visit date", + "description": "Date of visit,format as YYYY-MM-DD", + "comment": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "visitnum": { + "title": "ADC Visit #", + "description": "Visit numbers used inside ADC system, for example, 1 for ivp, 2 for fvp...", + "type": "string", + "pattern": "^([0-9]?[0-9]?[0-9])$" + }, + "header_complete": { + "title": "Header_complete", + "type": "string", + "default": "Incomplete", + "enum": [ + "Incomplete", + "Unverified", + "Complete" + ] + } + }, "review": { "review": { "title": "Characterization review", @@ -415,10 +533,11 @@ "description": "OBI (Ontology for Biomedical Investigations) ontology term for the assay.", "type": "string", "enum": [ - "DNA methylation profiling by array assay", + "Methylation Array", "RNA-seq", - "whole genome sequencing assay", - "whole-genome shotgun bisulfite sequencing" + "whole genome sequencing", + "Targeted", + "whole exome sequencing" ] } }, @@ -479,4 +598,4 @@ } } } -} \ No newline at end of file +} diff --git a/src/encoded/schemas/moca.json b/src/encoded/schemas/moca.json new file mode 100644 index 0000000000..317359ae65 --- /dev/null +++ b/src/encoded/schemas/moca.json @@ -0,0 +1,218 @@ +{ + "title": "MONTREAL COGNITIVE ASSESSMENT (MoCA)", + "description": "ADC Form S-C1.3\nNormal ≥ 26 / 30", + "id": "/profiles/moca.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "memory" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + }, + { + "$ref": "mixins.json#/documents" + } + ], + "type": "object", + "properties": { + "visuo_exec": { + "title": "Visuospatial/Executive", + "type": "number", + "minimum": 0, + "maximum": 5 + }, + "memory": { + "title": "Memory (see attached PDF)", + "type": "object", + "properties": { + "naming": { + "title": "Naming", + "type": "number", + "minimum": 0, + "maximum": 3 + }, + "att_dig": { + "title": "Attention - digits", + "type": "number", + "minimum": 0, + "maximum": 2 + }, + "att_letters": { + "title": "Attention - letter list", + "type": "number", + "minimum": 0, + "maximum": 1 + }, + "att_subtr": { + "title": "Attention - subtraction", + "type": "number", + "minimum": 0, + "maximum": 3 + }, + "lang_rep": { + "title": "Language - repeat", + "type": "number", + "minimum": 0, + "maximum": 2 + }, + "lang_fluen": { + "title": "Language - fluency", + "type": "number", + "minimum": 0, + "maximum": 1 + }, + "abstraction": { + "title": "Abstraction", + "type": "number", + "minimum": 0, + "maximum": 2 + }, + "del_recall": { + "title": "Delayed Recall", + "type": "number", + "minimum": 0, + "maximum": 5 + }, + "orientation": { + "title": "Orientation", + "type": "number", + "minimum": 0, + "maximum": 6 + }, + "yr_edu": { + "title": "Add 1 point if ≤ 12 yr edu", + "type": "number", + "minimum": 0, + "maximum": 1 + }, + "total": { + "title": "Total Score", + "type": "number", + "minimum": 0, + "maximum": 30 + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "visuo_exec": { + "title": "Visuospatial/Executive" + }, + "memory.naming": { + "title": "Naming" + }, + "memory.att_dig": { + "title": "Attention - digits" + }, + "memory.att_letters": { + "title": "Attention - letter list" + }, + "memory.att_subtr": { + "title": "Attention - subtraction" + }, + "memory.lang_rep": { + "title": "Language - repeat" + }, + "memory.lang_fluen": { + "title": "Language - fluency" + }, + "memory.abstraction": { + "title": "Abstraction" + }, + "memory.del_recall": { + "title": "Delayed Recall" + }, + "memory.orientation": { + "title": "Orientation" + }, + "memory.yr_edu": { + "title": "Add 1 point if ≤ 12 yr edu" + }, + "memory.total": { + "title": "Total Score" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "visuo_exec": { + "title": "Visuospatial/Executive" + }, + "memory.naming": { + "title": "Naming" + }, + "memory.att_dig": { + "title": "Attention - digits" + }, + "memory.att_letters": { + "title": "Attention - letter list" + }, + "memory.att_subtr": { + "title": "Attention - subtraction" + }, + "memory.lang_rep": { + "title": "Language - repeat" + }, + "memory.lang_fluen": { + "title": "Language - fluency" + }, + "memory.abstraction": { + "title": "Abstraction" + }, + "memory.del_recall": { + "title": "Delayed Recall" + }, + "memory.orientation": { + "title": "Orientation" + }, + "memory.yr_edu": { + "title": "Add 1 point if ≤ 12 yr edu" + }, + "memory.total": { + "title": "Total Score" + } + }, + "boost_values": { + "patient": 1.0, + "visuo_exec": 1.0, + "memory.naming": 1.0, + "memory.att_dig": 1.0, + "memory.att_letters": 1.0, + "memory.att_subtr": 1.0, + "memory.lang_rep": 1.0, + "memory.lang_fluen": 1.0, + "memory.abstraction": 1.0, + "memory.del_recall": 1.0, + "memory.orientation": 1.0, + "memory.yr_edu": 1.0, + "memory.total": 1.0 + }, + "changelog": "/profiles/changelogs/moca.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/pathology_report.json b/src/encoded/schemas/pathology_report.json index bbb07d9f37..69c95d0240 100644 --- a/src/encoded/schemas/pathology_report.json +++ b/src/encoded/schemas/pathology_report.json @@ -6,32 +6,22 @@ "type": "object", "identifyingProperties": [ "uuid", - "surgery", + "surgery_procedure", "accession" ], "required": [ - "surgery", + "surgery_procedure", "date", "report_source", "path_source_procedure" ], "additionalProperties": false, "mixinProperties": [ - { - "$ref": "mixins.json#/schema_version" - }, - { - "$ref": "mixins.json#/submitted" - }, - { - "$ref": "mixins.json#/uuid" - }, - { - "$ref": "mixins.json#/accession" - }, - { - "$ref": "mixins.json#/accessioned_status" - } + { "$ref": "mixins.json#/schema_version" }, + { "$ref": "mixins.json#/submitted" }, + { "$ref": "mixins.json#/uuid" }, + { "$ref": "mixins.json#/accession" }, + { "$ref": "mixins.json#/accessioned_status" } ], "dependencies": { "tumor_size": [ @@ -51,17 +41,17 @@ "accession": { "accessionType": "PR" }, - "surgery": { + "surgery_procedure": { "title": "Surgery", - "description": "The surgery the pathology originated from.", + "description": "The procedure the pathology originated from.", "type": "string", - "linkTo": "Surgery" + "linkTo": "SurgeryProcedure" }, - "patient": { - "title": "Patient", - "description": "The patient the lab was conducted for.", + "path_id": { + "title": "Path ID", + "comment": "KCE personnel are allowed to set this value.", "type": "string", - "linkTo": "Patient" + "permission": "import_items" }, "date": { "title": "Pathology date", @@ -123,12 +113,12 @@ "type": "string", "enum": [ "Acquired cystic disease-associated renal cell carcinoma", - "Angiomyolipoma", + "Angiomyolipoma", "Chromophobe renal cell carcinoma", - "Chromophobe renal cell carcinoma, hybrid type", - "Chromophobe renal cell carcinoma, classic", - "Chromophobe renal cell carcinoma, eosinophilic", - "Clear cell papillary renal cell carcinoma", + "Chromophobe renal cell carcinoma, hybrid type", + "Chromophobe renal cell carcinoma, classic", + "Chromophobe renal cell carcinoma, eosinophilic", + "Clear cell papillary renal cell carcinoma", "Clear cell renal cell carcinoma", "Collecting duct carcinoma", "Cystic nephroma", @@ -136,14 +126,14 @@ "Metanephric adenoma", "MiT family translocation renal cell carcinoma", "Mucinous tubular and spindle cell carcinoma", - "Multilocular cystic renal neoplasm of low malignant potential", + "Multilocular cystic renal neoplasm of low malignant potential", "Oncocytic renal neoplasm, not further classified", "Oncocytic renal neoplasm, favor RO", "Oncocytic renal neoplasm, favor ChRCC", "Oncocytoma", "Poorly differentiated malignancy", "Sarcomatoid, NOS", - "Papillary renal cell carcinoma", + "Papillary renal cell carcinoma", "Papillary renal cell carcinoma, type 1", "Papillary renal cell carcinoma, type 2", "Renal cell carcinoma, not further classified", @@ -604,8 +594,6 @@ } }, "boost_values": { - "surgery": 1.0, - "patient": 1.0, "accession": 1.0, "t_stage": 1.0, "n_stage": 1.0, @@ -630,7 +618,3 @@ }, "changelog": "/profiles/changelogs/pathology_report.md" } - - - - diff --git a/src/encoded/schemas/patient.json b/src/encoded/schemas/patient.json index 6eed555083..d75297319c 100644 --- a/src/encoded/schemas/patient.json +++ b/src/encoded/schemas/patient.json @@ -1,73 +1,141 @@ { "title": "Patient", - "description": "Schema for submitting patient demographics.", + "description": "Patient infomation", + "comment": "Schema of patient information from redcap.", "id": "/profiles/patient.json", "$schema": "http://json-schema.org/draft-04/schema#", - "identifyingProperties": ["uuid", "accession", "aliases"], - "required": ["sex", "race", "ethnicity"], + "identifyingProperties": [ + "uuid", + "accession" + ], + "required": [ + "accession" + ], "additionalProperties": false, "mixinProperties": [ - { "$ref": "mixins.json#/schema_version" }, - { "$ref": "mixins.json#/accession" }, - { "$ref": "mixins.json#/accessioned_status" }, - { "$ref": "mixins.json#/submitted" }, - { "$ref": "mixins.json#/aliases" }, - { "$ref": "mixins.json#/notes" }, - { "$ref": "mixins.json#/uuid" } + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/accession" + }, + { + "$ref": "mixins.json#/accessioned_status" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/uuid" + } ], "type": "object", "properties": { "schema_version": { "default": "1" }, - "accession": { - "accessionType": "PT" - }, - "sex": { - "title": "Sex", + "formver": { + "title": "Form Version Number", + "description": "Form Version Number for UDS3,for version 1.2 - 3", "type": "string", "enum": [ - "Female", - "Male", - "Unknown" + "3", + "2", + "1.2", + "3.10" ] }, - - "race": { - "title": "Race", + "accession": { + "title": "ADC Subject ID", + "description": "ADC Subject ID,Patient ID, Accession,for version 1.2 - 3", + "comment": "CE personnel are allowed to set this value.", + "type": "string", + "permission": "import_items", + "pattern": "^([0-9]{6})$", + "uniqueKey": true + }, + "last": { + "title": "Patient Last Name", + "description": "For version 1.2 - 3", + "type": "string" + }, + "first": { + "title": "Patient First Name", + "description": "For version 1.2 - 3", + "comment": "Required field", + "type": "string" + }, + "mi": { + "title": "Patient Middle Initial", + "description": "For version 1.2 - 3", + "type": "string" + }, + "adcid_mstrid": { + "title": "ADC ID", + "description": "For version 1.2 - 3.Patient's initials + DOB (eg. FMLmmddyyyy)", + "type": "string" + }, + "examiner": { + "title": "Examiner's initials", + "description": "For version 1.2 - 3.", + "comment": "Required field", + "type": "string" + }, + "patiddate": { + "title": "Date of Exam/Contact", + "description": "For version 1.2 - 3", + "comment": "Required field", + "type": "string" + }, + "category": { + "title": "1. Patient Initial Category", + "description": "For version 1.2 - 3, Option 4 Control is for version 1 only.", + "comment": "Required field", "type": "string", "enum": [ - "American Indian", - "Asian", - "Black", - "Hawaiian Pacific Islander", - "White", - "Declined", - "Other" + "1 ADC Core", + "2 Consult", + "3 Research Only", + "4 Control", + "5 ADC relative", + "6 autopsy only", + "7 Autopsied demented relative of ADC patient", + "8 Autopsied non-demented relative of ADC patient", + "9 Autopsied/non-clinic/control", + "99 Unknown/not done" ] }, - "ethnicity": { - "title": "Ethnicity", + "site": { + "title": "2. Responsible Site", + "description": "For version 1.2 - 3", + "comment": "Required field", "type": "string", "enum": [ - "Hispanic", - "Non-hispanic", - "Declined", - "Unknown" + "1 UTSW", + "2 Native American Satellite", + "3 Other" ] }, - "mrn": { - "title": "Medical Number", - "comment": "KCE personnel are allowed to set this value.", + "gender": { + "title": "3. Gender", + "description": "For version 1.2 - 3", + "comment": "Required field", "type": "string", - "permission": "import_items", - "uniqueKey": true + "enum": [ + "1 Male", + "0 Female" + ] }, - - "death_date": { - "title": "Death Date", - "description": "Death date of patient.", - "comment": "Date can be submitted as YYYY-MM-DD.", + "dob": { + "title": "4. Date of birth mm/dd/yyyy", + "description": "Patient's date of birth.Date can be submitted as MM/DD/YYYY.", + "comment": "Required field", "type": "string", "anyOf": [ { @@ -75,266 +143,1300 @@ } ] }, - "death_source": { - "title": "Death Source", - "description": "The source of the death date", + "ssnmed": { + "title": "5. Social Security Number", + "description": "For version 1.2 - 3", + "comment": "Required field", + "type": "string" + }, + "astonid": { + "title": "AstonID (MRN)", + "description": "For version 1(revised 08/29/2005) only.UTSouthwestern Aston hospital Medical Number", + "comment": "@HIDDEN,CE personnel are allowed to set this value.", + "type": "string", + "permission": "import_items", + "uniqueKey": true + }, + "parklandid": { + "title": "ParklandID (MRN)", + "description": "Only in version 1(revised 08/29/2005),UTSouthwestern Parkland hospital medical Number", + "comment": "@HIDDEN,CE personnel are allowed to set this value.", + "type": "string", + "permission": "import_items", + "uniqueKey": true + }, + "hand": { + "title": "Handedness", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", "type": "string", "enum": [ - "UTSouthwestern Hospital", - "Parkland Hospital", - "Tumor Registry" + "1 Right", + "2 Left", + "3 Ambidextrous" ] }, - "diagnosis_date_tumor_registry": { - "title": "Diagnosis Date from Tumor Registry", - "description": "Diagnosis date of patient from Tumor Registry.", - "comment": "Date can be submitted as YYYY-MM-DD.", + "educat": { + "title": "6. Years of education Enter '99' if Unknown number", + "description": "For version 1.2 - 3", + "type": "string" + }, + "excmenret": { + "title": "7. If less than 6 years of education does the subject have a work history sufficient to exclude mental retardation?", + "description": "For version 1.2 - 3", "type": "string", - "anyOf": [ - { - "format": "date" + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "occupat": { + "title": "8. Occupation (during most of adult life)", + "description": "For version 1.2 - 3", + "type": "string" + }, + "preflang": { + "title": "9. Language to be used for testing", + "description": "For version 1.2 - 3", + "type": "string", + "enum": [ + "1 English", + "2 Spanish", + "9 Other/Unknown(only one may be checked and used throughout the study)" + ] + }, + "spanish": { + "title": "10. Ethnicity (self-reported) Is subject Spanish, Hispanic or Latino", + "description": "For version 1.2 - 3", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "racial": { + "title": "11. Racial Category", + "description": "For version 1.2 - 3", + "type": "string", + "enum": [ + "1 Alaskan Native", + "2 Black or African American", + "3 White", + "4 American Indian", + "5 Asian", + "6 Native Hawaiian or other Pacific Islander", + "7 Multiple races", + "8 Other", + "9 Unknown or not reported" + ] + }, + "raceother": { + "title": "Other, please specify", + "description": "For version 1.2 - 3", + "type": "string" + }, + "aitribe": { + "title": "12. If American Indian checked, a) what tribe?", + "description": "For version 1.2 - 3", + "type": "string", + "enum": [ + "1 Cherokee", + "2 Choctaw", + "3 Creek", + "4 Chickasaw", + "5 Other" + ] + }, + "tribedesc": { + "title": "Other, please specify", + "description": "For version 1.2 - 3", + "type": "string" + }, + "tribeperc": { + "title": "b) % Native American", + "description": "For version 1.2 - 3", + "type": "string" + }, + "contact_info": { + "title": "Contact Information", + "description": "", + "type": "object", + "properties": { + "p_info": { + "title": "Patient Contact Information", + "description": "Patient's contact information", + "type": "object", + "properties": { + "p_addr1": { + "title": "1. Patient Address", + "description": "For version 1.2 - 3", + "type": "string" + }, + "p_addr2": { + "title": "Apt #/ Unit #", + "description": "For version 1.2 - 3", + "type": "string" + }, + "p_city": { + "title": "City", + "description": "For version 1.2 - 3", + "type": "string" + }, + "p_state": { + "title": "dropdown State", + "description": "For version 1.2 - 3", + "type": "string", + "enum": [ + "AL AL", + "AK AK", + "AZ AZ", + "AR AR", + "CA CA", + "CO CO", + "CT CT", + "DE DE", + "FL FL", + "GA GA", + "HI HI", + "ID ID", + "IL IL", + "IN IN", + "IA IA", + "KS KS", + "KY KY", + "LA LA", + "ME ME", + "MD MD", + "MA MA", + "MI MI", + "MN MN", + "MS MS", + "MO MO", + "MT MT", + "NE NE", + "NV NV", + "NH NH", + "NJ NJ", + "NM NM", + "NY NY", + "NC NC", + "ND ND", + "OH OH", + "OK OK", + "OR OR", + "PA PA", + "RI RI", + "SC SC", + "SD SD", + "TN TN", + "TX TX", + "UT UT", + "VT VT", + "VA VA", + "WA WA", + "WV WV", + "WI WI", + "WY WY", + "WS Null" + ] + }, + "p_zip": { + "title": "Zip", + "description": "For version 1.2 - 3", + "type": "string" + }, + "p_phone": { + "title": "Phone", + "description": "For version 1.2 - 3", + "type": "string" + }, + "p_phoneext": { + "title": "Alt Phone", + "description": "For version 1.2 - 3", + "type": "string" + }, + "p_email": { + "title": "Email", + "description": "For version 2 and version 3(revised 09/18/2013) only", + "type": "string" + } + } + }, + "c_cont1": { + "title": "Alternate Contact 1", + "description": "Alternate Contact information", + "type": "object", + "properties": { + "c_name": { + "title": "2. Alternate Contact Name", + "description": "For version 1.2 - 3", + "type": "string" + }, + "c_relat": { + "title": "Relationship to patient", + "description": "For version 1.2 - 3", + "type": "string" + }, + "c_addr1": { + "title": "Address", + "description": "For version 1.2 - 3", + "type": "string" + }, + "c_addr2": { + "title": "Apt #/ Unit #", + "description": "For version 1.2 - 3", + "type": "string" + }, + "c_city": { + "title": "City", + "description": "For version 1.2 - 3", + "type": "string" + }, + "c_state": { + "title": "dropdown State", + "description": "For version 1.2 - 3", + "type": "string", + "enum": [ + "AL AL", + "AK AK", + "AZ AZ", + "AR AR", + "CA CA", + "CO CO", + "CT CT", + "DE DE", + "FL FL", + "GA GA", + "HI HI", + "ID ID", + "IL IL", + "IN IN", + "IA IA", + "KS KS", + "KY KY", + "LA LA", + "ME ME", + "MD MD", + "MA MA", + "MI MI", + "MN MN", + "MS MS", + "MO MO", + "MT MT", + "NE NE", + "NV NV", + "NH NH", + "NJ NJ", + "NM NM", + "NY NY", + "NC NC", + "ND ND", + "OH OH", + "OK OK", + "OR OR", + "PA PA", + "RI RI", + "SC SC", + "SD SD", + "TN TN", + "TX TX", + "UT UT", + "VT VT", + "VA VA", + "WA WA", + "WV WV", + "WI WI", + "WY WY", + "CN Null" + ] + }, + "c_zip": { + "title": "Zip", + "description": "For version 1.2 - 3", + "type": "string" + }, + "c_hmphone": { + "title": "Phone", + "description": "For version 1.2 - 3", + "type": "string" + }, + "c_hmext": { + "title": "Phone ext", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "c_altphone": { + "title": "Alt Phone", + "description": "For version 1.2 - 3", + "type": "string" + }, + "c_al ": { + "title": "Alt Phone ext", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "c_email": { + "title": "Email", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + } + } + }, + "alt_cont2": { + "title": "Alternate Contact 2", + "description": "Alternate Contact 2 information", + "type": "object", + "properties": { + "a_name": { + "title": "3. Alternate Contact Name", + "description": "For version 1.2 - 3", + "type": "string" + }, + "a_relat": { + "title": "Relationship to patient", + "description": "For version 1.2 - 3", + "type": "string" + }, + "a_addr1": { + "title": "Address", + "description": "For version 1.2 - 3", + "type": "string" + }, + "a_addr2": { + "title": "Apt #/ Unit #", + "description": "For version 1.2 - 3", + "type": "string" + }, + "a_city": { + "title": "City", + "description": "For version 1.2 - 3", + "type": "string" + }, + "a_state": { + "title": "dropdown State", + "description": "For version 1.2 - 3", + "type": "string", + "enum": [ + "AL AL", + "AK AK", + "AZ AZ", + "AR AR", + "CA CA", + "CO CO", + "CT CT", + "DE DE", + "FL FL", + "GA GA", + "HI HI", + "ID ID", + "IL IL", + "IN IN", + "IA IA", + "KS KS", + "KY KY", + "LA LA", + "ME ME", + "MD MD", + "MA MA", + "MI MI", + "MN MN", + "MS MS", + "MO MO", + "MT MT", + "NE NE", + "NV NV", + "NH NH", + "NJ NJ", + "NM NM", + "NY NY", + "NC NC", + "ND ND", + "OH OH", + "OK OK", + "OR OR", + "PA PA", + "RI RI", + "SC SC", + "SD SD", + "TN TN", + "TX TX", + "UT UT", + "VT VT", + "VA VA", + "WA WA", + "WV WV", + "WI WI", + "WY WY" + ] + }, + "a_zip": { + "title": "Zip", + "description": "For version 1.2 - 3", + "type": "string" + }, + "a_hmphone": { + "title": "Phone", + "description": "For version 1.2 - 3", + "type": "string" + }, + "a_hmext": { + "title": "Home Phone ext", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a_altphone": { + "title": "Alt Phone", + "description": "For version 1.2 - 3", + "type": "string" + }, + "a_al ": { + "title": "Alt Phone ext", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a_email": { + "title": "Email", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + } + } + }, + "alt_cont3": { + "title": "Alternate Contact 3", + "description": "Alternate Contact 3 information", + "type": "object", + "properties": { + "a2_name": { + "title": "4. Alternate Contact Name", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_relat": { + "title": "Relationship", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_addr1": { + "title": "Address", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_addr2": { + "title": "Apt#/Unit#", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_city": { + "title": "City", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_state": { + "title": "State", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_zip": { + "title": "Zip", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_hmphone": { + "title": "Phone", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_hmext": { + "title": "Phone ext", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_altphone": { + "title": "Alt phone", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_al ": { + "title": "Alt Phone Extension", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + }, + "a2_email": { + "title": "Email", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@HIDDEN", + "type": "string" + } + } } + } + }, + "legal_represent": { + "title": "Legally Authorized Representative", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "object", + "properties": { + "lar_name": { + "title": "4. LAR Name (If same as 2. Alternate Contact, write \"same\")", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + }, + "lar_relat": { + "title": "Relationship to patient", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + }, + "lar_addr1": { + "title": "Address", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + }, + "lar_addr2": { + "title": "Apt #/ Unit #", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + }, + "lar_city": { + "title": "City", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + }, + "lar_state": { + "title": "dropdown State", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string", + "enum": [ + "AL AL", + "AK AK", + "AZ AZ", + "AR AR", + "CA CA", + "CO CO", + "CT CT", + "DE DE", + "FL FL", + "GA GA", + "HI HI", + "ID ID", + "IL IL", + "IN IN", + "IA IA", + "KS KS", + "KY KY", + "LA LA", + "ME ME", + "MD MD", + "MA MA", + "MI MI", + "MN MN", + "MS MS", + "MO MO", + "MT MT", + "NE NE", + "NV NV", + "NH NH", + "NJ NJ", + "NM NM", + "NY NY", + "NC NC", + "ND ND", + "OH OH", + "OK OK", + "OR OR", + "PA PA", + "RI RI", + "SC SC", + "SD SD", + "TN TN", + "TX TX", + "UT UT", + "VT VT", + "VA VA", + "WA WA", + "WV WV", + "WI WI", + "WY WY" + ] + }, + "lar_zip": { + "title": "Zip", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + }, + "lar_hmphone": { + "title": "Phone", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + }, + "lar_hmext": { + "title": "Home Phone ext", + "description": "For version 2 - 3(revised 09/18/2013) only", + "comment": "@HIDDEN", + "type": "string" + }, + "lar_altphone": { + "title": "Alt Phone", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + }, + "lar_al ": { + "title": "Alt Phone ext", + "description": "For version 2 - 3(revised 09/18/2013) only", + "comment": "@HIDDEN", + "type": "string" + }, + "lar_email": { + "title": "Email", + "description": "For version 2 - 3(revised 09/18/2013) only", + "type": "string" + } + } + }, + "refer_by": { + "title": "5. Referred by(check one)", + "description": "For version 1(revised 08/29/2005) only", + "comment": "@Hidden", + "type": "string", + "enum": [ + "1 Alzheimer’s Association", + "2 Community Physician", + "3 ADC Physician", + "4 Participation in other AD Study", + "5 Other", + "6 Education Core Outreach", + "9 Unknown" ] + }, + "physician_name": { + "title": "Physician name", + "description": "For version 1(revised 08/29/2005) only.If select \"2 Community Physician\", what's Physician's name ", + "comment": "@Hidden", + "type": "string" + }, + "which_study": { + "title": "Which study", + "description": "For version 1(revised 08/29/2005) only.If select \"4 Participation in other AD Study\", which study", + "comment": "@Hidden", + "type": "string" } - }, "facets": { - "diagnosis.age_range": { - "title": "Age at Diagnosis" + "status": { + "title": "Status" }, - "diagnosis.follow_up_duration_range": { - "title": "Follow Up Duration" + "accession": { + "title": "ADC Subject ID" }, - - "sex": { - "title": "Sex" + "last": { + "title": "Patient Last Name" }, - "ethnicity": { - "title": "Ethnicity" + "first": { + "title": "Patient First Name" }, - "race": { - "title": "Race" + "mi": { + "title": "Patient Middle Initial" }, - "vital_status": { - "title": "Vital Status" + "adcid_mstrid": { + "title": "ADC ID" }, - - "medical_imaging_before_nephrectomy.type" : { - "title": "Medical Imaging" + "examiner": { + "title": "Examiner's initials" }, - - "surgery_summary": { - "title": "Surgery Treatment Status" + "patiddate": { + "title": "Date of Exam/Contact" }, - "surgery.surgery_procedure.surgery_type": { - "title": "Surgery Procedure" + "category": { + "title": "1. Patient Initial Category" }, - "surgery.hospital_location": { - "title": "Surgery Hospital Location" + "site": { + "title": "2. Responsible Site" }, - "surgery.surgery_procedure.nephrectomy_details.type": { - "title": "Nephrectomy Type" + "gender": { + "title": "3. Gender" }, - "surgery.surgery_procedure.nephrectomy_details.approach": { - "title": "Nephrectomy Approach" + "dob": { + "title": "4. Date of birth mm/dd/yyyy" }, - "surgery.nephr_robotic_assist":{ - "title": "Nephrectomy Robotic Assist" + "ssnmed": { + "title": "5. Social Security Number" }, - "dominant_tumor.histology_filter": { - "title": "Dominant Tumor" + "astonid": { + "title": "AstonID (MRN)" }, - "dominant_tumor.stage": { - "title": "Dominant Tumor TNM Stage (at presentation)" + "parklandid": { + "title": "ParklandID (MRN)" }, - "surgery.pathology_report.pathology_report_tumor_range":{ - "title": "Tumor Size Range" + "hand": { + "title": "Handedness" }, - "surgery.pathology_report.histology_filter": { - "title": "Histologic Subtype" + "educat": { + "title": "6. Years of education Enter '99' if Unknown number" }, - "surgery.pathology_report.t_stage": { - "title": "pT Stage (at presentation)" + "excmenret": { + "title": "7. If less than 6 years of education does the subject have a work history sufficient to exclude mental retardation?" }, - "surgery.pathology_report.n_stage": { - "title": "pN Stage (at presentation)" + "occupat": { + "title": "8. Occupation (during most of adult life)" }, - "surgery.pathology_report.m_stage": { - "title": "pM Stage (at presentation)" + "preflang": { + "title": "9. Language to be used for testing" }, - "surgery.pathology_report.metasis_details.site": { - "title": "Metastatic Site (Pathology)" + "spanish": { + "title": "10. Ethnicity (self-reported) Is subject Spanish, Hispanic or Latino" }, - "surgery.pathology_report.metasis_details.type": { - "title": "Metastasis Type (Pathology)" + "racial": { + "title": "11. Racial Category" }, - "surgery.pathology_report.ajcc_version": { - "title": "AJCC Version (at presentation)" + "raceother": { + "title": "Other, please specify" }, - "surgery.pathology_report.ajcc_tnm_stage": { - "title": "TNM Stage (at presentation)" + "aitribe": { + "title": "12. If American Indian checked, a) what tribe?" }, - "surgery.pathology_report.laterality": { - "title": "Tumor Laterality" + "tribedesc": { + "title": "Other, please specify" }, - "ihc.antibody": { - "title": "IHC/FISH (Clinical lab)" + "tribeperc": { + "title": "b) % Native American" }, - "ihc.result": { - "title": "IHC/FISH results" + "contact_info.p_info.p_addr1": { + "title": "1. Patient Address" }, - "medications.name":{ - "title":"Medication Name" + "contact_info.p_info.p_addr2": { + "title": "Apt #/ Unit #" }, - "medication_range":{ - "title":"Medication Duration" + "contact_info.p_info.p_city": { + "title": "City" }, - "radiation_summary": { - "title": "Radiation Treatment Status" + "contact_info.p_info.p_state": { + "title": "dropdown State" }, - "radiation.dose_range": { - "title": "Radiation Dose per Fraction" + "contact_info.p_info.p_zip": { + "title": "Zip" }, - "radiation.fractions_range": { - "title": "Radiation Fractions" + "contact_info.p_info.p_phone": { + "title": "Phone" }, - "radiation.site_consolidated" : { - "title": "Radiation Site" + "contact_info.p_info.p_phoneext": { + "title": "Alt Phone" }, - "radiation.treatment_intention" : { - "title": "Radiation Treatment Intention" + "contact_info.p_info.p_email": { + "title": "Email" }, - "metastasis_status": { - "title": "Metastasis Status" + "contact_info.c_cont1.c_name": { + "title": "2. Alternate Contact Name" }, - "metastasis.histology_proven": { - "title": "Metastasis Histology Proven" + "contact_info.c_cont1.c_relat": { + "title": "Relationship to patient" }, - "metastasis.site": { - "title": "Metastatic Site" + "contact_info.c_cont1.c_addr1": { + "title": "Address" }, - "metastasis.source": { - "title": "Metastasis Source" + "contact_info.c_cont1.c_addr2": { + "title": "Apt #/ Unit #" }, - "labs_and_vitals.BMI": { - "title": "BMI" + "contact_info.c_cont1.c_city": { + "title": "City" }, - "labs_and_vitals.BP_Systolic": { - "title": "BP_Systolic (mmHg)" + "contact_info.c_cont1.c_state": { + "title": "dropdown State" }, - "labs_and_vitals.BP_Diastolic": { - "title": "BP_Diastolic (mmHg)" + "contact_info.c_cont1.c_zip": { + "title": "Zip" }, - "labs_and_vitals.Hemoglobin": { - "title": "Hemoglobin (g/dL)" + "contact_info.c_cont1.c_hmphone": { + "title": "Phone" }, - "labs_and_vitals.Platelets": { - "title": "Platelets (10^3/ul)" + "contact_info.c_cont1.c_hmext": { + "title": "Phone ext" }, - "labs_and_vitals.WBC": { - "title": "WBC (10^3/ul)" + "contact_info.c_cont1.c_altphone": { + "title": "Alt Phone" }, - "labs_and_vitals.Neutrophils": { - "title": "Neutrophils (10^3/ul)" + "contact_info.c_cont1.c_al ": { + "title": "Alt Phone ext" }, - "labs_and_vitals.Creatinine": { - "title": "Creatinine (mg/dL)" + "contact_info.c_cont1.c_email": { + "title": "Email" }, - "labs_and_vitals.Calcium": { - "title": "Calcium (mg/dL)" + "contact_info.alt_cont2.a_name": { + "title": "3. Alternate Contact Name" }, - "labs_and_vitals.Albumin": { - "title": "Albumin (g/dL)" + "contact_info.alt_cont2.a_relat": { + "title": "Relationship to patient" }, - "labs_and_vitals.Sodium": { - "title": "Sodium (mmol/L)" + "contact_info.alt_cont2.a_addr1": { + "title": "Address" }, - "labs_and_vitals.LDH": { - "title": "LDH (U/L)" + "contact_info.alt_cont2.a_addr2": { + "title": "Apt #/ Unit #" }, - - "biospecimen.sample_type": { - "title": "Specimen Class" + "contact_info.alt_cont2.a_city": { + "title": "City" }, - "biospecimen.tissue_derivatives": { - "title": "Specimen Type" + "contact_info.alt_cont2.a_state": { + "title": "dropdown State" }, - "biospecimen.tissue_type": { - "title": "Specimen Pathological Type" + "contact_info.alt_cont2.a_zip": { + "title": "Zip" }, - "biospecimen.anatomic_site": { - "title": "Specimen Anatomic Site" + "contact_info.alt_cont2.a_hmphone": { + "title": "Phone" }, - "biospecimen.species": { - "title": "Specimen Species" + "contact_info.alt_cont2.a_hmext": { + "title": "Home Phone ext" }, - "biospecimen.activity_status": { - "title": "Specimen Activity Status" + "contact_info.alt_cont2.a_altphone": { + "title": "Alt Phone" }, - - "status": { - "title": "Status" + "contact_info.alt_cont2.a_al ": { + "title": "Alt Phone ext" + }, + "contact_info.alt_cont2.a_email": { + "title": "Email" + }, + "contact_info.alt_cont3.a2_name": { + "title": "Alternate Contact 3 Name" + }, + "contact_info.alt_cont3.a2_relat": { + "title": "Relationship" + }, + "contact_info.alt_cont3.a2_addr1": { + "title": "Address" + }, + "contact_info.alt_cont3.a2_addr2": { + "title": "Apt#/Unit#" + }, + "contact_info.alt_cont3.a2_city": { + "title": "City" + }, + "contact_info.alt_cont3.a2_state": { + "title": "State" + }, + "contact_info.alt_cont3.a2_zip": { + "title": "Zip" + }, + "contact_info.alt_cont3.a2_hmphone": { + "title": "Phone" + }, + "contact_info.alt_cont3.a2_hmext": { + "title": "Phone ext" + }, + "contact_info.alt_cont3.a2_altphone": { + "title": "Alt phone" + }, + "contact_info.alt_cont3.a2_al ": { + "title": "Alt Phone Extension" + }, + "contact_info.alt_cont3.a2_email": { + "title": "Email" + }, + "legal_represent.lar_name": { + "title": "4. LAR Name (If same as 2. Alternate Contact, write \"same\")" + }, + "legal_represent.lar_relat": { + "title": "Relationship to patient" + }, + "legal_represent.lar_addr1": { + "title": "Address" + }, + "legal_represent.lar_addr2": { + "title": "Apt #/ Unit #" + }, + "legal_represent.lar_city": { + "title": "City" + }, + "legal_represent.lar_state": { + "title": "dropdown State" + }, + "legal_represent.lar_zip": { + "title": "Zip" + }, + "legal_represent.lar_hmphone": { + "title": "Phone" + }, + "legal_represent.lar_hmext": { + "title": "Home Phone ext" + }, + "legal_represent.lar_altphone": { + "title": "Alt Phone" + }, + "legal_represent.lar_al ": { + "title": "Alt Phone ext" + }, + "legal_represent.lar_email": { + "title": "Email" + }, + "refer_by": { + "title": "5. Referred by(check one)" + }, + "physician_name": { + "title": "Physician name" + }, + "which_study": { + "title": "Which study" } }, "columns": { + "status": { + "title": "Status" + }, "accession": { - "title": "Accession" + "title": "ADC Subject ID" }, - "sex": { - "title": "Sex" + "last": { + "title": "Patient Last Name" }, - "ethnicity": { - "title": "Ethnicity" + "first": { + "title": "Patient First Name" }, - "race": { - "title": "Race" + "mi": { + "title": "Patient Middle Initial" }, - "diagnosis.age": { - "title": "Diagnosis age" + "adcid_mstrid": { + "title": "ADC ID" }, - "diagnosis.age_unit": { - "title": "Diagnosis age units" + "examiner": { + "title": "Examiner's initials" }, - "diagnosis.follow_up_duration_range": { - "title": "Follow Up Duration" + "patiddate": { + "title": "Date of Exam/Contact" }, - "dominant_tumor.histology": { - "title": "Dominant Tumor Histology" + "category": { + "title": "1. Patient Initial Category" }, - "surgery_summary": { - "title": "Surgery Treatment Status" + "site": { + "title": "2. Responsible Site" }, - "medical_imaging_before_nephrectomy.type": { - "title": "Medical Imaging Before Nephrectomy" + "gender": { + "title": "3. Gender" }, - "radiation_summary": { - "title": "Radiation Treatment Status" + "dob": { + "title": "4. Date of birth mm/dd/yyyy" }, - "metastasis_status": { - "title": "Metastasis Status" + "ssnmed": { + "title": "5. Social Security Number" }, - "status": { - "title": "Status" + "astonid": { + "title": "AstonID (MRN)" + }, + "parklandid": { + "title": "ParklandID (MRN)" + }, + "hand": { + "title": "Handedness" + }, + "educat": { + "title": "6. Years of education Enter '99' if Unknown number" + }, + "excmenret": { + "title": "7. If less than 6 years of education does the subject have a work history sufficient to exclude mental retardation?" + }, + "occupat": { + "title": "8. Occupation (during most of adult life)" + }, + "preflang": { + "title": "9. Language to be used for testing" + }, + "spanish": { + "title": "10. Ethnicity (self-reported) Is subject Spanish, Hispanic or Latino" + }, + "racial": { + "title": "11. Racial Category" + }, + "raceother": { + "title": "Other, please specify" + }, + "aitribe": { + "title": "12. If American Indian checked, a) what tribe?" + }, + "tribedesc": { + "title": "Other, please specify" + }, + "tribeperc": { + "title": "b) % Native American" + }, + "contact_info.p_info.p_addr1": { + "title": "1. Patient Address" + }, + "contact_info.p_info.p_addr2": { + "title": "Apt #/ Unit #" + }, + "contact_info.p_info.p_city": { + "title": "City" + }, + "contact_info.p_info.p_state": { + "title": "dropdown State" + }, + "contact_info.p_info.p_zip": { + "title": "Zip" + }, + "contact_info.p_info.p_phone": { + "title": "Phone" + }, + "contact_info.p_info.p_phoneext": { + "title": "Alt Phone" + }, + "contact_info.p_info.p_email": { + "title": "Email" + }, + "contact_info.c_cont1.c_name": { + "title": "2. Alternate Contact Name" + }, + "contact_info.c_cont1.c_relat": { + "title": "Relationship to patient" + }, + "contact_info.c_cont1.c_addr1": { + "title": "Address" + }, + "contact_info.c_cont1.c_addr2": { + "title": "Apt #/ Unit #" + }, + "contact_info.c_cont1.c_city": { + "title": "City" + }, + "contact_info.c_cont1.c_state": { + "title": "dropdown State" + }, + "contact_info.c_cont1.c_zip": { + "title": "Zip" + }, + "contact_info.c_cont1.c_hmphone": { + "title": "Phone" + }, + "contact_info.c_cont1.c_hmext": { + "title": "Phone ext" + }, + "contact_info.c_cont1.c_altphone": { + "title": "Alt Phone" + }, + "contact_info.c_cont1.c_al ": { + "title": "Alt Phone ext" + }, + "contact_info.c_cont1.c_email": { + "title": "Email" + }, + "contact_info.alt_cont2.a_name": { + "title": "3. Alternate Contact Name" + }, + "contact_info.alt_cont2.a_relat": { + "title": "Relationship to patient" + }, + "contact_info.alt_cont2.a_addr1": { + "title": "Address" + }, + "contact_info.alt_cont2.a_addr2": { + "title": "Apt #/ Unit #" + }, + "contact_info.alt_cont2.a_city": { + "title": "City" + }, + "contact_info.alt_cont2.a_state": { + "title": "dropdown State" + }, + "contact_info.alt_cont2.a_zip": { + "title": "Zip" + }, + "contact_info.alt_cont2.a_hmphone": { + "title": "Phone" + }, + "contact_info.alt_cont2.a_hmext": { + "title": "Home Phone ext" + }, + "contact_info.alt_cont2.a_altphone": { + "title": "Alt Phone" + }, + "contact_info.alt_cont2.a_al ": { + "title": "Alt Phone ext" + }, + "contact_info.alt_cont2.a_email": { + "title": "Email" + }, + "contact_info.alt_cont3.a2_name": { + "title": "Alternate Contact 3 Name" + }, + "contact_info.alt_cont3.a2_relat": { + "title": "Relationship" + }, + "contact_info.alt_cont3.a2_addr1": { + "title": "Address" + }, + "contact_info.alt_cont3.a2_addr2": { + "title": "Apt#/Unit#" + }, + "contact_info.alt_cont3.a2_city": { + "title": "City" + }, + "contact_info.alt_cont3.a2_state": { + "title": "State" + }, + "contact_info.alt_cont3.a2_zip": { + "title": "Zip" + }, + "contact_info.alt_cont3.a2_hmphone": { + "title": "Phone" + }, + "contact_info.alt_cont3.a2_hmext": { + "title": "Phone ext" + }, + "contact_info.alt_cont3.a2_altphone": { + "title": "Alt phone" + }, + "contact_info.alt_cont3.a2_al ": { + "title": "Alt Phone Extension" + }, + "contact_info.alt_cont3.a2_email": { + "title": "Email" + }, + "legal_represent.lar_name": { + "title": "4. LAR Name (If same as 2. Alternate Contact, write \"same\")" + }, + "legal_represent.lar_relat": { + "title": "Relationship to patient" + }, + "legal_represent.lar_addr1": { + "title": "Address" + }, + "legal_represent.lar_addr2": { + "title": "Apt #/ Unit #" + }, + "legal_represent.lar_city": { + "title": "City" + }, + "legal_represent.lar_state": { + "title": "dropdown State" + }, + "legal_represent.lar_zip": { + "title": "Zip" + }, + "legal_represent.lar_hmphone": { + "title": "Phone" + }, + "legal_represent.lar_hmext": { + "title": "Home Phone ext" + }, + "legal_represent.lar_altphone": { + "title": "Alt Phone" + }, + "legal_represent.lar_al ": { + "title": "Alt Phone ext" + }, + "legal_represent.lar_email": { + "title": "Email" + }, + "refer_by": { + "title": "5. Referred by(check one)" + }, + "physician_name": { + "title": "Physician name" + }, + "which_study": { + "title": "Which study" } }, "boost_values": { + "status": 1.0, "accession": 1.0, - "sex": 1.0, - "ethnicity": 1.0, - "race": 1.0, - "germline.target": 1.0, - "germline.significance": 1.0, - "radiation.site_general": 1.0, - "radiation.treatment_intention": 1.0, - "medications.name":1.0, - "ihc.antibody":1.0, - "ihc.result":1.0, - "surgery.pathology_report.t_stage": 1.0, - "surgery.pathology_report.n_stage": 1.0, - "surgery.pathology_report.m_stage": 1.0, - "surgery.pathology_report.metasis_details.site": 1.0, - "surgery.pathology_report.metasis_details.type": 1.0, - "surgery.pathology_report.ajcc_tnm_stage": 1.0 - }, + "last": 1.0, + "first": 1.0, + "mi": 1.0, + "adcid_mstrid": 1.0, + "examiner": 1.0, + "patiddate": 1.0, + "category": 1.0, + "site": 1.0, + "gender": 1.0, + "dob": 1.0, + "ssnmed": 1.0, + "astonid": 1.0, + "parklandid": 1.0, + "hand": 1.0, + "educat": 1.0, + "excmenret": 1.0, + "occupat": 1.0, + "preflang": 1.0, + "spanish": 1.0, + "racial": 1.0, + "raceother": 1.0, + "aitribe": 1.0, + "tribedesc": 1.0, + "tribeperc": 1.0, + "contact_info.p_info.p_addr1": 1.0, + "contact_info.p_info.p_addr2": 1.0, + "contact_info.p_info.p_city": 1.0, + "contact_info.p_info.p_state": 1.0, + "contact_info.p_info.p_zip": 1.0, + "contact_info.p_info.p_phone": 1.0, + "contact_info.p_info.p_phoneext": 1.0, + "contact_info.p_info.p_email": 1.0, + "contact_info.c_cont1.c_name": 1.0, + "contact_info.c_cont1.c_relat": 1.0, + "contact_info.c_cont1.c_addr1": 1.0, + "contact_info.c_cont1.c_addr2": 1.0, + "contact_info.c_cont1.c_city": 1.0, + "contact_info.c_cont1.c_state": 1.0, + "contact_info.c_cont1.c_zip": 1.0, + "contact_info.c_cont1.c_hmphone": 1.0, + "contact_info.c_cont1.c_hmext": 1.0, + "contact_info.c_cont1.c_altphone": 1.0, + "contact_info.c_cont1.c_al ": 1.0, + "contact_info.c_cont1.c_email": 1.0, + "contact_info.alt_cont2.a_name": 1.0, + "contact_info.alt_cont2.a_relat": 1.0, + "contact_info.alt_cont2.a_addr1": 1.0, + "contact_info.alt_cont2.a_addr2": 1.0, + "contact_info.alt_cont2.a_city": 1.0, + "contact_info.alt_cont2.a_state": 1.0, + "contact_info.alt_cont2.a_zip": 1.0, + "contact_info.alt_cont2.a_hmphone": 1.0, + "contact_info.alt_cont2.a_hmext": 1.0, + "contact_info.alt_cont2.a_altphone": 1.0, + "contact_info.alt_cont2.a_al ": 1.0, + "contact_info.alt_cont2.a_email": 1.0, + "contact_info.alt_cont3.a2_name": 1.0, + "contact_info.alt_cont3.a2_relat": 1.0, + "contact_info.alt_cont3.a2_addr1": 1.0, + "contact_info.alt_cont3.a2_addr2": 1.0, + "contact_info.alt_cont3.a2_city": 1.0, + "contact_info.alt_cont3.a2_state": 1.0, + "contact_info.alt_cont3.a2_zip": 1.0, + "contact_info.alt_cont3.a2_hmphone": 1.0, + "contact_info.alt_cont3.a2_hmext": 1.0, + "contact_info.alt_cont3.a2_altphone": 1.0, + "contact_info.alt_cont3.a2_al ": 1.0, + "contact_info.alt_cont3.a2_email": 1.0, + "legal_represent.lar_name": 1.0, + "legal_represent.lar_relat": 1.0, + "legal_represent.lar_addr1": 1.0, + "legal_represent.lar_addr2": 1.0, + "legal_represent.lar_city": 1.0, + "legal_represent.lar_state": 1.0, + "legal_represent.lar_zip": 1.0, + "legal_represent.lar_hmphone": 1.0, + "legal_represent.lar_hmext": 1.0, + "legal_represent.lar_altphone": 1.0, + "legal_represent.lar_al ": 1.0, + "legal_represent.lar_email": 1.0, + "refer_by": 1.0, + "physician_name": 1.0, + "which_study": 1.0 + }, "changelog": "/profiles/changelogs/patient.md" -} + } \ No newline at end of file diff --git a/src/encoded/schemas/physical_exam.json b/src/encoded/schemas/physical_exam.json new file mode 100644 index 0000000000..f61617b5bc --- /dev/null +++ b/src/encoded/schemas/physical_exam.json @@ -0,0 +1,1971 @@ +{ + "title": "Physical Examination", + "id": "/profiles/physical_exam.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "adc_form_b", + "ii_gene_phys_exam", + "iii_cran_nerv", + "iv_refl", + "v_motor_stre", + "vi_motor_tone", + "vii_sens_feet", + "viii_cere_exam", + "ix_gait" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "adc_form_b": { + "title": "ADC Form B1.1", + "type": "object", + "properties": { + "appear": { + "title": "I. General Appearance", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_appear": { + "title": "If abnormal, please describe.", + "type": "string" + } + } + }, + "ii_gene_phys_exam": { + "title": "II. General Physical Exam", + "type": "object", + "properties": { + "headneck": { + "title": "Head and Neck", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_headneck": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "chest": { + "title": "Chest", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_3": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "heart": { + "title": "Heart", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_heart": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "abdom": { + "title": "Abdomen", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_abdom": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "extrem": { + "title": "Extremities", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_extrem": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "edema": { + "title": "Edema", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_edema": { + "title": "If abnormal, please describe.", + "type": "string" + } + } + }, + "iii_cran_nerv": { + "title": "III. Cranial Nerves", + "type": "object", + "properties": { + "ii_eye": { + "title": "II (eyesight)", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_ii_eye": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "iii_iv_vi": { + "title": "III, IV, VI", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_iii_iv_vi": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "v": { + "title": "V", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_v": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "vii": { + "title": "VII", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_vii": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "viii": { + "title": "VIII (hearing)", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_viii": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "ix_x": { + "title": "IX, X", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_ix_x": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "xi": { + "title": "XI", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_xi": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "xii": { + "title": "XII", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_xii": { + "title": "If abnormal, please describe.", + "type": "string" + } + } + }, + "iv_refl": { + "title": "IV. Reflexes (Input MRC grade.)", + "type": "object", + "properties": { + "bic_r": { + "title": "Biceps - R", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4" + ] + }, + "bic_l": { + "title": "Biceps -L", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4" + ] + }, + "abnormal_bic_r": { + "title": "Biceps - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_bic_l": { + "title": "Biceps - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "tri_r": { + "title": "Triceps - R", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4" + ] + }, + "tri_l": { + "title": "Triceps - L", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4" + ] + }, + "abnormal_tri_r": { + "title": "Triceps - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_tri_l": { + "title": "Triceps - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "patell_r": { + "title": "Patellar - R", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4" + ] + }, + "patell_l": { + "title": "Patellar - L", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4" + ] + }, + "abnormal_patell_r": { + "title": "Patellar - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_patell_l": { + "title": "Patellar - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "achill_r": { + "title": "Achilles - R", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4" + ] + }, + "achill_l": { + "title": "Achilles - L", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4" + ] + }, + "abnormal_achilles_r": { + "title": "Achilles - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_achilles_l": { + "title": "Achilles - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "bab_r": { + "title": "Babinski signs - right", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_bab_r": { + "title": "If abnormal, please describe.", + "type": "string" + }, + "bab_l": { + "title": "Babinski signs - left", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_bab_l": { + "title": "If abnormal, please describe.", + "type": "string" + } + } + }, + "v_motor_stre": { + "title": "V. Motor Strength", + "type": "object", + "properties": { + "arms_p_r": { + "title": "Arms proximal - R", + "type": "string", + "enum": [ + "0 No strength", + "1 Trace movement only", + "2 Unable to overcome gravity", + "3 Unable to overcome resistance", + "4 Reduced strength", + "5 Normal", + "8 Non-neurological", + "9 N/A" + ] + }, + "arms_p_l": { + "title": "Arms proximal - L", + "type": "string", + "enum": [ + "0 No strength", + "1 Trace movement only", + "2 Unable to overcome gravity", + "3 Unable to overcome resistance", + "4 Reduced strength", + "5 Normal", + "8 Non-neurological", + "9 N/A" + ] + }, + "arms_d_r": { + "title": "Arms distal - R", + "type": "string", + "enum": [ + "0 No strength", + "1 Trace movement only", + "2 Unable to overcome gravity", + "3 Unable to overcome resistance", + "4 Reduced strength", + "5 Normal", + "8 Non-neurological", + "9 N/A" + ] + }, + "arms_d_l": { + "title": "Arms distal - L", + "type": "string", + "enum": [ + "0 No strength", + "1 Trace movement only", + "2 Unable to overcome gravity", + "3 Unable to overcome resistance", + "4 Reduced strength", + "5 Normal", + "8 Non-neurological", + "9 N/A" + ] + }, + "abnormal_arms_p_r": { + "title": "Arms proximal - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_arms_p_l": { + "title": "Arms proximal - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_arms_d_r": { + "title": "Arms distal - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_arms_d_l": { + "title": "Arms distal - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "legs_p_r": { + "title": "Legs proximal - R", + "type": "string", + "enum": [ + "0 No strength", + "1 Trace movement only", + "2 Unable to overcome gravity", + "3 Unable to overcome resistance", + "4 Reduced strength", + "5 Normal", + "8 Non-neurological", + "9 N/A" + ] + }, + "legs_p_l": { + "title": "Legs proximal - L", + "type": "string", + "enum": [ + "0 No strength", + "1 Trace movement only", + "2 Unable to overcome gravity", + "3 Unable to overcome resistance", + "4 Reduced strength", + "5 Normal", + "8 Non-neurological", + "9 N/A" + ] + }, + "legs_d_r": { + "title": "Legs distal - R", + "type": "string", + "enum": [ + "0 No strength", + "1 Trace movement only", + "2 Unable to overcome gravity", + "3 Unable to overcome resistance", + "4 Reduced strength", + "5 Normal", + "8 Non-neurological", + "9 N/A" + ] + }, + "legs_d_l": { + "title": "Legs distal - L", + "type": "string", + "enum": [ + "0 No strength", + "1 Trace movement only", + "2 Unable to overcome gravity", + "3 Unable to overcome resistance", + "4 Reduced strength", + "5 Normal", + "8 Non-neurological", + "9 N/A" + ] + }, + "abnormal_legs_p_r": { + "title": "Legs proximal - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_legs_p_l": { + "title": "Legs proximal - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_legs_d_r": { + "title": "Legs distal - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_legs_d_l": { + "title": "Legs distal - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "pron_r": { + "title": "Pronator drift - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "pron_l": { + "title": "Pronator drift - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_pron_r": { + "title": "Pronator drift - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_pron_l": { + "title": "Pronator drift - L", + "description": "If abnormal, please describe.", + "type": "string" + } + } + }, + "vi_motor_tone": { + "title": "For rapid alternating movements (hands and feet) and tremor, see UDPRS.\n\nVI. Motor tone (not Rigidity on UPDRS)", + "type": "object", + "properties": { + "ue_spast_r": { + "title": "Upper Extremities - Spasticity - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "ue_spast_l": { + "title": "Upper Extremities - Spasticity - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "ue_myocl_r": { + "title": "Upper Extremities - Myoclonus - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "ue_myocl_l": { + "title": "Upper Extremities - Myoclonus - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "ue_fascic_r": { + "title": "Upper Extremities - Fasciculations - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "ue_fascic_l": { + "title": "Upper Extremities - Fasciculations - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "ue_atroph_r": { + "title": "Upper Extremities - Atrophy - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "ue_atroph_l": { + "title": "Upper Extremities - Atrophy - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_ue_spast_r": { + "title": "Upper Extremities - Spasticity - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_ue_spast_l": { + "title": "Upper Extremities - Spasticity - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_ue_myocl_r": { + "title": "Upper Extremities - Myoclonus - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_ue_myocl_l": { + "title": "Upper Extremities - Myoclonus - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_ue_fascic_r": { + "title": "Upper Extremities - Fasciculations - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_ue_fascic_l": { + "title": "Upper Extremities - Fasciculations - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_ue_atroph_r": { + "title": "Upper Extremities - Atrophy - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_ue_atroph_l": { + "title": "Upper Extremities - Atrophy - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "le_spast_r": { + "title": "Lower extremities - Spasticity - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "le_spast_l": { + "title": "Lower extremities - Spasticity - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "le_myocl_r": { + "title": "Lower extremities - Myoclonus - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "le_myocl_l": { + "title": "Lower extremities - Myoclonus - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "le_fascic_r": { + "title": "Lower extremities - Fasciculations - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "le_fascic_l": { + "title": "Lower extremities - Fasciculations - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "le_atroph_r": { + "title": "Lower extremities - Atrophy - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "le_atroph_l": { + "title": "Lower extremities - Atrophy - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_le_spast_r": { + "title": "Lower extremities - Spasticity - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_le_spast_l": { + "title": "Lower extremities - Spasticity - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_le_myocl_r": { + "title": "Lower extremities - Myoclonus - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_le_myocl_l": { + "title": "Lower extremities - Myoclonus - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_le_fascic_r": { + "title": "Lower extremities - Fasciculations - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_le_fascic_l": { + "title": "Lower extremities - Fasciculations - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_le_atroph_r": { + "title": "Lower extremities - Atrophy - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_le_atroph_l": { + "title": "Lower extremities - Atrophy - L", + "description": "If abnormal, please describe.", + "type": "string" + } + } + }, + "vii_sens_feet": { + "title": "VII. Sensory in feet", + "type": "object", + "properties": { + "vib_nor_r": { + "title": "Vibration sense - Normal (>10 sec) - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "vib_nor_l": { + "title": "Vibration sense - Normal (>10 sec) - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "vib_dec_r": { + "title": "Vibration sense - Decreased (< 10 sec) - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "vib_dec_l": { + "title": "Vibration sense - Decreased (< 10 sec) - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_vib_nor_r": { + "title": "Vibration sense - Normal (>10 sec) - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_vib_nor_l": { + "title": "Vibration sense - Normal (>10 sec) - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_vib_dec_r": { + "title": "Vibration sense - Decreased (< 10 sec) - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_vib_dec_l": { + "title": "Vibration sense - Decreased (< 10 sec) - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "pps_nor_r": { + "title": "Pin prick sensation - Normal - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "pps_nor_l": { + "title": "Pin prick sensation - Normal - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "pps_dec_r": { + "title": "Pin prick sensation - Decreased in toes - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "pps_dec_l": { + "title": "Pin prick sensation - Decreased in toes - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_pps_nor_r": { + "title": "Pin prick sensation - Normal - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_pps_nor_l": { + "title": "Pin prick sensation - Normal - L", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_pps_dec_r": { + "title": "Pin prick sensation - Decreased in toes - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_pps_dec_l": { + "title": "Pin prick sensation - Decreased in toes - L", + "description": "If abnormal, please describe.", + "type": "string" + } + } + }, + "viii_cere_exam": { + "title": "VIII. Cerebellar exam", + "type": "object", + "properties": { + "dysmet_r": { + "title": "Finger-nose-finger (Dysmetria) - R", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "dysmet_l": { + "title": "Finger-nose-finger (Dysmetria) - L", + "type": "string", + "enum": [ + "0 Normal", + "1 Abnormal", + "9 Unable to determine" + ] + }, + "abnormal_dysmet_r": { + "title": "Finger-nose-finger (Dysmetria) - R", + "description": "If abnormal, please describe.", + "type": "string" + }, + "abnormal_dysmet_l": { + "title": "Finger-nose-finger (Dysmetria) - L", + "description": "If abnormal, please describe.", + "type": "string" + } + } + }, + "ix_gait": { + "title": "IX. Gait Disturbances", + "type": "object", + "properties": { + "severity": { + "title": "Severity (check one)", + "type": "string", + "enum": [ + "0 Normal", + "1 Slight alteration in speed or fluidity of gait", + "2 Walks with difficulty but requires no assistance", + "3 Severe disturbance", + "4 Cannot walk at all", + "8 Untestable" + ] + }, + "specify_untest": { + "title": "Specify why untestable", + "type": "string" + }, + "type": { + "title": "Type (check one)", + "type": "string", + "enum": [ + "0 Normal", + "1 Hemipretic (spastic)", + "2 Foot drop gait (lower motor neuron)", + "3 Ataxic gait", + "4 Parkinsonian gait", + "5 Apractic gait (magnetic gait)", + "6 Antalgic gait", + "7 Other gait disorder not listed above", + "8 Untestable" + ] + }, + "specify_giatdis": { + "title": "Specify other gait disorder not listed ", + "type": "string" + }, + "specify_untest_3": { + "title": "Specify why untestable", + "type": "string" + } + } + }, + "other_abnorm": { + "title": "X. Other abnormalities", + "type": "string" + }, + "gen_comm": { + "title": "X. General Comments", + "type": "string" + }, + "clin_sig": { + "title": "Clinician's Signature", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "adc_form_b.appear": { + "title": "I. General Appearance" + }, + "adc_form_b.abnormal_appear": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.headneck": { + "title": "Head and Neck" + }, + "ii_gene_phys_exam.abnormal_headneck": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.chest": { + "title": "Chest" + }, + "ii_gene_phys_exam.abnormal_3": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.heart": { + "title": "Heart" + }, + "ii_gene_phys_exam.abnormal_heart": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.abdom": { + "title": "ii_gene_phys_exam.abdomen" + }, + "ii_gene_phys_exam.abnormal_abdom": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.extrem": { + "title": "Extremities" + }, + "ii_gene_phys_exam.abnormal_extrem": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.edema": { + "title": "Edema" + }, + "ii_gene_phys_exam.abnormal_edema": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.ii_eye": { + "title": "II (eyesight)" + }, + "iii_cran_nerv.abnormal_ii_eye": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.iii_iv_vi": { + "title": "III, IV, VI" + }, + "iii_cran_nerv.abnormal_iii_iv_vi": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.v": { + "title": "V" + }, + "iii_cran_nerv.abnormal_v": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.vii": { + "title": "VII" + }, + "iii_cran_nerv.abnormal_vii": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.viii": { + "title": "VIII (hearing)" + }, + "iii_cran_nerv.abnormal_viii": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.ix_x": { + "title": "IX, X" + }, + "iii_cran_nerv.abnormal_ix_x": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.xi": { + "title": "XI" + }, + "iii_cran_nerv.abnormal_xi": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.xii": { + "title": "XII" + }, + "iii_cran_nerv.abnormal_xii": { + "title": "If abnormal, please describe." + }, + "iv_refl.bic_r": { + "title": "Biceps - R" + }, + "iv_refl.bic_l": { + "title": "Biceps -L" + }, + "iv_refl.abnormal_bic_r": { + "title": "Biceps - R" + }, + "iv_refl.abnormal_bic_l": { + "title": "Biceps - L" + }, + "iv_refl.tri_r": { + "title": "Triceps - R" + }, + "iv_refl.tri_l": { + "title": "Triceps - L" + }, + "iv_refl.abnormal_tri_r": { + "title": "Triceps - R" + }, + "iv_refl.abnormal_tri_l": { + "title": "Triceps - L" + }, + "iv_refl.patell_r": { + "title": "Patellar - R" + }, + "iv_refl.patell_l": { + "title": "Patellar - L" + }, + "iv_refl.abnormal_patell_r": { + "title": "Patellar - R" + }, + "iv_refl.abnormal_patell_l": { + "title": "Patellar - L" + }, + "iv_refl.achill_r": { + "title": "Achilles - R" + }, + "iv_refl.achill_l": { + "title": "Achilles - L" + }, + "iv_refl.abnormal_achilles_r": { + "title": "Achilles - R" + }, + "iv_refl.abnormal_achilles_l": { + "title": "Achilles - L" + }, + "iv_refl.bab_r": { + "title": "Babinski signs - right" + }, + "iv_refl.abnormal_bab_r": { + "title": "If abnormal, please describe." + }, + "iv_refl.bab_l": { + "title": "Babinski signs - left" + }, + "iv_refl.abnormal_bab_l": { + "title": "If abnormal, please describe." + }, + "v_motor_stre.arms_p_r": { + "title": "Arms proximal - R" + }, + "v_motor_stre.arms_p_l": { + "title": "Arms proximal - L" + }, + "v_motor_stre.arms_d_r": { + "title": "Arms distal - R" + }, + "v_motor_stre.arms_d_l": { + "title": "Arms distal - L" + }, + "v_motor_stre.abnormal_arms_p_r": { + "title": "Arms proximal - R" + }, + "v_motor_stre.abnormal_arms_p_l": { + "title": "Arms proximal - L" + }, + "v_motor_stre.abnormal_arms_d_r": { + "title": "Arms distal - R" + }, + "v_motor_stre.abnormal_arms_d_l": { + "title": "Arms distal - L" + }, + "v_motor_stre.legs_p_r": { + "title": "Legs proximal - R" + }, + "v_motor_stre.legs_p_l": { + "title": "Legs proximal - L" + }, + "v_motor_stre.legs_d_r": { + "title": "Legs distal - R" + }, + "v_motor_stre.legs_d_l": { + "title": "Legs distal - L" + }, + "v_motor_stre.abnormal_legs_p_r": { + "title": "Legs proximal - R" + }, + "v_motor_stre.abnormal_legs_p_l": { + "title": "Legs proximal - L" + }, + "v_motor_stre.abnormal_legs_d_r": { + "title": "Legs distal - R" + }, + "v_motor_stre.abnormal_legs_d_l": { + "title": "Legs distal - L" + }, + "v_motor_stre.pron_r": { + "title": "Pronator drift - R" + }, + "v_motor_stre.pron_l": { + "title": "Pronator drift - L" + }, + "v_motor_stre.abnormal_pron_r": { + "title": "Pronator drift - R" + }, + "v_motor_stre.abnormal_pron_l": { + "title": "Pronator drift - L" + }, + "vi_motor_tone.ue_spast_r": { + "title": "Upper Extremities - Spasticity - R" + }, + "vi_motor_tone.ue_spast_l": { + "title": "Upper Extremities - Spasticity - L" + }, + "vi_motor_tone.ue_myocl_r": { + "title": "Upper Extremities - Myoclonus - R" + }, + "vi_motor_tone.ue_myocl_l": { + "title": "Upper Extremities - Myoclonus - L" + }, + "vi_motor_tone.ue_fascic_r": { + "title": "Upper Extremities - Fasciculations - R" + }, + "vi_motor_tone.ue_fascic_l": { + "title": "Upper Extremities - Fasciculations - L" + }, + "vi_motor_tone.ue_atroph_r": { + "title": "Upper Extremities - Atrophy - R" + }, + "vi_motor_tone.ue_atroph_l": { + "title": "Upper Extremities - Atrophy - L" + }, + "vi_motor_tone.abnormal_ue_spast_r": { + "title": "Upper Extremities - Spasticity - R" + }, + "vi_motor_tone.abnormal_ue_spast_l": { + "title": "Upper Extremities - Spasticity - L" + }, + "vi_motor_tone.abnormal_ue_myocl_r": { + "title": "Upper Extremities - Myoclonus - R" + }, + "vi_motor_tone.abnormal_ue_myocl_l": { + "title": "Upper Extremities - Myoclonus - L" + }, + "vi_motor_tone.abnormal_ue_fascic_r": { + "title": "Upper Extremities - Fasciculations - R" + }, + "vi_motor_tone.abnormal_ue_fascic_l": { + "title": "Upper Extremities - Fasciculations - L" + }, + "vi_motor_tone.abnormal_ue_atroph_r": { + "title": "Upper Extremities - Atrophy - R" + }, + "vi_motor_tone.abnormal_ue_atroph_l": { + "title": "Upper Extremities - Atrophy - L" + }, + "vi_motor_tone.le_spast_r": { + "title": "Lower extremities - Spasticity - R" + }, + "vi_motor_tone.le_spast_l": { + "title": "Lower extremities - Spasticity - L" + }, + "vi_motor_tone.le_myocl_r": { + "title": "Lower extremities - Myoclonus - R" + }, + "vi_motor_tone.le_myocl_l": { + "title": "Lower extremities - Myoclonus - L" + }, + "vi_motor_tone.le_fascic_r": { + "title": "Lower extremities - Fasciculations - R" + }, + "vi_motor_tone.le_fascic_l": { + "title": "Lower extremities - Fasciculations - L" + }, + "vi_motor_tone.le_atroph_r": { + "title": "Lower extremities - Atrophy - R" + }, + "vi_motor_tone.le_atroph_l": { + "title": "Lower extremities - Atrophy - L" + }, + "vi_motor_tone.abnormal_le_spast_r": { + "title": "Lower extremities - Spasticity - R" + }, + "vi_motor_tone.abnormal_le_spast_l": { + "title": "Lower extremities - Spasticity - L" + }, + "vi_motor_tone.abnormal_le_myocl_r": { + "title": "Lower extremities - Myoclonus - R" + }, + "vi_motor_tone.abnormal_le_myocl_l": { + "title": "Lower extremities - Myoclonus - L" + }, + "vi_motor_tone.abnormal_le_fascic_r": { + "title": "Lower extremities - Fasciculations - R" + }, + "vi_motor_tone.abnormal_le_fascic_l": { + "title": "Lower extremities - Fasciculations - L" + }, + "vi_motor_tone.abnormal_le_atroph_r": { + "title": "Lower extremities - Atrophy - R" + }, + "vi_motor_tone.abnormal_le_atroph_l": { + "title": "Lower extremities - Atrophy - L" + }, + "vii_sens_feet.vib_nor_r": { + "title": "Vibration sense - Normal (>10 sec) - R" + }, + "vii_sens_feet.vib_nor_l": { + "title": "Vibration sense - Normal (>10 sec) - L" + }, + "vii_sens_feet.vib_dec_r": { + "title": "Vibration sense - Decreased (< 10 sec) - R" + }, + "vii_sens_feet.vib_dec_l": { + "title": "Vibration sense - Decreased (< 10 sec) - L" + }, + "vii_sens_feet.abnormal_vib_nor_r": { + "title": "Vibration sense - Normal (>10 sec) - R" + }, + "vii_sens_feet.abnormal_vib_nor_l": { + "title": "Vibration sense - Normal (>10 sec) - L" + }, + "vii_sens_feet.abnormal_vib_dec_r": { + "title": "Vibration sense - Decreased (< 10 sec) - R" + }, + "vii_sens_feet.abnormal_vib_dec_l": { + "title": "Vibration sense - Decreased (< 10 sec) - L" + }, + "vii_sens_feet.pps_nor_r": { + "title": "Pin prick sensation - Normal - R" + }, + "vii_sens_feet.pps_nor_l": { + "title": "Pin prick sensation - Normal - L" + }, + "vii_sens_feet.pps_dec_r": { + "title": "Pin prick sensation - Decreased in toes - R" + }, + "vii_sens_feet.pps_dec_l": { + "title": "Pin prick sensation - Decreased in toes - L" + }, + "vii_sens_feet.abnormal_pps_nor_r": { + "title": "Pin prick sensation - Normal - R" + }, + "vii_sens_feet.abnormal_pps_nor_l": { + "title": "Pin prick sensation - Normal - L" + }, + "vii_sens_feet.abnormal_pps_dec_r": { + "title": "Pin prick sensation - Decreased in toes - R" + }, + "vii_sens_feet.abnormal_pps_dec_l": { + "title": "Pin prick sensation - Decreased in toes - L" + }, + "viii_cere_exam.dysmet_r": { + "title": "Finger-nose-finger (Dysmetria) - R" + }, + "viii_cere_exam.dysmet_l": { + "title": "Finger-nose-finger (Dysmetria) - L" + }, + "viii_cere_exam.abnormal_dysmet_r": { + "title": "Finger-nose-finger (Dysmetria) - R" + }, + "viii_cere_exam.abnormal_dysmet_l": { + "title": "Finger-nose-finger (Dysmetria) - L" + }, + "ix_gait.severity": { + "title": "Severity (check one)" + }, + "ix_gait.specify_untest": { + "title": "Specify why untestable" + }, + "ix_gait.type": { + "title": "Type (check one)" + }, + "ix_gait.specify_giatdis": { + "title": "Specify other gait disorder not listed " + }, + "ix_gait.specify_untest_3": { + "title": "Specify why untestable" + }, + "other_abnorm": { + "title": "X. Other abnormalities" + }, + "gen_comm": { + "title": "X. General Comments" + }, + "clin_sig": { + "title": "Clinician's Signature" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "adc_form_b.appear": { + "title": "I. General Appearance" + }, + "adc_form_b.abnormal_appear": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.headneck": { + "title": "Head and Neck" + }, + "ii_gene_phys_exam.abnormal_headneck": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.chest": { + "title": "Chest" + }, + "ii_gene_phys_exam.abnormal_3": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.heart": { + "title": "Heart" + }, + "ii_gene_phys_exam.abnormal_heart": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.abdom": { + "title": "ii_gene_phys_exam.abdomen" + }, + "ii_gene_phys_exam.abnormal_abdom": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.extrem": { + "title": "Extremities" + }, + "ii_gene_phys_exam.abnormal_extrem": { + "title": "If abnormal, please describe." + }, + "ii_gene_phys_exam.edema": { + "title": "Edema" + }, + "ii_gene_phys_exam.abnormal_edema": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.ii_eye": { + "title": "II (eyesight)" + }, + "iii_cran_nerv.abnormal_ii_eye": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.iii_iv_vi": { + "title": "III, IV, VI" + }, + "iii_cran_nerv.abnormal_iii_iv_vi": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.v": { + "title": "V" + }, + "iii_cran_nerv.abnormal_v": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.vii": { + "title": "VII" + }, + "iii_cran_nerv.abnormal_vii": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.viii": { + "title": "VIII (hearing)" + }, + "iii_cran_nerv.abnormal_viii": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.ix_x": { + "title": "IX, X" + }, + "iii_cran_nerv.abnormal_ix_x": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.xi": { + "title": "XI" + }, + "iii_cran_nerv.abnormal_xi": { + "title": "If abnormal, please describe." + }, + "iii_cran_nerv.xii": { + "title": "XII" + }, + "iii_cran_nerv.abnormal_xii": { + "title": "If abnormal, please describe." + }, + "iv_refl.bic_r": { + "title": "Biceps - R" + }, + "iv_refl.bic_l": { + "title": "Biceps -L" + }, + "iv_refl.abnormal_bic_r": { + "title": "Biceps - R" + }, + "iv_refl.abnormal_bic_l": { + "title": "Biceps - L" + }, + "iv_refl.tri_r": { + "title": "Triceps - R" + }, + "iv_refl.tri_l": { + "title": "Triceps - L" + }, + "iv_refl.abnormal_tri_r": { + "title": "Triceps - R" + }, + "iv_refl.abnormal_tri_l": { + "title": "Triceps - L" + }, + "iv_refl.patell_r": { + "title": "Patellar - R" + }, + "iv_refl.patell_l": { + "title": "Patellar - L" + }, + "iv_refl.abnormal_patell_r": { + "title": "Patellar - R" + }, + "iv_refl.abnormal_patell_l": { + "title": "Patellar - L" + }, + "iv_refl.achill_r": { + "title": "Achilles - R" + }, + "iv_refl.achill_l": { + "title": "Achilles - L" + }, + "iv_refl.abnormal_achilles_r": { + "title": "Achilles - R" + }, + "iv_refl.abnormal_achilles_l": { + "title": "Achilles - L" + }, + "iv_refl.bab_r": { + "title": "Babinski signs - right" + }, + "iv_refl.abnormal_bab_r": { + "title": "If abnormal, please describe." + }, + "iv_refl.bab_l": { + "title": "Babinski signs - left" + }, + "iv_refl.abnormal_bab_l": { + "title": "If abnormal, please describe." + }, + "v_motor_stre.arms_p_r": { + "title": "Arms proximal - R" + }, + "v_motor_stre.arms_p_l": { + "title": "Arms proximal - L" + }, + "v_motor_stre.arms_d_r": { + "title": "Arms distal - R" + }, + "v_motor_stre.arms_d_l": { + "title": "Arms distal - L" + }, + "v_motor_stre.abnormal_arms_p_r": { + "title": "Arms proximal - R" + }, + "v_motor_stre.abnormal_arms_p_l": { + "title": "Arms proximal - L" + }, + "v_motor_stre.abnormal_arms_d_r": { + "title": "Arms distal - R" + }, + "v_motor_stre.abnormal_arms_d_l": { + "title": "Arms distal - L" + }, + "v_motor_stre.legs_p_r": { + "title": "Legs proximal - R" + }, + "v_motor_stre.legs_p_l": { + "title": "Legs proximal - L" + }, + "v_motor_stre.legs_d_r": { + "title": "Legs distal - R" + }, + "v_motor_stre.legs_d_l": { + "title": "Legs distal - L" + }, + "v_motor_stre.abnormal_legs_p_r": { + "title": "Legs proximal - R" + }, + "v_motor_stre.abnormal_legs_p_l": { + "title": "Legs proximal - L" + }, + "v_motor_stre.abnormal_legs_d_r": { + "title": "Legs distal - R" + }, + "v_motor_stre.abnormal_legs_d_l": { + "title": "Legs distal - L" + }, + "v_motor_stre.pron_r": { + "title": "Pronator drift - R" + }, + "v_motor_stre.pron_l": { + "title": "Pronator drift - L" + }, + "v_motor_stre.abnormal_pron_r": { + "title": "Pronator drift - R" + }, + "v_motor_stre.abnormal_pron_l": { + "title": "Pronator drift - L" + }, + "vi_motor_tone.ue_spast_r": { + "title": "Upper Extremities - Spasticity - R" + }, + "vi_motor_tone.ue_spast_l": { + "title": "Upper Extremities - Spasticity - L" + }, + "vi_motor_tone.ue_myocl_r": { + "title": "Upper Extremities - Myoclonus - R" + }, + "vi_motor_tone.ue_myocl_l": { + "title": "Upper Extremities - Myoclonus - L" + }, + "vi_motor_tone.ue_fascic_r": { + "title": "Upper Extremities - Fasciculations - R" + }, + "vi_motor_tone.ue_fascic_l": { + "title": "Upper Extremities - Fasciculations - L" + }, + "vi_motor_tone.ue_atroph_r": { + "title": "Upper Extremities - Atrophy - R" + }, + "vi_motor_tone.ue_atroph_l": { + "title": "Upper Extremities - Atrophy - L" + }, + "vi_motor_tone.abnormal_ue_spast_r": { + "title": "Upper Extremities - Spasticity - R" + }, + "vi_motor_tone.abnormal_ue_spast_l": { + "title": "Upper Extremities - Spasticity - L" + }, + "vi_motor_tone.abnormal_ue_myocl_r": { + "title": "Upper Extremities - Myoclonus - R" + }, + "vi_motor_tone.abnormal_ue_myocl_l": { + "title": "Upper Extremities - Myoclonus - L" + }, + "vi_motor_tone.abnormal_ue_fascic_r": { + "title": "Upper Extremities - Fasciculations - R" + }, + "vi_motor_tone.abnormal_ue_fascic_l": { + "title": "Upper Extremities - Fasciculations - L" + }, + "vi_motor_tone.abnormal_ue_atroph_r": { + "title": "Upper Extremities - Atrophy - R" + }, + "vi_motor_tone.abnormal_ue_atroph_l": { + "title": "Upper Extremities - Atrophy - L" + }, + "vi_motor_tone.le_spast_r": { + "title": "Lower extremities - Spasticity - R" + }, + "vi_motor_tone.le_spast_l": { + "title": "Lower extremities - Spasticity - L" + }, + "vi_motor_tone.le_myocl_r": { + "title": "Lower extremities - Myoclonus - R" + }, + "vi_motor_tone.le_myocl_l": { + "title": "Lower extremities - Myoclonus - L" + }, + "vi_motor_tone.le_fascic_r": { + "title": "Lower extremities - Fasciculations - R" + }, + "vi_motor_tone.le_fascic_l": { + "title": "Lower extremities - Fasciculations - L" + }, + "vi_motor_tone.le_atroph_r": { + "title": "Lower extremities - Atrophy - R" + }, + "vi_motor_tone.le_atroph_l": { + "title": "Lower extremities - Atrophy - L" + }, + "vi_motor_tone.abnormal_le_spast_r": { + "title": "Lower extremities - Spasticity - R" + }, + "vi_motor_tone.abnormal_le_spast_l": { + "title": "Lower extremities - Spasticity - L" + }, + "vi_motor_tone.abnormal_le_myocl_r": { + "title": "Lower extremities - Myoclonus - R" + }, + "vi_motor_tone.abnormal_le_myocl_l": { + "title": "Lower extremities - Myoclonus - L" + }, + "vi_motor_tone.abnormal_le_fascic_r": { + "title": "Lower extremities - Fasciculations - R" + }, + "vi_motor_tone.abnormal_le_fascic_l": { + "title": "Lower extremities - Fasciculations - L" + }, + "vi_motor_tone.abnormal_le_atroph_r": { + "title": "Lower extremities - Atrophy - R" + }, + "vi_motor_tone.abnormal_le_atroph_l": { + "title": "Lower extremities - Atrophy - L" + }, + "vii_sens_feet.vib_nor_r": { + "title": "Vibration sense - Normal (>10 sec) - R" + }, + "vii_sens_feet.vib_nor_l": { + "title": "Vibration sense - Normal (>10 sec) - L" + }, + "vii_sens_feet.vib_dec_r": { + "title": "Vibration sense - Decreased (< 10 sec) - R" + }, + "vii_sens_feet.vib_dec_l": { + "title": "Vibration sense - Decreased (< 10 sec) - L" + }, + "vii_sens_feet.abnormal_vib_nor_r": { + "title": "Vibration sense - Normal (>10 sec) - R" + }, + "vii_sens_feet.abnormal_vib_nor_l": { + "title": "Vibration sense - Normal (>10 sec) - L" + }, + "vii_sens_feet.abnormal_vib_dec_r": { + "title": "Vibration sense - Decreased (< 10 sec) - R" + }, + "vii_sens_feet.abnormal_vib_dec_l": { + "title": "Vibration sense - Decreased (< 10 sec) - L" + }, + "vii_sens_feet.pps_nor_r": { + "title": "Pin prick sensation - Normal - R" + }, + "vii_sens_feet.pps_nor_l": { + "title": "Pin prick sensation - Normal - L" + }, + "vii_sens_feet.pps_dec_r": { + "title": "Pin prick sensation - Decreased in toes - R" + }, + "vii_sens_feet.pps_dec_l": { + "title": "Pin prick sensation - Decreased in toes - L" + }, + "vii_sens_feet.abnormal_pps_nor_r": { + "title": "Pin prick sensation - Normal - R" + }, + "vii_sens_feet.abnormal_pps_nor_l": { + "title": "Pin prick sensation - Normal - L" + }, + "vii_sens_feet.abnormal_pps_dec_r": { + "title": "Pin prick sensation - Decreased in toes - R" + }, + "vii_sens_feet.abnormal_pps_dec_l": { + "title": "Pin prick sensation - Decreased in toes - L" + }, + "viii_cere_exam.dysmet_r": { + "title": "Finger-nose-finger (Dysmetria) - R" + }, + "viii_cere_exam.dysmet_l": { + "title": "Finger-nose-finger (Dysmetria) - L" + }, + "viii_cere_exam.abnormal_dysmet_r": { + "title": "Finger-nose-finger (Dysmetria) - R" + }, + "viii_cere_exam.abnormal_dysmet_l": { + "title": "Finger-nose-finger (Dysmetria) - L" + }, + "ix_gait.severity": { + "title": "Severity (check one)" + }, + "ix_gait.specify_untest": { + "title": "Specify why untestable" + }, + "ix_gait.type": { + "title": "Type (check one)" + }, + "ix_gait.specify_giatdis": { + "title": "Specify other gait disorder not listed " + }, + "ix_gait.specify_untest_3": { + "title": "Specify why untestable" + }, + "other_abnorm": { + "title": "X. Other abnormalities" + }, + "gen_comm": { + "title": "X. General Comments" + }, + "clin_sig": { + "title": "Clinician's Signature" + } + }, + "boost_values": { + "patient": 1.0, + "adc_form_b.appear": 1.0, + "adc_form_b.abnormal_appear": 1.0, + "ii_gene_phys_exam.headneck": 1.0, + "ii_gene_phys_exam.abnormal_headneck": 1.0, + "ii_gene_phys_exam.chest": 1.0, + "ii_gene_phys_exam.abnormal_3": 1.0, + "ii_gene_phys_exam.heart": 1.0, + "ii_gene_phys_exam.abnormal_heart": 1.0, + "ii_gene_phys_exam.abdom": 1.0, + "ii_gene_phys_exam.abnormal_abdom": 1.0, + "ii_gene_phys_exam.extrem": 1.0, + "ii_gene_phys_exam.abnormal_extrem": 1.0, + "ii_gene_phys_exam.edema": 1.0, + "ii_gene_phys_exam.abnormal_edema": 1.0, + "iii_cran_nerv.ii_eye": 1.0, + "iii_cran_nerv.abnormal_ii_eye": 1.0, + "iii_cran_nerv.iii_iv_vi": 1.0, + "iii_cran_nerv.abnormal_iii_iv_vi": 1.0, + "iii_cran_nerv.v": 1.0, + "iii_cran_nerv.abnormal_v": 1.0, + "iii_cran_nerv.vii": 1.0, + "iii_cran_nerv.abnormal_vii": 1.0, + "iii_cran_nerv.viii": 1.0, + "iii_cran_nerv.abnormal_viii": 1.0, + "iii_cran_nerv.ix_x": 1.0, + "iii_cran_nerv.abnormal_ix_x": 1.0, + "iii_cran_nerv.xi": 1.0, + "iii_cran_nerv.abnormal_xi": 1.0, + "iii_cran_nerv.xii": 1.0, + "iii_cran_nerv.abnormal_xii": 1.0, + "iv_refl.bic_r": 1.0, + "iv_refl.bic_l": 1.0, + "iv_refl.abnormal_bic_r": 1.0, + "iv_refl.abnormal_bic_l": 1.0, + "iv_refl.tri_r": 1.0, + "iv_refl.tri_l": 1.0, + "iv_refl.abnormal_tri_r": 1.0, + "iv_refl.abnormal_tri_l": 1.0, + "iv_refl.patell_r": 1.0, + "iv_refl.patell_l": 1.0, + "iv_refl.abnormal_patell_r": 1.0, + "iv_refl.abnormal_patell_l": 1.0, + "iv_refl.achill_r": 1.0, + "iv_refl.achill_l": 1.0, + "iv_refl.abnormal_achilles_r": 1.0, + "iv_refl.abnormal_achilles_l": 1.0, + "iv_refl.bab_r": 1.0, + "iv_refl.abnormal_bab_r": 1.0, + "iv_refl.bab_l": 1.0, + "iv_refl.abnormal_bab_l": 1.0, + "v_motor_stre.arms_p_r": 1.0, + "v_motor_stre.arms_p_l": 1.0, + "v_motor_stre.arms_d_r": 1.0, + "v_motor_stre.arms_d_l": 1.0, + "v_motor_stre.abnormal_arms_p_r": 1.0, + "v_motor_stre.abnormal_arms_p_l": 1.0, + "v_motor_stre.abnormal_arms_d_r": 1.0, + "v_motor_stre.abnormal_arms_d_l": 1.0, + "v_motor_stre.legs_p_r": 1.0, + "v_motor_stre.legs_p_l": 1.0, + "v_motor_stre.legs_d_r": 1.0, + "v_motor_stre.legs_d_l": 1.0, + "v_motor_stre.abnormal_legs_p_r": 1.0, + "v_motor_stre.abnormal_legs_p_l": 1.0, + "v_motor_stre.abnormal_legs_d_r": 1.0, + "v_motor_stre.abnormal_legs_d_l": 1.0, + "v_motor_stre.pron_r": 1.0, + "v_motor_stre.pron_l": 1.0, + "v_motor_stre.abnormal_pron_r": 1.0, + "v_motor_stre.abnormal_pron_l": 1.0, + "vi_motor_tone.ue_spast_r": 1.0, + "vi_motor_tone.ue_spast_l": 1.0, + "vi_motor_tone.ue_myocl_r": 1.0, + "vi_motor_tone.ue_myocl_l": 1.0, + "vi_motor_tone.ue_fascic_r": 1.0, + "vi_motor_tone.ue_fascic_l": 1.0, + "vi_motor_tone.ue_atroph_r": 1.0, + "vi_motor_tone.ue_atroph_l": 1.0, + "vi_motor_tone.abnormal_ue_spast_r": 1.0, + "vi_motor_tone.abnormal_ue_spast_l": 1.0, + "vi_motor_tone.abnormal_ue_myocl_r": 1.0, + "vi_motor_tone.abnormal_ue_myocl_l": 1.0, + "vi_motor_tone.abnormal_ue_fascic_r": 1.0, + "vi_motor_tone.abnormal_ue_fascic_l": 1.0, + "vi_motor_tone.abnormal_ue_atroph_r": 1.0, + "vi_motor_tone.abnormal_ue_atroph_l": 1.0, + "vi_motor_tone.le_spast_r": 1.0, + "vi_motor_tone.le_spast_l": 1.0, + "vi_motor_tone.le_myocl_r": 1.0, + "vi_motor_tone.le_myocl_l": 1.0, + "vi_motor_tone.le_fascic_r": 1.0, + "vi_motor_tone.le_fascic_l": 1.0, + "vi_motor_tone.le_atroph_r": 1.0, + "vi_motor_tone.le_atroph_l": 1.0, + "vi_motor_tone.abnormal_le_spast_r": 1.0, + "vi_motor_tone.abnormal_le_spast_l": 1.0, + "vi_motor_tone.abnormal_le_myocl_r": 1.0, + "vi_motor_tone.abnormal_le_myocl_l": 1.0, + "vi_motor_tone.abnormal_le_fascic_r": 1.0, + "vi_motor_tone.abnormal_le_fascic_l": 1.0, + "vi_motor_tone.abnormal_le_atroph_r": 1.0, + "vi_motor_tone.abnormal_le_atroph_l": 1.0, + "vii_sens_feet.vib_nor_r": 1.0, + "vii_sens_feet.vib_nor_l": 1.0, + "vii_sens_feet.vib_dec_r": 1.0, + "vii_sens_feet.vib_dec_l": 1.0, + "vii_sens_feet.abnormal_vib_nor_r": 1.0, + "vii_sens_feet.abnormal_vib_nor_l": 1.0, + "vii_sens_feet.abnormal_vib_dec_r": 1.0, + "vii_sens_feet.abnormal_vib_dec_l": 1.0, + "vii_sens_feet.pps_nor_r": 1.0, + "vii_sens_feet.pps_nor_l": 1.0, + "vii_sens_feet.pps_dec_r": 1.0, + "vii_sens_feet.pps_dec_l": 1.0, + "vii_sens_feet.abnormal_pps_nor_r": 1.0, + "vii_sens_feet.abnormal_pps_nor_l": 1.0, + "vii_sens_feet.abnormal_pps_dec_r": 1.0, + "vii_sens_feet.abnormal_pps_dec_l": 1.0, + "viii_cere_exam.dysmet_r": 1.0, + "viii_cere_exam.dysmet_l": 1.0, + "viii_cere_exam.abnormal_dysmet_r": 1.0, + "viii_cere_exam.abnormal_dysmet_l": 1.0, + "ix_gait.severity": 1.0, + "ix_gait.specify_untest": 1.0, + "ix_gait.type": 1.0, + "ix_gait.specify_giatdis": 1.0, + "ix_gait.specify_untest_3": 1.0, + "other_abnorm": 1.0, + "gen_comm": 1.0, + "clin_sig": 1.0 + }, + "changelog": "/profiles/changelogs/physical_exam.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/surgery.json b/src/encoded/schemas/surgery.json index 8143369621..3022941ea0 100644 --- a/src/encoded/schemas/surgery.json +++ b/src/encoded/schemas/surgery.json @@ -47,96 +47,86 @@ "Outside", "Not available" ] - }, - "path_id": { - "title": "Path ID", - "comment": "KCE personnel are allowed to set this value.", - "type": "string", - "permission": "import_items" } }, "facets": { - - "surgery_procedure.procedure_type": { - "title": "Surgery Procedure" - }, - "hospital_location": { - "title": "Surgery Hospital Location" + "surgery_procedure.surgery_treatment": { + "title": "Surgery Management Procedure" }, - "surgery_procedure.nephrectomy_details.type": { - "title": "Nephrectomy Type" + "surgery_procedure.surgery_diagnosis": { + "title": "Surgery Diagnosis Procedure" }, - "surgery_procedure.nephrectomy_details.approach": { - "title": "Nephrectomy Approach" + "surgery_procedure.pathology_report.histology_filter": { + "title": "Histologic Subtype" }, - "nephr_robotic_assist":{ - "title": "Nephrectomy Robotic Assist" + "surgery_procedure.pathology_report.laterality": { + "title": "Tumor Laterality" }, - "pathology_report.pathology_report_tumor_range": { + "surgery_procedure.pathology_report.pathology_report_tumor_range": { "title": "Tumor Size Range" }, - "pathology_report.histology_filter": { - "title": "Histologic Subtype" - }, - "pathology_report.grade": { + "surgery_procedure.pathology_report.grade": { "title": "Tumor Grade" }, - "pathology_report.t_stage": { - "title": "pT Stage" + "surgery_procedure.pathology_report.t_stage": { + "title": "pT Stage (at presentation)" }, - "pathology_report.n_stage": { - "title": "pN Stage" + "surgery_procedure.pathology_report.n_stage": { + "title": "pN Stage (at presentation)" }, - "pathology_report.m_stage": { - "title": "pM Stage" + "surgery_procedure.pathology_report.ajcc_tnm_stage": { + "title": "TNM Stage (at presentation)" }, - "pathology_report.metasis_details.site": { + "surgery_procedure.pathology_report.metasis_details.site": { "title": "Metastatic Site (Pathology)" }, - "pathology_report.metasis_details.type": { + "surgery_procedure.pathology_report.metasis_details.type": { "title": "Metastasis Type (Pathology)" }, - "pathology_report.ajcc_version": { - "title": "AJCC Version" + "surgery_procedure.nephrectomy_details.type": { + "title": "Nephrectomy Type" }, - "pathology_report.ajcc_tnm_stage": { - "title": "TNM Stage" + "surgery_procedure.nephrectomy_details.approach": { + "title": "Nephrectomy Approach" }, - "pathology_report.laterality": { - "title": "Tumor Laterality" + "nephr_robotic_assist":{ + "title": "Nephrectomy Robotic Assist" }, - "pathology_report.focality": { + "surgery_procedure.pathology_report.focality": { "title": "Tumor Focality" }, - "pathology_report.sarcomatoid": { + "surgery_procedure.pathology_report.sarcomatoid": { "title": "Sarcomatoid Change" }, - "pathology_report.necrosis": { + "surgery_procedure.pathology_report.necrosis": { "title": "Tumor Necrosis" }, - "pathology_report.margins": { + "surgery_procedure.pathology_report.margins": { "title": "Margin Status" }, - "pathology_report.lvi": { - "title": "Lymphvascular invasion(LVI)" + "surgery_procedure.pathology_report.lvi": { + "title": "Lymphvascular invasion (LVI)" }, - "pathology_report.micro_perinephric": { + "surgery_procedure.pathology_report.micro_perinephric": { "title": "Perinephric Infiltration" }, - "pathology_report.micro_vein": { + "surgery_procedure.pathology_report.micro_vein": { "title": "Renal Vein Involvement" }, - "pathology_report.micro_adrenal": { + "surgery_procedure.pathology_report.micro_adrenal": { "title": "Ipsilateral Adrenal Gland Involvement" }, - "pathology_report.ihc.antibody": { + "surgery_procedure.pathology_report.micro_sinus": { + "title": "Renal Sinus Involvement" + }, + "surgery_procedure.pathology_report.micro_gerota": { + "title": "Gerotas Fascia Involvement" + }, + "surgery_procedure.pathology_report.ihc.antibody": { "title": "IHC/FISH (Clinical lab)" }, - "pathology_report.ihc.result": { + "surgery_procedure.pathology_report.ihc.result": { "title": "IHC/FISH results" - }, - "status": { - "title": "Status" } }, @@ -144,40 +134,49 @@ "accession": { "title": "Accession" }, + "date": { + "title": "Surgery Date" + }, + "hospital_location": { + "title": "Hospital Location" + }, + "surgery_procedure.surgery_treatment": { + "title": "Surgery Treatment Procedure" + }, "surgery_procedure.procedure_type": { - "title": "Surgery Procedure" + "title": "Procedure Type" }, "surgery_procedure.nephrectomy_details.type": { "title": "Nephrectomy Type" }, - "pathology_report.pathology_report_tumor_range": { + "surgery_procedure.pathology_report.pathology_report_tumor_range": { "title": "Tumor Size Range" }, - "pathology_report.histology": { + "surgery_procedure.pathology_report.histology": { "title": "Histologic Subtype" }, - "pathology_report.grade": { + "surgery_procedure.pathology_report.grade": { "title": "Tumor Grade" }, - "pathology_report.t_stage": { + "surgery_procedure.pathology_report.t_stage": { "title": "pT Stage (at presentation)" }, - "pathology_report.n_stage": { + "surgery_procedure.pathology_report.n_stage": { "title": "pN Stage (at presentation)" }, - "pathology_report.m_stage": { + "surgery_procedure.pathology_report.m_stage": { "title": "pM Stage (at presentation)" }, - "pathology_report.ajcc_version": { + "surgery_procedure.pathology_report.ajcc_version": { "title": "AJCC Version" }, - "pathology_report.ajcc_tnm_stage": { + "surgery_procedure.pathology_report.ajcc_tnm_stage": { "title": "TNM Stage (at presentation)" }, - "pathology_report.laterality": { + "surgery_procedure.pathology_report.laterality": { "title": "Tumor Laterality" }, - "pathology_report.focality": { + "surgery_procedure.pathology_report.focality": { "title": "Tumor Focality" }, "status": { @@ -188,26 +187,26 @@ "accession": 1.0, "patient": 1.0, "surgery_procedure.procedure_type": 1.0, - "pathology_report.t_stage": 1.0, - "pathology_report.n_stage": 1.0, - "pathology_report.m_stage": 1.0, - "pathology_report.metasis_details.site": 1.0, - "pathology_report.metasis_details.type": 1.0, - "pathology_report.ajcc_tnm_stage": 1.0, - "pathology_report.ajcc_version": 1.0, - "pathology_report.laterality":1.0, - "pathology_report.histology": 1.0, - "pathology_report.focality": 1.0, - "pathology_report.grade": 1.0, - "pathology_report.sarcomatoid":1.0, - "pathology_report.necrosis": 1.0, - "pathology_report.margins": 1.0, - "pathology_report.lvi": 1.0, - "pathology_report.micro_perinephric":1.0, - "pathology_report.micro_vein": 1.0, - "pathology_report.micro_adrenal": 1.0, - "pathology_report.ihc.antibody": 1.0, - "pathology_report.ihc.result": 1.0 + "surgery_procedure.pathology_report.t_stage": 1.0, + "surgery_procedure.pathology_report.n_stage": 1.0, + "surgery_procedure.pathology_report.m_stage": 1.0, + "surgery_procedure.pathology_report.metasis_details.site": 1.0, + "surgery_procedure.pathology_report.metasis_details.type": 1.0, + "surgery_procedure.pathology_report.ajcc_tnm_stage": 1.0, + "surgery_procedure.pathology_report.ajcc_version": 1.0, + "surgery_procedure.pathology_report.laterality":1.0, + "surgery_procedure.pathology_report.histology": 1.0, + "surgery_procedure.pathology_report.focality": 1.0, + "surgery_procedure.pathology_report.grade": 1.0, + "surgery_procedure.pathology_report.sarcomatoid":1.0, + "surgery_procedure.pathology_report.necrosis": 1.0, + "surgery_procedure.pathology_report.margins": 1.0, + "surgery_procedure.pathology_report.lvi": 1.0, + "surgery_procedure.pathology_report.micro_perinephric":1.0, + "surgery_procedure.pathology_report.micro_vein": 1.0, + "surgery_procedure.pathology_report.micro_adrenal": 1.0, + "surgery_procedure.pathology_report.ihc.antibody": 1.0, + "surgery_procedure.pathology_report.ihc.result": 1.0 }, "changelog": "/profiles/changelogs/surgery.md" } diff --git a/src/encoded/schemas/tvp_a1.json b/src/encoded/schemas/tvp_a1.json new file mode 100644 index 0000000000..a0713cefa5 --- /dev/null +++ b/src/encoded/schemas/tvp_a1.json @@ -0,0 +1,193 @@ +{ + "title": "NACC Uniform Data Set (UDS) - TELEPHONE FOLLOW-UP FORM A1: SUBJECT DEMOGRAPHICS", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or clinical interviewer based upon co-participant report plus ADC scheduling and medical records. For additional clarification and examples, see UDS Coding Guidebook for Telephone Follow-up Packet, Form A1. Link to href=http://www.alz.washington.edu/NONMEMBER/UDS/DOCS/VER3/UDS3_tfp_guidebook.pdftarget=_blank> NACC Coding Guidebook/a>. Check only one box per question. To print a copy of data collected for this form at previous UDS visit, go to https://www.alz.washington.edu/MEMBER/siteprint.html", + "id": "/profiles/uds_tvp_a1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "tele_birthmo", + "tele_birthyr", + "tele_maristat", + "tele_sex", + "tele_livsitua", + "tele_independ", + "tele_residenc", + "tele_zip" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "tele_birthmo": { + "title": "1a. Subject's month of birth", + "description": "(month (e.g., Jan = 01)(MM))", + "type": "string", + "pattern": "^0?[1-9]$|^[1][0-2]" + }, + "tele_birthyr": { + "title": "1b. Subject's year of birth", + "description": "(YYYY)", + "type": "string", + "pattern": "^[0-9]{4}$" + }, + "tele_maristat": { + "title": "2. Subject's current marital status:", + "type": "string", + "enum": [ + "1 Married", + "2 Widowed", + "3 Divorced", + "4 Separated", + "5 Never married (or marriage was annulled)", + "6 Living as married/domestic partner", + "9 Unknown" + ] + }, + "tele_sex": { + "title": "3. Subject's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "tele_livsitua": { + "title": "4. What is the subject's living situation?", + "type": "string", + "enum": [ + "1 Lives alone", + "2 Lives with one other person: a spouse or partner", + "3 Lives with one other person: a relative, friend, or roommate", + "4 Lives with caregiver who is not spouse/partner, relative, or friend", + "5 Lives with a group (related or not related) in a private residence", + "6 Lives in a group home (e.g., assisted living, nursing home, convent)", + "9 Unknown" + ] + }, + "tele_independ": { + "title": "5. What is the subject's level of independence?", + "type": "string", + "enum": [ + "1 Able to live independently", + "2 Requires some assistance with complex activities", + "3 Requires some assistance with basic activities", + "4 Completely dependent", + "9 Unknown" + ] + }, + "tele_residenc": { + "title": "6. What is the subject's primary type of residence?", + "type": "string", + "enum": [ + "1 Single, or multi-family private residence (apartment, condo, house)", + "2 Retirement community or independent group living", + "3 Assisted living, adult family home, or boarding home", + "4 Skilled nursing facility, nursing home, hospital, or hospice", + "9 Unknown" + ] + }, + "tele_zip": { + "title": "7. ZIP Code (first three digits) of subject's primary residence?", + "description": "((If unknown, leave blank))", + "type": "string", + "pattern": "^[0-9][0-9][0-9]$|unknown" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "tele_birthmo": { + "title": "1a. Subject's month of birth" + }, + "tele_birthyr": { + "title": "1b. Subject's year of birth" + }, + "tele_maristat": { + "title": "2. Subject's current marital status:" + }, + "tele_sex": { + "title": "3. Subject's sex:" + }, + "tele_livsitua": { + "title": "4. What is the subject's living situation?" + }, + "tele_independ": { + "title": "5. What is the subject's level of independence?" + }, + "tele_residenc": { + "title": "6. What is the subject's primary type of residence?" + }, + "tele_zip": { + "title": "7. ZIP Code (first three digits) of subject's primary residence?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "tele_birthmo": { + "title": "1a. Subject's month of birth" + }, + "tele_birthyr": { + "title": "1b. Subject's year of birth" + }, + "tele_maristat": { + "title": "2. Subject's current marital status:" + }, + "tele_sex": { + "title": "3. Subject's sex:" + }, + "tele_livsitua": { + "title": "4. What is the subject's living situation?" + }, + "tele_independ": { + "title": "5. What is the subject's level of independence?" + }, + "tele_residenc": { + "title": "6. What is the subject's primary type of residence?" + }, + "tele_zip": { + "title": "7. ZIP Code (first three digits) of subject's primary residence?" + } + }, + "boost_values": { + "patient": 1.0, + "tele_birthmo": 1.0, + "tele_birthyr": 1.0, + "tele_maristat": 1.0, + "tele_sex": 1.0, + "tele_livsitua": 1.0, + "tele_independ": 1.0, + "tele_residenc": 1.0, + "tele_zip": 1.0 + }, + "changelog": "/profiles/changelogs/tvp_a1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/tvp_a2.json b/src/encoded/schemas/tvp_a2.json new file mode 100644 index 0000000000..6e2edb50f9 --- /dev/null +++ b/src/encoded/schemas/tvp_a2.json @@ -0,0 +1,381 @@ +{ + "title": "NACC UNIFORM DATA SET (UDS) - TELEPHONE FOLLOW-UP Form A2: Co-participant Demographics", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or clinical interviewer based on co-participant's report. For additional clarification and examples, see UDS Coding Guidebook for Telephone Follow-up Packet, Form A2. Link to NACC Coding Guidebook Check only one box per question To print a copy of data collected for this form at previous UDS visit, go to https://www.alz.washington.edu/MEMBER/siteprint.html", + "id": "/profiles/uds_tvp_a2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "tele_inbirmo", + "tele_inbiryr", + "tele_insex", + "tele_newinf", + "tele_inhisp", + "tele_inhispor", + "tele_inrace", + "tele_inrasec", + "tele_inrater", + "tele_ineduc", + "tele_inrelto", + "tele_inknown", + "tele_inlivwth", + "tele_inrely" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "tele_inbirmo": { + "title": "1a. Co-participant's month of birth", + "description": "(month (e.g., Jan = 01)(MM); 99 = Unknown)", + "type": "string", + "pattern": "^0?[1-9]$|^1[0-2]$|^99$" + }, + "tele_inbiryr": { + "title": "1b. Co-participant's year of birth", + "description": "((YYYY) 1875 to (current year minus 15), 9999 = Unknown)", + "type": "string", + "pattern": "^[1][8][7][5-9]|[1][8][8-9][0-9]|[1][9][0-9][0-9]|[2][0][0-9][0-9]|[9999]$" + }, + "tele_insex": { + "title": "2. Co-participant's sex:", + "type": "string", + "enum": [ + "1 Male", + "2 Female" + ] + }, + "tele_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 9)", + "1 Yes" + ] + }, + "tele_inhisp": { + "title": "4. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?", + "type": "string", + "enum": [ + "0 No (If No, SKIP TO QUESTION 5)", + "1 Yes", + "9 Unknown (If Unknown, SKIP TO QUESTION 5)" + ] + }, + "tele_inhispor": { + "title": "4a. What are the co-participant's reported origins?", + "type": "string", + "enum": [ + "1 Mexican, Chicano, or Mexican-American", + "2 Puerto Rican", + "3 Cuban", + "4 Dominican", + "5 Central American", + "6 South American", + "50 Other (specify)", + "99 Unknown" + ] + }, + "tele_inhispox": { + "title": "4a1. Other (specify co-participant's reported origins):", + "type": "string" + }, + "tele_inrace": { + "title": "5. What does the co-participant report as his or her race?", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "99 Unknown" + ] + }, + "tele_inracex": { + "title": "5a. Other (specify co-participant race):", + "type": "string" + }, + "tele_inrasec": { + "title": "6. What additional race does the co-participant report?", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or Other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "tele_inrasecx": { + "title": "6a. Other (specify co-participant additional race):", + "type": "string" + }, + "tele_inrater": { + "title": "7. What additional race, beyond those reported in Questions 5 and 6, does the co-participant report?", + "type": "string", + "enum": [ + "1 White", + "2 Black or African American", + "3 American Indian or Alaska Native", + "4 Native Hawaiian or other Pacific Islander", + "5 Asian", + "50 Other (specify)", + "88 None Reported", + "99 Unknown" + ] + }, + "tele_inraterx": { + "title": "7a. Other (specify co-participant additional race beyond question 5 and 6):", + "type": "string" + }, + "tele_ineduc": { + "title": "8. Co-participant's years of education- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed", + "description": "(0-36, 99=unknown); 12 = high school or GED \n16 = bachelor's degree \n18 = master's degree \n20 = doctorate \n99 = unknown", + "type": "string", + "pattern": "^[0-2]?[0-9]$|^3[0-6]$|^99$" + }, + "tele_inrelto": { + "title": "9. What is co-participant's relationship to the subject?", + "type": "string", + "enum": [ + "1 Spouse, partner, or companion (include ex-spouse, ex-partner, fiance(e), boyfriend, girlfriend)", + "2 Child (by blood or through marriage or adoption)", + "3 Sibling (by blood or through marriage or adoption)", + "4 Other relative (by blood or through marriage or adoption)", + "5 Friend, neighbor, or someone known through family, friends, work or community (e.g. church)", + "6 Paid caregiver, health care provider, or clinician" + ] + }, + "tele_inknown": { + "title": "9a. How long has the co-participant know the subject?", + "description": "((Years) 0 - 120, 999 = Unknown)", + "type": "string", + "pattern": "^[0-9]?[0-9]|[1][0-1][0-9]|[1][2][0]|999$" + }, + "tele_inlivwth": { + "title": "10. Does the co-participant live with the subject?", + "type": "string", + "enum": [ + "0 No", + "1 Yes (If Yes, SKIP TO QUESTION 11)" + ] + }, + "tele_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:", + "type": "string", + "enum": [ + "1 Daily", + "2 At least 3 times per week", + "3 Weekly", + "4 At least 3 times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "tele_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:", + "type": "string", + "enum": [ + "1 Daily", + "2 At least 3 times per week", + "3 Weekly", + "4 At least 3 times per month", + "5 Monthly", + "6 Less than once a month" + ] + }, + "tele_inrely": { + "title": "11. Is there a question about the co-participant's reliability?", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "tele_inbirmo": { + "title": "1a. Co-participant's month of birth" + }, + "tele_inbiryr": { + "title": "1b. Co-participant's year of birth" + }, + "tele_insex": { + "title": "2. Co-participant's sex:" + }, + "tele_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?" + }, + "tele_inhisp": { + "title": "4. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "tele_inhispor": { + "title": "4a. What are the co-participant's reported origins?" + }, + "tele_inhispox": { + "title": "4a1. Other (specify co-participant's reported origins):" + }, + "tele_inrace": { + "title": "5. What does the co-participant report as his or her race?" + }, + "tele_inracex": { + "title": "5a. Other (specify co-participant race):" + }, + "tele_inrasec": { + "title": "6. What additional race does the co-participant report?" + }, + "tele_inrasecx": { + "title": "6a. Other (specify co-participant additional race):" + }, + "tele_inrater": { + "title": "7. What additional race, beyond those reported in Questions 5 and 6, does the co-participant report?" + }, + "tele_inraterx": { + "title": "7a. Other (specify co-participant additional race beyond question 5 and 6):" + }, + "tele_ineduc": { + "title": "8. Co-participant's years of education- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed" + }, + "tele_inrelto": { + "title": "9. What is co-participant's relationship to the subject?" + }, + "tele_inknown": { + "title": "9a. How long has the co-participant know the subject?" + }, + "tele_inlivwth": { + "title": "10. Does the co-participant live with the subject?" + }, + "tele_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:" + }, + "tele_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:" + }, + "tele_inrely": { + "title": "11. Is there a question about the co-participant's reliability?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "tele_inbirmo": { + "title": "1a. Co-participant's month of birth" + }, + "tele_inbiryr": { + "title": "1b. Co-participant's year of birth" + }, + "tele_insex": { + "title": "2. Co-participant's sex:" + }, + "tele_newinf": { + "title": "3. Is this a new co-participant -- i.e., one who was not a co-participant at any past UDS visit?" + }, + "tele_inhisp": { + "title": "4. Does the co-participant report being of Hispanic/Latino ethnicity (i.e., having origins from a mainly Spanish-speaking Latin American country), regardless of race?" + }, + "tele_inhispor": { + "title": "4a. What are the co-participant's reported origins?" + }, + "tele_inhispox": { + "title": "4a1. Other (specify co-participant's reported origins):" + }, + "tele_inrace": { + "title": "5. What does the co-participant report as his or her race?" + }, + "tele_inracex": { + "title": "5a. Other (specify co-participant race):" + }, + "tele_inrasec": { + "title": "6. What additional race does the co-participant report?" + }, + "tele_inrasecx": { + "title": "6a. Other (specify co-participant additional race):" + }, + "tele_inrater": { + "title": "7. What additional race, beyond those reported in Questions 5 and 6, does the co-participant report?" + }, + "tele_inraterx": { + "title": "7a. Other (specify co-participant additional race beyond question 5 and 6):" + }, + "tele_ineduc": { + "title": "8. Co-participant's years of education- use the codes below to report the level achieved; if an attempted level is not completed, enter the number of years completed" + }, + "tele_inrelto": { + "title": "9. What is co-participant's relationship to the subject?" + }, + "tele_inknown": { + "title": "9a. How long has the co-participant know the subject?" + }, + "tele_inlivwth": { + "title": "10. Does the co-participant live with the subject?" + }, + "tele_invisits": { + "title": "10a. If no, approximate frequency of in-person visits:" + }, + "tele_incalls": { + "title": "10b. If no, approximate frequency of telephone contact:" + }, + "tele_inrely": { + "title": "11. Is there a question about the co-participant's reliability?" + } + }, + "boost_values": { + "patient": 1.0, + "tele_inbirmo": 1.0, + "tele_inbiryr": 1.0, + "tele_insex": 1.0, + "tele_newinf": 1.0, + "tele_inhisp": 1.0, + "tele_inhispor": 1.0, + "tele_inhispox": 1.0, + "tele_inrace": 1.0, + "tele_inracex": 1.0, + "tele_inrasec": 1.0, + "tele_inrasecx": 1.0, + "tele_inrater": 1.0, + "tele_inraterx": 1.0, + "tele_ineduc": 1.0, + "tele_inrelto": 1.0, + "tele_inknown": 1.0, + "tele_inlivwth": 1.0, + "tele_invisits": 1.0, + "tele_incalls": 1.0, + "tele_inrely": 1.0 + }, + "changelog": "/profiles/changelogs/tvp_a2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/tvp_a3.json b/src/encoded/schemas/tvp_a3.json new file mode 100644 index 0000000000..c70c478a49 --- /dev/null +++ b/src/encoded/schemas/tvp_a3.json @@ -0,0 +1,4749 @@ +{ + "title": "NACC Uniform Data Set (UDS) - TELEPHONE FOLLOW-UP FORM A3: SUBJECT FAMILY HISTORY", + "description": "INSTRUCTIONS: This form is to be completed by a clinician with experience in evaluating patients with neurological\n problems and psychiatric conditions. For additional clarification and examples, see UDS Coding Guidebook for\n Telephone Follow-up Packet, Form A3. Link to NACC Coding Guidebook\n SPECIAL INSTRUCTIONS for subjects who are receiving UDS Version 3 of Form A3 for the first time:\n NOTE: A subject is receiving UDS v3 Form A3 for the first time if:\n No A3 data has been submitted yet for this subject -OR-\n A3 data has been submitted for this subject, but it was collected using UDS\n v2\n For such subjects, you must fill out this form in its entirety, meaning:\n 1. You must answer 1=Yes to Question 1 on genetic mutations and\n complete 2a-4b.\n 2. You must answer 1=Yes to Question 5 on parents and complete 5a-5b.\n 3. You must answer 1=Yes to Question 6a on siblings and complete\n 6aa-6at, as appropriate.\n 4. You must answer 1=Yes to Question 7a on children and complete\n 7aa=7ao, as appropriate.\n Corrections or new information on previously submitted family members - For family members who were denoted as\n being \"affected\" with a neurological or psychiatric condition or who were not affected at a previous UDS visit, any\n corrections to their data should be made to that previous A3 Form. Any newly obtained information (e.g., new\n mutation information, new diagnoses, new method of evaluation), including for family members previously reported\n as being affeted at a past UDS visit, should be indicated on this form and should not be submitted as a correction to\n a previously submitted Form A3.\n A summary of all previously submitted family history data can be found at:\n https://www.alz.washington.edu/MEMBERS/siteprint.html.\n The pdf below gives details for Method of Evaluation.\n ", + "id": "/profiles/uds_tvp_a3.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "tele_genetic_mutation" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "tele_genetic_mutation": { + "title": "GENETIC MUTATIONS", + + "type": "object", + "properties": { + "tele_nwinfmut": { + "title": "1. Since the last visit, is new information available concerning genetic mutations addressed by Questions 2a through 4b, below?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 5)", + "1 Yes", + "9 Unknown (SKIP TO QUESTION 5)" + ] + }, + "tele_fadmut": { + "title": "2a. In this family, is there evidence for an AD mutation? If Yes, select predominant mutation.", + "description": "NOTE: APOE Should not be reported here.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 3a)", + "1 Yes, APP", + "2 Yes, PS-1 (PSEN-1)", + "3 Yes, PS-2 (PSEN-2)", + "8 Yes, Other (specify)", + "9 Unknown whether mutation exists (SKIP TO QUESTION 3a)" + ] + }, + "tele_fadmutx": { + "title": "2a1. Other (specify predominant AD mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "tele_fadmuso": { + "title": "2b. Source of evidence for AD mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (specify)", + "9 Unknown" + ] + }, + "tele_fadmusox": { + "title": "2b1. Other (specify the other source of evidence -AD mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "tele_fftdmut": { + "title": "3a. In this family, is there evidence for an FTLD mutation? If Yes, select predominant mutation.", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 4a)", + "1 Yes, MAPT", + "2 Yes, PGRN", + "3 Yes, C9orf72", + "4 Yes, FUS", + "8 Yes, Other (specify)", + "9 Unknown whether mutation exists (SKIP TO QUESTION 4a)" + ] + }, + "tele_fftdmutx": { + "title": "3a1. Other (specify the predominant FTLD mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "tele_fftdmuso": { + "title": "3b. Source of evidence for FTLD mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (specify)", + "9 Unknown" + ] + }, + "tele_fftdmusx": { + "title": "3b1. Other (Specify the other source of evidence -FTLD mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "tele_fothmut": { + "title": "4a. In this family, is there evidence for a mutation other than an AD or FTLD mutation?", + "description": "(If No or Unknown, SKIP TO QUESTION 5)", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 5)", + "1 Yes (specify)", + "9 Unknown (SKIP TO QUESTION 5)" + ] + }, + "tele_fothmutx": { + "title": "4a1. Other (specify the other mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + }, + "tele_fothmuso": { + "title": "4b. Source of evidence for other mutation (check one):", + "type": "string", + "enum": [ + "1 Family report (no test documentation available)", + "2 Commercial test documentation", + "3 Research lab test documentation", + "8 Other (specify)", + "9 Unknown" + ] + }, + "tele_fothmusx": { + "title": "4b1. Other (Specify the other source of evidence for other mutation in this family)", + "description": "Any text or numbers with the exception of single quotes('), double quotes (), ampersnads (&), and percentage signs (%).", + "type": "string" + } + } + }, + "tele_note_a3": { + "title": "BIOLOGICAL PARENTS:", + "description": "If birth year is unknown, please provide an approximate year on the Initial Visit Form A3 and ensure that it is consistently reported on all Forms A3 submitted (Initial Visit and Follow-up). If it is impossible for the subject and co-participant to estimate year of birth, enter 9999=Unknown. For any biological parent with a neurological or psychiatric problem, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all available evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. If the parent has no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. pdf below contains codes for Method of Evaluation", + "type": "object", + "properties": { + "tele_nwinfpar": { + "title": "5. Since the last UDS visit, is new information available concerning the status of the subject's biological mother or father?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 6)", + "1 Yes (COMPLETE QUESTIONS 5a-5b, AS APPLICABLE)" + ] + }, + "tele_mother": { + "title": "5a. MOTHER:", + + "type": "object", + "properties": { + "tele_mommob": { + "title": "5a1. Mother - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_momyob": { + "title": "5a2. Mother - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_momdage": { + "title": "5a3. Mother - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_momneur": { + "title": "5a4. Mother - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_momprdx": { + "title": "5a5. Mother - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_mommoe": { + "title": "5a6. Mother - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_momageo": { + "title": "5a7. Mother - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_father": { + "title": "", + + "type": "object", + "properties": { + "tele_dadmob": { + "title": "5b1. Father - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_dadyob": { + "title": "5b2. Father - Birth year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_daddage": { + "title": "5b3. Father - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_dadneur": { + "title": "5b4. Father - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_dadprdx": { + "title": "5b5. Father - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_dadmoe": { + "title": "5b6. Father - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_dadageo": { + "title": "5b7. Father - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + } + } + }, + "tele_note_a3_2": { + "title": "Year of birth for full siblings and biological children:", + "description": "If birth year is unknown, please provide an approximate year on UDS Initial Visit Form A3 and UDS Follow-up Visit Form A3 so that the sibling/child with unknown birth year ends up in correct birth order relative to the other siblings/children. Example: A subject is the oldest of three children. The subject was born in 1940 and the middle sibling in 1943; the youngest sibling's birth year is unknown. An approximate birth year of 1944 or later should be assigned to the youngest sibling. Use that same birth year on FTLD Module Form A3a, if applicable, and across all UDS visits so that any new information on a particular sibling or child can be linked to previously submitted information. If it is impossible for the subject and co-participant to estimate year of birth, enter 9999=Unknown.", + "type": "object", + "properties": { + "tele_full_siblings": { + "title": "FULL SIBLINGS:", + "description": "For any full sibling with a neurological or psychiatric problem, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all available evidence, enter 9=unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. If the sibling has no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.", + "type": "object", + "properties": { + "tele_sibs": { + "title": "6. How many full siblings does the subject have?", + "description": "If subject has no full siblings, SKIP TO QUESTION 7", + "type": "string" + }, + "tele_nwinfsib": { + "title": "6a. Since the last UDS visit, is new information available concerning the status of the subject's siblings?", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 7)", + "1 Yes (COMPLETE QUESTIONS 6aa-6at, AS APPLICABLE)" + ] + }, + "tele_sib1": { + "title": "Sibling 1", + + "type": "object", + "properties": { + "tele_sib1mob": { + "title": "6a1. Sibling 1 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib1yob": { + "title": "6a2. Sibling 1 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib1agd": { + "title": "6a3. Sibling 1 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib1neu": { + "title": "6a4. Sibling 1 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib1pdx": { + "title": "6a5. Sibling 1 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib1moe": { + "title": "6a6. Sibling 1 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib1ago": { + "title": "6a7. Sibling 1 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib2": { + "title": "Sibling 2", + + "type": "object", + "properties": { + "tele_sib2mob": { + "title": "6b1. Sibling 2 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib2yob": { + "title": "6b2. Sibling 2 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib2agd": { + "title": "6b3. Sibling 2 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib2neu": { + "title": "6b4. Sibling 2 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib2pdx": { + "title": "6b5. Sibling 2 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib2moe": { + "title": "6b6. Sibling 2 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib2ago": { + "title": "6b7. Sibling 2 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib3": { + "title": "Sibling 3", + + "type": "object", + "properties": { + "tele_sib3mob": { + "title": "6c1. Sibling 3 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib3yob": { + "title": "6c2. Sibling 3 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib3agd": { + "title": "6c3. Sibling 3 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib3neu": { + "title": "6c4. Sibling 3 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib3pdx": { + "title": "6c5. Sibling 3 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib3moe": { + "title": "6c6. Sibling 3 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib3ago": { + "title": "6c7. Sibling 3 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib4": { + "title": "Sibling 4", + + "type": "object", + "properties": { + "tele_sib4mob": { + "title": "6d1. Sibling 4 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib4yob": { + "title": "6d2. Sibling 4 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib4agd": { + "title": "6d3. Sibling 4 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib4neu": { + "title": "6d4. Sibling 4 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib4pdx": { + "title": "6d5. Sibling 4 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib4moe": { + "title": "6d6. Sibling 4 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib4ago": { + "title": "6d7. Sibling 4 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib5": { + "title": "Sibling 5", + + "type": "object", + "properties": { + "tele_sib5mob": { + "title": "6e1. Sibling 5 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib5yob": { + "title": "6e2. Sibling 5 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib5agd": { + "title": "6e3. Sibling 5 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib5neu": { + "title": "6e4. Sibling 5 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib5pdx": { + "title": "6e5. Sibling 5 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib5moe": { + "title": "6e6. Sibling 5 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib5ago": { + "title": "6e7. Sibling 5 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib6": { + "title": "Sibling 6", + + "type": "object", + "properties": { + "tele_sib6mob": { + "title": "6f1. Sibling 6 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib6yob": { + "title": "6f2. sibling 6 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib6agd": { + "title": "6f3. Sibling 6 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib6neu": { + "title": "6f4. Sibling 6 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib6pdx": { + "title": "6f5. Sibling 6 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib6moe": { + "title": "6f6. Sibling 6 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib6ago": { + "title": "6f7. Sibling 6 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib7": { + "title": "Sibling 7", + + "type": "object", + "properties": { + "tele_sib7mob": { + "title": "6g1. Sibling 7 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib7yob": { + "title": "6g2. Sibling 7 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib7agd": { + "title": "6g3. Sibling 7 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib7neu": { + "title": "6g4. Sibling 7 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib7pdx": { + "title": "6g5. Sibling 7 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib7moe": { + "title": "6g6. Sibling 7 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib7ago": { + "title": "6g7. Sibling 7 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib8": { + "title": "Sibling 8", + + "type": "object", + "properties": { + "tele_sib8mob": { + "title": "6h1. Sibling 8 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib8yob": { + "title": "6h2. Sibling 8 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib8agd": { + "title": "6h3. Sibling 8 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib8neu": { + "title": "6h4. Sibling 8 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib8pdx": { + "title": "6h5. Sibling 8 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib8moe": { + "title": "6h6. Sibling 8 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib8ago": { + "title": "6h7. Sibling 8 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib9": { + "title": "Sibling 9", + + "type": "object", + "properties": { + "tele_sib9mob": { + "title": "6i1. Sibling 9 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib9yob": { + "title": "6i2. Sibling 9 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib9agd": { + "title": "6i3. Sibling 9 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib9neu": { + "title": "6i4. Sibling 9 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib9pdx": { + "title": "6i5. Sibling 9 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib9moe": { + "title": "6i6. Sibling 9 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib9ago": { + "title": "6i7. Sibling 9 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib10": { + "title": "Sibling 10", + + "type": "object", + "properties": { + "tele_sib10mob": { + "title": "6j1. Sibling 10 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib10yob": { + "title": "6j2. Sibling 10 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib10agd": { + "title": "6j3. Sibling 10 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib10neu": { + "title": "6j4. Sibling 10 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib10pdx": { + "title": "6j5. Sibling 10 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib10moe": { + "title": "6j6. Sibling 10 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib10ago": { + "title": "6j7. Sibling 10 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib11": { + "title": "Sibling 11", + + "type": "object", + "properties": { + "tele_sib11mob": { + "title": "6k1. Sibling 11 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib11yob": { + "title": "6k2. Sibling 11 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib11agd": { + "title": "6k3. Sibling 11 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib11neu": { + "title": "6k4. Sibling 11 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib11pdx": { + "title": "6k5. Sibling 11 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib11moe": { + "title": "6k6. Sibling 11 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib11ago": { + "title": "6k7. Sibling 11 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib12": { + "title": "Sibling 12", + + "type": "object", + "properties": { + "tele_sib12mob": { + "title": "6l1. Sibling 12 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib12yob": { + "title": "6l2. Sibling 12 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib12agd": { + "title": "6l3. Sibling 12 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib12neu": { + "title": "6l4. Sibling 12 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib12pdx": { + "title": "6l5. Sibling 12 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib12moe": { + "title": "6l6. Sibling 12 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib12ago": { + "title": "6l7. Sibling 12 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib13": { + "title": "Sibling 13", + + "type": "object", + "properties": { + "tele_sib13mob": { + "title": "6m1. Sibling 13 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib13yob": { + "title": "6m2. Sibling 13 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib13agd": { + "title": "6m3. Sibling 13 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib13neu": { + "title": "6m4. Sibling 13 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib13pdx": { + "title": "6m5. Sibling 13 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib13moe": { + "title": "6m6. Sibling 13 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib13ago": { + "title": "6m7. Sibling 13 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib14": { + "title": "Sibling 14", + + "type": "object", + "properties": { + "tele_sib13mob": { + "title": "6m1. Sibling 13 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib13yob": { + "title": "6m2. Sibling 13 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib13agd": { + "title": "6m3. Sibling 13 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib13neu": { + "title": "6m4. Sibling 13 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib13pdx": { + "title": "6m5. Sibling 13 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib13moe": { + "title": "6m6. Sibling 13 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib13ago": { + "title": "6m7. Sibling 13 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib15": { + "title": "Sibling 15", + + "type": "object", + "properties": { + "tele_sib15mob": { + "title": "6o1. Sibling 15 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib15yob": { + "title": "6o2. Sibling 15 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib15agd": { + "title": "6o3. Sibling 15 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib15neu": { + "title": "6o4. Sibling 15 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib15pdx": { + "title": "6o5. Sibling 15 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib15moe": { + "title": "6o6. Sibling 15 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib15ago": { + "title": "6o7. Sibling 15 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib16": { + "title": "Sibling 16", + + "type": "object", + "properties": { + "tele_sib16mob": { + "title": "6p1. Sibling 16 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib16yob": { + "title": "6p2. Sibling 16 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib16agd": { + "title": "6p3. Sibling 16 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib16neu": { + "title": "6p4. Sibling 16 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib16pdx": { + "title": "6p5. Sibling 16 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib16moe": { + "title": "6p6. Sibling 16 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib16ago": { + "title": "6p7. Sibling 16 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib17": { + "title": "Sibling 17", + + "type": "object", + "properties": { + "tele_sib17mob": { + "title": "6q1. Sibling 17 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib17yob": { + "title": "6q2. Sibling 17 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib17agd": { + "title": "6q3. Sibling 17 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib17neu": { + "title": "6q4. Sibling 17 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "telesib17pdx": { + "title": "6q5. Sibling 17 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib17moe": { + "title": "6q6. Sibling 17 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib17ago": { + "title": "6q7. Sibling 17 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib18": { + "title": "Sibling 18", + + "type": "object", + "properties": { + "tele_sib18mob": { + "title": "6r1. Sibling 18 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib18yob": { + "title": "6r2. Sibling 18 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib18agd": { + "title": "6r3. Sibling 18 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib18neu": { + "title": "6r4. Sibling 18 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib18pdx": { + "title": "6r5. Sibling 18 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib18moe": { + "title": "6r6. Sibling 18 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib18ago": { + "title": "6r7. Sibling 18 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib19": { + "title": "Sibling 19", + + "type": "object", + "properties": { + "tele_sib19mob": { + "title": "6s1. Sibling 19 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib19yob": { + "title": "6s2. Sibling 19 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib19agd": { + "title": "6s3. Sibling 19 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib19neu": { + "title": "6s4. Sibling 19 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib19pdx": { + "title": "6s5. Sibling 19 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib19moe": { + "title": "6s6. Sibling 19 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib19ago": { + "title": "6s7. Sibling 19 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_sib20": { + "title": "Sibling 20", + + "type": "object", + "properties": { + "tele_sib20mob": { + "title": "6t1. Sibling 20 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_sib20yob": { + "title": "6t2. Sibling 20 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_sib20agd": { + "title": "6t3. Sibling 20 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_sib20neu": { + "title": "6t4. Sibling 20 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_sib20pdx": { + "title": "6t5. Sibling 20 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_sib20moe": { + "title": "6t6. Sibling 20 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_sib20ago": { + "title": "6t7. Sibling 20 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + } + } + }, + "tele_biological_children": { + "title": "BIOLOGICAL CHILDREN:", + "description": "For any biological child with a neurological or psychiatric problem, the entire row must be filled out. If the clinician cannot determine the primary neurological problem/psychiatric condition after reviewing all avilable evidence, enter 9=Unknown in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row. If the child has no neurological or psychiatric problem, enter 8=N/A - no neurological problem or psychiatric condition in the Primary neurological problem/psychiatric condition column, and then skip the subsequent questions in the row.", + "type": "object", + "properties": { + "tele_kids": { + "title": "7. How many biological children does the subject have?", + "description": "If subject has no biological children, END FORM HERE(99=Unknown)", + "type": "string" + }, + "tele_nwinfkid": { + "title": "7a. Since the last UDS visit, is new information available concerning the status of the subject's biological children?", + "type": "string", + "enum": [ + "0 No (END FORM HERE)", + "1 Yes (COMPLETE QUESTIONS 7aa-7ao, AS APPLICABLE)" + ] + }, + "tele_child1": { + "title": "Child 1", + + "type": "object", + "properties": { + "tele_kid1mob": { + "title": "7a1. Child 1 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid1yob": { + "title": "7a2. Child 1 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid1agd": { + "title": "7a3. Child 1 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid1neu": { + "title": "7a4. Child 1 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid1pdx": { + "title": "7a5. Child 1 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid1moe": { + "title": "7a6. Child 1 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid1ago": { + "title": "7a7. Child 1 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child2": { + "title": "Child 2", + + "type": "object", + "properties": { + "tele_kid2mob": { + "title": "7b1. Child 2 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid2yob": { + "title": "7b2. Child 2 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid2agd": { + "title": "7b3. Child 2 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid2neu": { + "title": "7b4. Child 2 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid2pdx": { + "title": "7b5. Child 2 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid2moe": { + "title": "7b6. Child 2 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid2ago": { + "title": "7b7. Child 2 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child3": { + "title": "Child 3", + + "type": "object", + "properties": { + "tele_kid3mob": { + "title": "7c1. Child 3 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid3yob": { + "title": "7c2. Child 3 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid3agd": { + "title": "7c3. Child 3 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid3neu": { + "title": "7c4. Child 3 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid3pdx": { + "title": "7c5. Child 3 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid3moe": { + "title": "7c6. Child 3 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid3ago": { + "title": "7c7. Child 3 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child4": { + "title": "Child 4", + + "type": "object", + "properties": { + "tele_kid4mob": { + "title": "7d1. Child 4 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid4yob": { + "title": "7d2. Child 4 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid4agd": { + "title": "7d3. Child 4 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid4neu": { + "title": "7d4. Child 4 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid4pdx": { + "title": "7d5. Child 4 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid4moe": { + "title": "7d6. Child 4 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid4ago": { + "title": "7d7. Child 4 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child5": { + "title": "Child 5", + + "type": "object", + "properties": { + "tele_kid5mob": { + "title": "7e1. Child 5 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid5yob": { + "title": "7e2. Child 5 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid5agd": { + "title": "7e3. Child 5 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid5neu": { + "title": "7e4. Child 5 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid5pdx": { + "title": "7e5. Child 5 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid5moe": { + "title": "7e6. Child 5 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid5ago": { + "title": "7e7. Child 5 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child6": { + "title": "Child 6", + + "type": "object", + "properties": { + "tele_kid6mob": { + "title": "7f1. Child 6 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid6yob": { + "title": "7f2. Child 6 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid6agd": { + "title": "7f3. Child 6 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid6neu": { + "title": "7f4. Child 6 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid6pdx": { + "title": "7f5. Child 6 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid6moe": { + "title": "7f6. Child 6 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid6ago": { + "title": "7f7. Child 6 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child7": { + "title": "Child 7", + + "type": "object", + "properties": { + "tele_kid7mob": { + "title": "7g1. Child 7 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid7yob": { + "title": "7g2. Child 7 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid7agd": { + "title": "7g3. Child 7 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid7neu": { + "title": "7g4. Child 7 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid7pdx": { + "title": "7g5. Child 7 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid7moe": { + "title": "7g6. Child 7 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid7ago": { + "title": "7g7. Child 7 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child8": { + "title": "Child 8", + + "type": "object", + "properties": { + "tele_kid8mob": { + "title": "7h1. Child 8 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid8yob": { + "title": "7h2. Child 8 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid8agd": { + "title": "7h3. Child 8 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid8neu": { + "title": "7h4. Child 8 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid8pdx": { + "title": "7h5. Child 8 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid8moe": { + "title": "7h6. Child 8 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid8ago": { + "title": "7h7. Child 8 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child9": { + "title": "Child 9", + + "type": "object", + "properties": { + "tele_kid9mob": { + "title": "7i1. Child 9 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid9yob": { + "title": "7i2. Child 9 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "telekid9agd": { + "title": "7i3. Child 9 - Age at death", + "description": "888 = N/A,999 = Unknown", + "comment": "", + "type": "string" + }, + "tele_kid9neu": { + "title": "7i4. Child 9 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid9pdx": { + "title": "7i5. Child 9 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid9moe": { + "title": "7i6. Child 9 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid9ago": { + "title": "7i7. Child 9 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child10": { + "title": "Child 10", + + "type": "object", + "properties": { + "tele_kid10mob": { + "title": "7j1. Child 10 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid10yob": { + "title": "7j2. Child 10 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid10agd": { + "title": "7j3. Child 10 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid10neu": { + "title": "7j4. Child 10 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid10pdx": { + "title": "7j5. Child 10 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid10moe": { + "title": "7j6. Child 10 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid10ago": { + "title": "7j7. Child 10 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child11": { + "title": "Child 11", + + "type": "object", + "properties": { + "tele_kid11mob": { + "title": "7k1. Child 11 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid11yob": { + "title": "7k2. Child 11 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid11agd": { + "title": "7k3. Child 11 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid11neu": { + "title": "7k4. Child 11 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid11pdx": { + "title": "7k5. Child 11 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid11moe": { + "title": "7k6. Child 11 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid11ago": { + "title": "7k7. Child 11 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child12": { + "title": "Child 12", + + "type": "object", + "properties": { + "tele_kid12mob": { + "title": "7l1. Child 12 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid12yob": { + "title": "7l2. Child 12 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid12agd": { + "title": "7l3. Child 12 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid12neu": { + "title": "7l4. Child 12 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid12pdx": { + "title": "7l5. Child 12 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid12moe": { + "title": "7l6. Child 12 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid12ago": { + "title": "7l7. Child 12 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child13": { + "title": "Child 13", + + "type": "object", + "properties": { + "tele_kid13mob": { + "title": "7m1. Child 13 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid13yob": { + "title": "7m2. Child 13 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid13agd": { + "title": "7m3. Child 13 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid13neu": { + "title": "7m4. Child 13 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid13pdx": { + "title": "7m5. Child 13 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid13moe": { + "title": "7m6. Child 13 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid13ago": { + "title": "7m7. Child 13 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child14": { + "title": "Child 14", + + "type": "object", + "properties": { + "tele_kid14mob": { + "title": "7n1. Child 14 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid14yob": { + "title": "7n2. Child 14 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid14agd": { + "title": "7n3. Child 14 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid14neu": { + "title": "7n4. Child 14 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid14pdx": { + "title": "7n5. Child 14 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid14moe": { + "title": "7n6. Child 14 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid14ago": { + "title": "7n7. Child 14 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + }, + "tele_child15": { + "title": "Child 15", + + "type": "object", + "properties": { + "tele_kid15mob": { + "title": "7o1. Child 15 - Birth month", + "description": "99 = unknown", + "type": "string", + "pattern": "^[0]?[1-9]$|^1[0-2]$|^99$" + }, + "tele_kid15yob": { + "title": "7o2. Child 15 - Birth Year", + "description": "(Date can be submitted as YYYY.((YYYY) 1875 to 2099, 9999 = Unknown)", + "type": "string", + "pattern": "^187[5-9]|18[8-9][0-9]|19[0-9][0-9]|20[0-9][0-9]|9999$" + }, + "tele_kid15agd": { + "title": "7o3. Child 15 - Age at death", + "description": "888 = N/A,999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$|^888$" + }, + "tele_kid15neu": { + "title": "7o4. Child 15 - Primary neurological problem/psychiatric condition*", + "description": "*CODES for neurological problems and psychiatric conditions", + "type": "string", + "enum": [ + "1 Cognitive impairment/behavior change", + "2 Parkinsonism", + "3 ALS", + "4 Other neurologic condition such as multiple sclerosis or stroke", + "5 Psychiatric condition such as schizophrenia, bipolar disorder, alcoholism, or depression", + "8 N/A, no neurological problem or psychiatric condition", + "9 Unknown" + ] + }, + "tele_kid15pdx": { + "title": "7o5. Child 15 - Primary Dx**", + "description": "999 = unknown **CODES for primary diagnosis", + "type": "string", + "enum": [ + "040 Mild cognitive impairment (MCI), not otherwise specified", + "041 MCI - amnestic, single domain", + "042 MCI - multiple domain with amnesia", + "043 MCI - single domain nonamnestic", + "044 MCI - multiple domain nonamnestic", + "045 Impaired, but not MCI", + "050 Alzheimer's disease dementia", + "070 Dementia with Lewy bodies", + "080 Vascular cognitive impairment or dementia", + "100 Impairment due to alcohol abuse", + "110 Dementia of undetermined etiology", + "120 Behavioral variant frontotemporal dementia", + "130 Primary progressive aphasia, semantic variant", + "131 Primary progressive aphasia, nonfluent/agrammatic variant", + "132 Primary progressive aphasia, logopenic variant", + "133 Primary progressive aphasia, not otherwise specified", + "140 Clinical progressive supranuclear palsy", + "150 Clinical corticobasal syndrome/corticobasal degeneration", + "160 Huntington's disease", + "170 Clinical prion disease", + "180 Cognitive dysfunction from medications", + "190 Cognitive dysfunction from medical illness", + "200 Depression", + "210 Other major psychiatric illness", + "220 Down syndrome", + "230 Parkinson's disease", + "240 Stroke", + "250 Hydrocephalus", + "260 Traumatic brain injury", + "270 CNS neoplasm", + "280 Other", + "310 Amyotrophic lateral sclerosis", + "320 Multiple sclerosis", + "999 Specific diagnosis unknown (acceptable if method of evaluation is not by autopsy, examination, or dementia evaluation)", + "400 Alzheimer's disease neuropathology", + "410 Lewy body disease - neuropathology", + "420 Gross infarct(s) neuropathology", + "421 Hemorrhage(s) neuropathology", + "422 Other cerebrovascular disease neuropathology", + "430 ALS/MND", + "431 FTLD with Tau pathology - Pick's disease", + "432 FTLD with Tau pathology - CBD", + "433 FTLD with Tau pathology - PSP", + "434 FTLD with Tau pathology - argyrophyllic grains", + "435 FTLD with Tau pathology - other", + "436 FTLD with TDP-43", + "439 FTLD other (FTLD-FUS, FTLD-UPS, FTLD NOS)", + "440 Hippocampal sclerosis", + "450 Prion disease neuropathology", + "490 Other neuropathologic diagnosis not listed above" + ] + }, + "tele_kid15moe": { + "title": "7o6. Child 15 - Method of evaluation***", + "description": "***CODES for method of evaluation - See File Repository for APPENDIX 2: METHOD OF EVALUATION", + "type": "string", + "enum": [ + "1 Autopsy", + "2 Examination", + "3 Medical record review from formal dementia evaluation", + "4 Review of general medical records AND co-participant and/or subject telephone interview", + "5 Review of general medical records only", + "6 Subject and/or co-participant telephone interview", + "7 Family report" + ] + }, + "tele_kid15ago": { + "title": "7o7. Child 15 - Age of onset", + "description": "999 = Unknown", + "type": "string", + "pattern": "^[0-9]?[0-9]$|^[1][0-4][0-9]$|^150$|^999$" + } + } + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "tele_genetic_mutation.tele_nwinfmut": { + "title": "1. Since the last visit, is new information available concerning genetic mutations addressed by Questions 2a through 4b, below?" + }, + "tele_genetic_mutation.tele_fadmut": { + "title": "2a. In this family, is there evidence for an AD mutation? If Yes, select predominant mutation." + }, + "tele_genetic_mutation.tele_fadmutx": { + "title": "2a1. Other (specify predominant AD mutation in this family)" + }, + "tele_genetic_mutation.tele_fadmuso": { + "title": "2b. Source of evidence for AD mutation (check one):" + }, + "tele_genetic_mutation.tele_fadmusox": { + "title": "2b1. Other (specify the other source of evidence -AD mutation in this family)" + }, + "tele_genetic_mutation.tele_fftdmut": { + "title": "3a. In this family, is there evidence for an FTLD mutation? If Yes, select predominant mutation." + }, + "tele_genetic_mutation.tele_fftdmutx": { + "title": "3a1. Other (specify the predominant FTLD mutation in this family)" + }, + "tele_genetic_mutation.tele_fftdmuso": { + "title": "3b. Source of evidence for FTLD mutation (check one):" + }, + "tele_genetic_mutation.tele_fftdmusx": { + "title": "3b1. Other (Specify the other source of evidence -FTLD mutation in this family)" + }, + "tele_genetic_mutation.tele_fothmut": { + "title": "4a. In this family, is there evidence for a mutation other than an AD or FTLD mutation?" + }, + "tele_genetic_mutation.tele_fothmutx": { + "title": "4a1. Other (specify the other mutation in this family)" + }, + "tele_genetic_mutation.tele_fothmuso": { + "title": "4b. Source of evidence for other mutation (check one):" + }, + "tele_genetic_mutation.tele_fothmusx": { + "title": "4b1. Other (Specify the other source of evidence for other mutation in this family)" + }, + "tele_note_a3.tele_nwinfpar": { + "title": "5. Since the last UDS visit, is new information available concerning the status of the subject's biological mother or father?" + }, + "tele_note_a3.tele_mother.tele_mommob": { + "title": "5a1. Mother - Birth month" + }, + "tele_note_a3.tele_mother.tele_momyob": { + "title": "5a2. Mother - Birth Year" + }, + "tele_note_a3.tele_mother.tele_momdage": { + "title": "5a3. Mother - Age at death" + }, + "tele_note_a3.tele_mother.tele_momneur": { + "title": "5a4. Mother - Primary neurological problem/psychiatric condition*" + }, + "tele_note_a3.tele_mother.tele_momprdx": { + "title": "5a5. Mother - Primary Dx**" + }, + "tele_note_a3.tele_mother.tele_mommoe": { + "title": "5a6. Mother - Method of evaluation***" + }, + "tele_note_a3.tele_mother.tele_momageo": { + "title": "5a7. Mother - Age of onset" + }, + "tele_note_a3.tele_father.tele_dadmob": { + "title": "5b1. Father - Birth month" + }, + "tele_note_a3.tele_father.tele_dadyob": { + "title": "5b2. Father - Birth year" + }, + "tele_note_a3.tele_father.tele_daddage": { + "title": "5b3. Father - Age at death" + }, + "tele_note_a3.tele_father.tele_dadneur": { + "title": "5b4. Father - Primary neurological problem/psychiatric condition*" + }, + "tele_note_a3.tele_father.tele_dadprdx": { + "title": "5b5. Father - Primary Dx**" + }, + "tele_note_a3.tele_father.tele_dadmoe": { + "title": "5b6. Father - Method of evaluation***" + }, + "tele_note_a3.tele_father.tele_dadageo": { + "title": "5b7. Father - Age of onset" + }, + "tele_note_a3_2.tele_full_siblings.tele_sibs": { + "title": "6. How many full siblings does the subject have?" + }, + "tele_note_a3_2.tele_full_siblings.tele_nwinfsib": { + "title": "6a. Since the last UDS visit, is new information available concerning the status of the subject's siblings?" + }, + "tele_note_a3_2.tele_biological_children.tele_kids": { + "title": "7. How many biological children does the subject have?" + }, + "tele_note_a3_2.tele_biological_children.tele_nwinfkid": { + "title": "7a. Since the last UDS visit, is new information available concerning the status of the subject's biological children?" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "tele_genetic_mutation.tele_nwinfmut": { + "title": "1. Since the last visit, is new information available concerning genetic mutations addressed by Questions 2a through 4b, below?" + }, + "tele_genetic_mutation.tele_fadmut": { + "title": "2a. In this family, is there evidence for an AD mutation? If Yes, select predominant mutation." + }, + "tele_genetic_mutation.tele_fadmutx": { + "title": "2a1. Other (specify predominant AD mutation in this family)" + }, + "tele_genetic_mutation.tele_fadmuso": { + "title": "2b. Source of evidence for AD mutation (check one):" + }, + "tele_genetic_mutation.tele_fadmusox": { + "title": "2b1. Other (specify the other source of evidence -AD mutation in this family)" + }, + "tele_genetic_mutation.tele_fftdmut": { + "title": "3a. In this family, is there evidence for an FTLD mutation? If Yes, select predominant mutation." + }, + "tele_genetic_mutation.tele_fftdmutx": { + "title": "3a1. Other (specify the predominant FTLD mutation in this family)" + }, + "tele_genetic_mutation.tele_fftdmuso": { + "title": "3b. Source of evidence for FTLD mutation (check one):" + }, + "tele_genetic_mutation.tele_fftdmusx": { + "title": "3b1. Other (Specify the other source of evidence -FTLD mutation in this family)" + }, + "tele_genetic_mutation.tele_fothmut": { + "title": "4a. In this family, is there evidence for a mutation other than an AD or FTLD mutation?" + }, + "tele_genetic_mutation.tele_fothmutx": { + "title": "4a1. Other (specify the other mutation in this family)" + }, + "tele_genetic_mutation.tele_fothmuso": { + "title": "4b. Source of evidence for other mutation (check one):" + }, + "tele_genetic_mutation.tele_fothmusx": { + "title": "4b1. Other (Specify the other source of evidence for other mutation in this family)" + }, + "tele_note_a3.tele_nwinfpar": { + "title": "5. Since the last UDS visit, is new information available concerning the status of the subject's biological mother or father?" + }, + "tele_note_a3.tele_mother.tele_mommob": { + "title": "5a1. Mother - Birth month" + }, + "tele_note_a3.tele_mother.tele_momyob": { + "title": "5a2. Mother - Birth Year" + }, + "tele_note_a3.tele_mother.tele_momdage": { + "title": "5a3. Mother - Age at death" + }, + "tele_note_a3.tele_mother.tele_momneur": { + "title": "5a4. Mother - Primary neurological problem/psychiatric condition*" + }, + "tele_note_a3.tele_mother.tele_momprdx": { + "title": "5a5. Mother - Primary Dx**" + }, + "tele_note_a3.tele_mother.tele_mommoe": { + "title": "5a6. Mother - Method of evaluation***" + }, + "tele_note_a3.tele_mother.tele_momageo": { + "title": "5a7. Mother - Age of onset" + }, + "tele_note_a3.tele_father.tele_dadmob": { + "title": "5b1. Father - Birth month" + }, + "tele_note_a3.tele_father.tele_dadyob": { + "title": "5b2. Father - Birth year" + }, + "tele_note_a3.tele_father.tele_daddage": { + "title": "5b3. Father - Age at death" + }, + "tele_note_a3.tele_father.tele_dadneur": { + "title": "5b4. Father - Primary neurological problem/psychiatric condition*" + }, + "tele_note_a3.tele_father.tele_dadprdx": { + "title": "5b5. Father - Primary Dx**" + }, + "tele_note_a3.tele_father.tele_dadmoe": { + "title": "5b6. Father - Method of evaluation***" + }, + "tele_note_a3.tele_father.tele_dadageo": { + "title": "5b7. Father - Age of onset" + }, + "tele_note_a3_2.tele_full_siblings.tele_sibs": { + "title": "6. How many full siblings does the subject have?" + }, + "tele_note_a3_2.tele_full_siblings.tele_nwinfsib": { + "title": "6a. Since the last UDS visit, is new information available concerning the status of the subject's siblings?" + }, + "tele_note_a3_2.tele_biological_children.tele_kids": { + "title": "7. How many biological children does the subject have?" + }, + "tele_note_a3_2.tele_biological_children.tele_nwinfkid": { + "title": "7a. Since the last UDS visit, is new information available concerning the status of the subject's biological children?" + } + }, + "boost_values": { + "patient": 1.0, + "tele_genetic_mutation.tele_nwinfmut": 1.0, + "tele_genetic_mutation.tele_fadmut": 1.0, + "tele_genetic_mutation.tele_fadmutx": 1.0, + "tele_genetic_mutation.tele_fadmuso": 1.0, + "tele_genetic_mutation.tele_fadmusox": 1.0, + "tele_genetic_mutation.tele_fftdmut": 1.0, + "tele_genetic_mutation.tele_fftdmutx": 1.0, + "tele_genetic_mutation.tele_fftdmuso": 1.0, + "tele_genetic_mutation.tele_fftdmusx": 1.0, + "tele_genetic_mutation.tele_fothmut": 1.0, + "tele_genetic_mutation.tele_fothmutx": 1.0, + "tele_genetic_mutation.tele_fothmuso": 1.0, + "tele_genetic_mutation.tele_fothmusx": 1.0, + "tele_note_a3.tele_nwinfpar": 1.0, + "tele_note_a3.tele_mother.tele_mommob": 1.0, + "tele_note_a3.tele_mother.tele_momyob": 1.0, + "tele_note_a3.tele_mother.tele_momdage": 1.0, + "tele_note_a3.tele_mother.tele_momneur": 1.0, + "tele_note_a3.tele_mother.tele_momprdx": 1.0, + "tele_note_a3.tele_mother.tele_mommoe": 1.0, + "tele_note_a3.tele_mother.tele_momageo": 1.0, + "tele_note_a3.tele_father.tele_dadmob": 1.0, + "tele_note_a3.tele_father.tele_dadyob": 1.0, + "tele_note_a3.tele_father.tele_daddage": 1.0, + "tele_note_a3.tele_father.tele_dadneur": 1.0, + "tele_note_a3.tele_father.tele_dadprdx": 1.0, + "tele_note_a3.tele_father.tele_dadmoe": 1.0, + "tele_note_a3.tele_father.tele_dadageo": 1.0, + "tele_note_a3_2.tele_full_siblings.tele_sibs": 1.0, + "tele_note_a3_2.tele_full_siblings.tele_nwinfsib": 1.0, + "tele_note_a3_2.tele_biological_children.tele_kids": 1.0, + "tele_note_a3_2.tele_biological_children.tele_nwinfkid": 1.0 + }, + "changelog": "/profiles/changelogs/tvp_a3.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/tvp_a4.json b/src/encoded/schemas/tvp_a4.json new file mode 100644 index 0000000000..ff3cc55eb2 --- /dev/null +++ b/src/encoded/schemas/tvp_a4.json @@ -0,0 +1,9607 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UPFORM A4: SUBJECT MEDICATIONS", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or ADC staff. The purpose of the form is to record all prescription medications taken by the subject within the two weeks before the current visit. For prescription medications not listed here, please follow the instructions at the end of this form. OTC (non-prescription) medications need not be reported; however, a short list of medications that could be either prescription or OTC follows the prescription list. This list includes commonly reported medications that may be purchased over the counter (but that may also be prescription)", + "id": "/profiles/uds_tvp_a4.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "tele_anymeds" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "tele_anymeds": { + "title": "Is the subject currently taking any medications?", + "type": "string", + "enum": [ + "0 No (END FORM HERE)", + "1 Yes" + ] + }, + "tele_drugid_1": { + "title": "Select a medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_2": { + "title": "Select a 2nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_3": { + "title": "Select a 3rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_4": { + "title": "Select a 4th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_5": { + "title": "Select a 5th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_6": { + "title": "Select a 6th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_7": { + "title": "Select a 7th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_8": { + "title": "Select a 8th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_9": { + "title": "Select a 9th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_10": { + "title": "Select a 10th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_11": { + "title": "Select a 11th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_12": { + "title": "Select a 12th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_13": { + "title": "Select a 13th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_14": { + "title": "Select a 14th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_15": { + "title": "Select a 15th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_16": { + "title": "Select a 16th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_17": { + "title": "Select a 17th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_18": { + "title": "Select a 18th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_19": { + "title": "Select a 19th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_20": { + "title": "Select a 20th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_21": { + "title": "Select a 21st medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_22": { + "title": "Select a 22nd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_23": { + "title": "Select a 23rd medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_24": { + "title": "Select a 24th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_25": { + "title": "Select a 25th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_26": { + "title": "Select a 26th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_27": { + "title": "Select a 27th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_28": { + "title": "Select a 28th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_29": { + "title": "Select a 29th medication", + "description": "(type or use arrows to search)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_drugid_30": { + "title": "Select a 30th medication", + "description": "(last drop down, use look up)", + "type": "string", + "enum": [ + "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "103428 acetaminophen - HYDROcodone (Vicodin)", + "200051 Adalat", + "204611 Advair", + "200015 Advil", + "203050 Alavert", + "100749 albuterol (Proventil, Ventolin, Volmax)", + "103849 alendronate (Fosamax)", + "200019 Aleve", + "204040 Allegra", + "100023 allopurinol (Aloprim, Lopurin, Zyloprim)", + "200023 Aloprim", + "100168 alprazolam (Niravam, Xanax)", + "200280 Altocor", + "200910 Ambien", + "100689 amlodipine (Norvasc)", + "200049 Anacin", + "300019 Anaprox", + "200405 Aquavite-E", + "204099 Aricept", + "100426 ascorbic acid (C Complex, Vitamin C)", + "100170 aspirin", + "203473 Atamet", + "100004 atenolol (Senormin, Tenormin)", + "200149 Ativan", + "104105 atorvastatin (Lipitor)", + "100730 benazepril (Lotensin)", + "200181 Budeprion", + "100181 bupropion (Budeprion, Wellbutrin, Zyban)", + "200426 C Complex", + "203128 Calciferol", + "103689 calcium acetate (Calphron, PhosLo)", + "100425 calcium carbonate (Rolaids, Tums)", + "201021 Calcium Stool Softener", + "103137 calcium-vitamin D (Dical-D, O-Cal_D)", + "203689 Calphron", + "103473 carbidopa-levodopa (Atamet, Sinemet)", + "200045 Cardizem", + "303847 Carvedilol", + "103847 carvedilol (Coreg, Carvedilol)", + "204380 Celebrex", + "104380 celecoxib (Celebrex)", + "204332 Celexa", + "200541 Cenestin", + "300405 Centrum Singles", + "103827 cetirizine (Zyrtec)", + "103129 cholecalciferol (Vitamin D3, Replesta)", + "104420 chondroitin-glucosamine (Cidaflex, Osteo Bi-Flex)", + "204420 Cidaflex", + "104332 citalopram (Celexa)", + "303050 Claritin", + "100197 clonazepam (Klonopin)", + "104258 clopidogrel (Plavix)", + "204523 Co Q-10", + "100541 conjugate estrogens (Cenestin, Premarin)", + "203847 Coreg", + "300022 Coumadin", + "203821 Cozaar", + "204851 Crestor", + "100413 cyanocobalamin (Neuroforte-R, Vitamin B12)", + "205355 Cymbalta", + "200395 Desyrel", + "203137 Dical-D", + "200210 Digitek", + "100210 digoxin (Digitek, Lanoxin)", + "100045 diltiazem (Cardizem, Tiazac)", + "403050 Dimetapp", + "301021 Dioctyl SS", + "204113 Diovan", + "200328 Ditripoan", + "101021 ducosate (Calcium Stool Softener, Dioctyl SS)", + "104099 donepezil (Aricept)", + "105355 duloxetine (Cymbalta)", + "203052 Dyazide", + "203181 Effexor", + "100013 enalapril (Vasotec)", + "103128 ergocalciferol (Calciferol, Drisdol, Vitamin D)", + "104812 escitalopram (Lexapro)", + "100253 Esidrix", + "104749 esomeprazole (Nexium)", + "200537 Estrace", + "100537 estradiol (Estrace, Estrogel, Fempatch)", + "300537 Estrogel", + "204537 Exelon", + "104824 ezetimibe (Zetia)", + "400537 Fempatch", + "203824 FeroSul", + "103824 ferrous sulfate (FeroSul, Iron Supplement)", + "104040 fexofenadine (Allegra)", + "201018 Fiberall", + "100563 finasteride (Propecia, Proscar)", + "204121 Flomax", + "204283 Flonase", + "201296 Flovent", + "100236 fluoxetine (Prozac)", + "101296 fluticasone (Flovent)", + "104283 fluticasone nasal (Flonase, Veramyst)", + "104611 fluticasone-salmeterol (Advair)", + "100241 folic acid (Folic Acid)", + "203849 Fosamax", + "100070 furosemide (Lasix)", + "103182 gabapentin (Neurontin)", + "104750 galantamine (Razadyne, Reminyl)", + "100246 glipizide (Glucotrol)", + "203807 Glucophage", + "104418 glucosamine (Hydrochloride)", + "200246 Glucotrol", + "204418 Hydrochloride", + "200253 hydrochlorothiazide (Esidrix, Hydrodiuril)", + "103052 hydrochlorothiazide-triamterene (Dyazide)", + "300253 Hyrodiuril", + "200386 Hytrin", + "100015 ibuprofen (Advil, Motrin, Nuprin)", + "303824 Iron Supplement", + "200022 Jantoven", + "200345 K-Dur 10", + "300345 K-Lor", + "200197 Klonopin", + "300210 Lanoxin", + "200070 Lasix", + "104017 latanoprost ophthalmic (Xalatan)", + "200278 Levothroid", + "100278 levothyroxine (Levothroid, Levoxyl, Synthroid)", + "300278 Levoxyl", + "204812 Lexapro", + "204105 Lipitor", + "100732 lisinopril (Prinivil, Zestril)", + "200134 Lopressor", + "300023 Lopurin", + "103050 loratidine (Alavert, Claritin, Dimetapp, Tavist)", + "100149 lorazepam (Ativan)", + "103821 losartan (Cozaar)", + "200730 Lotensin", + "100280 lovastatin (Altocor, Mevacor)", + "300497 Lovaza", + "204058 Melatonin", + "104058 melatonin (Melatonin, Melatonin Time Release)", + "304058 Melatonin Time Release", + "204532 Meloxicam", + "104532 meloxicam (Meloxicam, Mobic)", + "104899 memantine (Namenda)", + "301018 Metamucil", + "103807 metformin (Glucophage, Riomet)", + "100134 metoprolol (Lopressor, Toprol-XL)", + "300280 Mevacor", + "205350 Miralax", + "104025 mirtazapine (Remeron)", + "304532 Mobic", + "104289 montelukast (Singulair)", + "300015 Motrin", + "103140 multivitamin", + "103145 multivitamin with minerals", + "204899 Namenda", + "400019 Naprosyn", + "100019 naproxen (Aleve, Anaprox, Naprosyn)", + "200413 Neuroforte-R", + "203182 Neurontin", + "204749 Nexium", + "100314 niacin (Niacor, Nico-400, Nicotinic Acid)", + "200314 Niacor", + "300314 Nico-400", + "400314 Nicotinic Acid", + "100051 nifedipine (Adalat, Procardia)", + "200168 Niravam", + "200321 Nitro-Bid", + "300321 Nitro-Dur", + "100321 nitroglycerin (Nitro-Bid, Nitro-Dur, Nitrostat)", + "400321 Nitrostat", + "200689 Norvasc", + "400015 Nuprin", + "303137 O-Cal_D", + "200497 Omacor", + "100497 omega-3 polyunsaturated fatty acids (Omacor, Lovaza)", + "100325 omeprazole (Prilosec)", + "304420 Osteo Bi-Flex", + "100328 oxybutynin (Ditropan, Urotrol)", + "104514 pantoprazole (Protonix)", + "103157 paroxetine (Paxil, Paxil CR, Pexeva)", + "203157 Paxil", + "303157 Paxil CR", + "403157 Pexeva", + "303689 Phoslo", + "204258 Plavix", + "105350 polyethylene glycol 3350 (Miralax)", + "100345 potassium chloride (K-Dur 10, K-Lor, Slow-K)", + "200348 Pravachol", + "100348 pravastatin (Pravachol)", + "300541 Premarin", + "200325 Prilosec", + "200732 Prinivil", + "300051 Procardia", + "200563 Propecia", + "300563 Proscar", + "204514 Protonix", + "200749 Proventil", + "200236 Prozac", + "101018 psyllium (Fiberall, Metamucil)", + "100412 pyroxidine (Vitamin B6)", + "104220 quetiapine (Seroquel)", + "100021 ranitidine (Zantac)", + "204750 Razadyne", + "204025 Remeron", + "304750 Reminyl", + "303129 Replesta", + "303807 Riomet", + "104537 rivastigmine (Exelon)", + "200425 Rolaids", + "104851 rosuvastatin (Crestor)", + "203826 Ryzolt", + "200004 Senormin", + "204220 Seroquel", + "100880 sertraline (Zoloft)", + "100746 simvastatin (Zocor)", + "303473 Sinemet", + "204289 Singulair", + "400345 Slow_K", + "400278 Synthroid", + "104121 tamsulosin (Flomax)", + "503050 Tavist", + "300049 Tempra", + "300004 Tenormin", + "100386 terazosin (Hytrin)", + "300045 Tiazac", + "300134 Toprol-XL", + "103826 tramadol (Ryzolt, Ultram)", + "100395 trazodone (Desyrel)", + "300425 Tums", + "400049 Tylenol", + "104523 ubiquinone (Co Q-10)", + "303826 Ultram", + "300328 Urotrol", + "104113 valsartan (Diovan)", + "200013 Vasotec", + "103181 venlafaxine (Effexor)", + "300749 Ventolin", + "304283 Veramyst", + "203428 Vicodin", + "300413 Vitamin B12", + "200412 Vitamin B6", + "300426 Vitamin C", + "403128 Vitamin D", + "203129 Vitamin D3", + "100405 vitamin E (Aquavite-E, Centrum Singles)", + "400749 Volmax", + "100022 warfarin (Coumadin, Jantoven)", + "300181 Wellbutrin", + "204017 Xalantan", + "300168 Xanax", + "200021 Zantac", + "300732 Zestril", + "204824 Zetia", + "200746 Zocor", + "200880 Zoloft", + "100910 zolpidem (Ambien)", + "400181 Zyban", + "400023 Zyloprim", + "203827 Zyrtec", + "204448 Aciphex", + "100146 amitriptyline (Elavil, Endep, Vanatrip)", + "203884 Analgesia Cream", + "300048 Calan", + "103819 conj. estrog.-medroxyprogesterone (Prempro)", + "200350 Deltasone", + "203833 Depakote", + "200284 Depo-Provera", + "204294 Detrol", + "200248 DiaBeta", + "200143 Dilantin", + "103833 divalproex sodium (Depakote)", + "303128 Drisdol", + "200146 Elavil", + "300146 Endep", + "204261 Evista", + "100141 famotidine (Mylanta AR, Pepcid)", + "100248 glyburide (DiaBeta, Glycron, Micronase )", + "300248 Glycron", + "200048 Isoptin", + "103828 lansoprazole (Prevacid)", + "100284 medroxyprogesterone (Depo_Prevera)", + "400248 Micronase", + "200141 Mylanta AR", + "104050 olanzapine (Zyprexa)", + "300350 Orasone", + "300141 Pepcid", + "100143 phenytoin (Dilantin)", + "100350 prednisone (Deltasone, Orasone)", + "203819 Prempro", + "203828 Prevacid", + "104448 rabeprazole (Aciphex)", + "104261 raloxifene (Evista)", + "200384 Restoril", + "203180 Risperdal", + "103180 risperidone (Risperdal)", + "100384 temazepam (Restoril)", + "104294 tolterodine (Detrol)", + "103884 trolamine salicylate topical (Analgesia Cream)", + "400146 Vanatrip", + "100048 verapamil (Calan, Isoptin, Verelan)", + "400048 Verelan", + "204050 Zyprex" + ] + }, + "tele_not_listed_drugs": { + "title": "If a medication is not listed above, specify the drug or brand name and determine its drugID by using the Lookup Tool on NACC website at NACC online Drug Lookup", + "type": "object", + "properties": { + "tele_drugid_31": { + "title": "Type a drug ID as given in the look up table.", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_31": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_32": { + "title": "Type a 2nd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_32": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_33": { + "title": "Type a 3rd drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_33": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_34": { + "title": "Type a 4th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_34": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_35": { + "title": "Type a 5th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_35": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_36": { + "title": "Type a 6th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_36": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_37": { + "title": "Type a 7th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_37": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_38": { + "title": "Type a 8th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_38": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_39": { + "title": "Type a 9th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_39": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_40": { + "title": "Type a 10th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_40": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_41": { + "title": "Type a 11th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_41": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_42": { + "title": "Type a 12th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_42": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_43": { + "title": "Type a 13th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_43": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_44": { + "title": "Type a 14th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_44": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_45": { + "title": "Type a 15th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_45": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_46": { + "title": "Type a 16th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_46": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_47": { + "title": "Type a 17th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_47": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_48": { + "title": "Type a 18th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_48": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_49": { + "title": "Type a 19th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_49": { + "title": "Type the name of the drug -", + "type": "string" + }, + "tele_drugid_50": { + "title": "Type a 20th drug ID", + "description": "(d,r,s,or n and 5 numbers)", + "type": "string" + }, + "tele_drug_name_50": { + "title": "Type the name of the drug -", + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "tele_anymeds": { + "title": "Is the subject currently taking any medications?" + }, + "tele_drugid_1": { + "title": "Select a medication" + }, + "tele_drugid_2": { + "title": "Select a 2nd medication" + }, + "tele_drugid_3": { + "title": "Select a 3rd medication" + }, + "tele_drugid_4": { + "title": "Select a 4th medication" + }, + "tele_drugid_5": { + "title": "Select a 5th medication" + }, + "tele_drugid_6": { + "title": "Select a 6th medication" + }, + "tele_drugid_7": { + "title": "Select a 7th medication" + }, + "tele_drugid_8": { + "title": "Select a 8th medication" + }, + "tele_drugid_9": { + "title": "Select a 9th medication" + }, + "tele_drugid_10": { + "title": "Select a 10th medication" + }, + "tele_not_listed_drugs.tele_drugid_31": { + "title": "Type a drug ID as given in the look up table." + }, + "tele_not_listed_drugs.tele_drug_name_31": { + "title": "Type the name of the drug -" + }, + "tele_not_listed_drugs.tele_drugid_32": { + "title": "Type a 2nd drug ID" + }, + "tele_not_listed_drugs.tele_drug_name_32": { + "title": "Type the name of the drug -" + }, + "tele_not_listed_drugs.tele_drugid_33": { + "title": "Type a 3rd drug ID" + }, + "tele_not_listed_drugs.tele_drug_name_33": { + "title": "Type the name of the drug -" + }, + "tele_not_listed_drugs.tele_drugid_34": { + "title": "Type a 4th drug ID" + }, + "tele_not_listed_drugs.tele_drug_name_34": { + "title": "Type the name of the drug -" + }, + "tele_not_listed_drugs.tele_drugid_35": { + "title": "Type a 5th drug ID" + }, + "tele_not_listed_drugs.tele_drug_name_35": { + "title": "Type the name of the drug -" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "tele_anymeds": { + "title": "Is the subject currently taking any medications?" + }, + "tele_drugid_1": { + "title": "Select a medication" + }, + "tele_drugid_2": { + "title": "Select a 2nd medication" + }, + "tele_drugid_3": { + "title": "Select a 3rd medication" + }, + "tele_drugid_4": { + "title": "Select a 4th medication" + }, + "tele_drugid_5": { + "title": "Select a 5th medication" + }, + "tele_drugid_6": { + "title": "Select a 6th medication" + }, + "tele_drugid_7": { + "title": "Select a 7th medication" + }, + "tele_drugid_8": { + "title": "Select a 8th medication" + }, + "tele_drugid_9": { + "title": "Select a 9th medication" + }, + "tele_drugid_10": { + "title": "Select a 10th medication" + }, + "tele_not_listed_drugs.tele_drugid_31": { + "title": "Type a drug ID as given in the look up table." + }, + "tele_not_listed_drugs.tele_drug_name_31": { + "title": "Type the name of the drug -" + }, + "tele_not_listed_drugs.tele_drugid_32": { + "title": "Type a 2nd drug ID" + }, + "tele_not_listed_drugs.tele_drug_name_32": { + "title": "Type the name of the drug -" + }, + "tele_not_listed_drugs.tele_drugid_33": { + "title": "Type a 3rd drug ID" + }, + "tele_not_listed_drugs.tele_drug_name_33": { + "title": "Type the name of the drug -" + }, + "tele_not_listed_drugs.tele_drugid_34": { + "title": "Type a 4th drug ID" + }, + "tele_not_listed_drugs.tele_drug_name_34": { + "title": "Type the name of the drug -" + }, + "tele_not_listed_drugs.tele_drugid_35": { + "title": "Type a 5th drug ID" + }, + "tele_not_listed_drugs.tele_drug_name_35": { + "title": "Type the name of the drug -" + } + }, + "boost_values": { + "patient": 1.0, + "tele_anymeds": 1.0, + "tele_drugid_1": 1.0, + "tele_drugid_2": 1.0, + "tele_drugid_3": 1.0, + "tele_drugid_4": 1.0, + "tele_drugid_5": 1.0, + "tele_drugid_6": 1.0, + "tele_drugid_7": 1.0, + "tele_drugid_8": 1.0, + "tele_drugid_9": 1.0, + "tele_drugid_10": 1.0, + "tele_not_listed_drugs.tele_drugid_31": 1.0, + "tele_not_listed_drugs.tele_drug_name_31": 1.0, + "tele_not_listed_drugs.tele_drugid_32": 1.0, + "tele_not_listed_drugs.tele_drug_name_32": 1.0, + "tele_not_listed_drugs.tele_drugid_33": 1.0, + "tele_not_listed_drugs.tele_drug_name_33": 1.0, + "tele_not_listed_drugs.tele_drugid_34": 1.0, + "tele_not_listed_drugs.tele_drug_name_34": 1.0, + "tele_not_listed_drugs.tele_drugid_35": 1.0, + "tele_not_listed_drugs.tele_drug_name_35": 1.0 + }, + "changelog": "/profiles/changelogs/tvp_a4.md" + } \ No newline at end of file diff --git a/src/encoded/schemas/tvp_b4.json b/src/encoded/schemas/tvp_b4.json new file mode 100644 index 0000000000..f7f016e6fa --- /dev/null +++ b/src/encoded/schemas/tvp_b4.json @@ -0,0 +1,242 @@ +{ + "title": "NACC Uniform Data Set (UDS) - TELEPHONE FOLLOW-UP Form B4: CDR® Dementia Staging Instrument Plus NACC FTLD Behavior & Language Domains ( CDR® NACC FTLD)", + "description": "INSTRUCTIONS: For information on the required online CDR training, see UDS Coding Guidebook for TelephoneFollow-up Packet, Form B4. This form is to be completed by the clinician or other trained health professional, basedon co-participant report and behavioral and neurological exam of the subject. In the extremely rare instances whenno co-participant is available, the clinician or other trained health professional must complete this form using allother available information and his/her best clinical judgement. Score only as decline from previous level due tocognitive loss, not impairment due to other factors, such as physical disability. For further information, see UDSCoding Guidebook for Telephone Follow-up Packet, Form B4. Link to NACC Coding Guidebook", + "id": "/profiles/uds_tvp_b4.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "tele_sec1", + "tele_sec2" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "tele_sec1": { + "title": "SECTION 1: CDR® Dementia Staging Instrument 1", + "type": "object", + "properties": { + "tele_memory": { + "title": "1. MEMORY", + "type": "string", + "enum": [ + "0 - None No memory loss, or slight inconsistent forgetfulness.", + "0.5 - Questionable Consistent slight forgetfulness; partial recollection of events; \"benign\" forgetfulness.", + "1 - Mild Moderate memory loss, more marked for recent events; defect interferes with everyday activities.", + "2 - Moderate Severe memory loss; only highly learned material retained; new material rapidly lost.", + "3 - Severe Severe memory loss; only fragments remain." + ] + }, + "tele_orient": { + "title": "2. ORIENTATION", + "type": "string", + "enum": [ + "0 - None Fully oriented", + "0.5 - Questionable Fully oriented except for slight difficulty with time relationships.", + "1 - Mild Moderate difficulty with time relationships; oriented for place at examination; may have geographic disorientation elsewhere.", + "2 - Moderate Severe difficulty with time relationships; usually disoriented to time, often to place.", + "3 - Severe Oriented to person only." + ] + }, + "tele_judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING", + "type": "string", + "enum": [ + "0 - None Solves everyday problems, handles business & financial affairs well; judgment good in relation to past performance.", + "0.5 - Questionable Slight impairment in solving problems, similarities, and differences.", + "1 - Mild Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "2 - Moderate Severely impaired in handling problems, similarities, and differences; social judgment usually impaired.", + "3 - Severe Unable to make judgments or solve problems." + ] + }, + "tele_commun": { + "title": "4. COMMUNITY AFFAIRS", + "type": "string", + "enum": [ + "0 - None Independent function at usual level in job, shopping, volunteer and social groups.", + "0.5 - Questionable Slight impairment in these activities.", + "1 - Mild Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "2 - Moderate No pretense of independent function outside the home; appears well enough to be taken to functions outside the family home.", + "3 - Severe No pretense of independent function outside the home; appears too ill to be taken to functions outside the family home." + ] + }, + "tele_homehobb": { + "title": "5. HOME & HOBBIES", + "type": "string", + "enum": [ + "0 - None Life at home, hobbies, and intellectual interests well maintained.", + "0.5 - Questionable Life at home, hobbies, and intellectual interests slightly impaired.", + "1 - Mild Mild but definite impairment of function at home; more difficult chores abandoned; more complicated hobbies and interests abandoned.", + "2 - Moderate Only simple chores preserved; very restricted interests, poorly maintained.", + "3 - Severe No significant function in the home." + ] + }, + "tele_perscare": { + "title": "6. PERSONAL CARE", + "type": "string", + "enum": [ + "0 - Fully capable of self-care (=0).", + "1 - Mild Needs prompting.", + "2 - Moderate Requires assistance in dressing, hygiene, keeping of personal effects.", + "3 - Severe Requires much help with personal care; frequent incontinence." + ] + }, + "tele_cdrsum": { + "title": "7. CDR SUM OF BOXES", + "description": "Link to Global CDR calculation tool: https://www.alz.washington.edu/cdrnacc.html", + "type": "number" + }, + "tele_cdrglob": { + "title": "8. GLOBAL CDR", + "type": "string", + "enum": [ + "0.0 = No Impairment", + "0.5 = Questionable impariment", + "1.0 = Mild impairment", + "2.0 = Moderate impairment", + "3.0 = Severe impairment" + ] + } + } + }, + "tele_sec2": { + "title": "SECTION 2: NACC FTLD Behaior & Language Domains", + "type": "object", + "properties": { + "tele_comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY", + "type": "string", + "enum": [ + "0 - None Socially appropriate behavior.", + "0.5 - Questionable Questionable changes in comportment, empathy, appropriateness of actions.", + "1 - Mild Mild but definite changes in behavior.", + "2 - Moderate Moderate behavioral changes, affecting interpersonal relationships and interactions in a significant manner.", + "3 - Severe Severe behavioral changes, making interpersonal interactions all unidirectional." + ] + }, + "tele_cdrlang": { + "title": "10. LANGUAGE", + "type": "string", + "enum": [ + "0 - None No language difficulty or occasional mild tip-of-the-tongue.", + "0.5 - Questionable Consistent mild word finding difficulties; simplification of word choice; circumlocution; decreased phrase length; and/or mild comprehension difficulties.", + "1 - Mild Moderate word finding difficulty in speech; cannot name objects in environment; reduced phrase length and/or agrammatical speech; and/or reduced comprehension in conversation and reading.", + "2 - Moderate Moderate to severe impairments in either speech or comprehension; has difficulty communicating thoughts; writing may be slightly more effective.", + "3 - Severe Severe comprehension deficits; no intelligible speech." + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "tele_sec1.tele_memory": { + "title": "1. MEMORY" + }, + "tele_sec1.tele_orient": { + "title": "2. ORIENTATION" + }, + "tele_sec1.tele_judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "tele_sec1.tele_commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "tele_sec1.tele_homehobb": { + "title": "5. HOME & HOBBIES" + }, + "tele_sec1.tele_perscare": { + "title": "6. PERSONAL CARE" + }, + "tele_sec1.tele_cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "tele_sec1.tele_cdrglob": { + "title": "8. GLOBAL CDR" + }, + "tele_sec2.tele_comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY" + }, + "tele_sec2.tele_cdrlang": { + "title": "10. LANGUAGE" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "tele_sec1.tele_memory": { + "title": "1. MEMORY" + }, + "tele_sec1.tele_orient": { + "title": "2. ORIENTATION" + }, + "tele_sec1.tele_judgment": { + "title": "3. JUDGMENT & PROBLEM SOLVING" + }, + "tele_sec1.tele_commun": { + "title": "4. COMMUNITY AFFAIRS" + }, + "tele_sec1.tele_homehobb": { + "title": "5. HOME & HOBBIES" + }, + "tele_sec1.tele_perscare": { + "title": "6. PERSONAL CARE" + }, + "tele_sec1.tele_cdrsum": { + "title": "7. CDR SUM OF BOXES" + }, + "tele_sec1.tele_cdrglob": { + "title": "8. GLOBAL CDR" + }, + "tele_sec2.tele_comport": { + "title": "9. BEHAVIOR, COMPORTMENT AND PERSONALITY" + }, + "tele_sec2.tele_cdrlang": { + "title": "10. LANGUAGE" + } + }, + "boost_values": { + "patient": 1.0, + "tele_sec1.tele_memory": 1.0, + "tele_sec1.tele_orient": 1.0, + "tele_sec1.tele_judgment": 1.0, + "tele_sec1.tele_commun": 1.0, + "tele_sec1.tele_homehobb": 1.0, + "tele_sec1.tele_perscare": 1.0, + "tele_sec1.tele_cdrsum": 1.0, + "tele_sec1.tele_cdrglob": 1.0, + "tele_sec2.tele_comport": 1.0, + "tele_sec2.tele_cdrlang": 1.0 + }, + "changelog": "/profiles/changelogs/tvp_b4.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/tvp_b5.json b/src/encoded/schemas/tvp_b5.json new file mode 100644 index 0000000000..c25cf16366 --- /dev/null +++ b/src/encoded/schemas/tvp_b5.json @@ -0,0 +1,504 @@ +{ + "title": "NACC Uniform Data Set (UDS) - TELEPHONE FOLLOW-UP FORM B5: BEHAVIORAL ASSESSMENT Neuropsychiatric Inventory Questionnaire (NPI-Q [1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional based on co-participant interview, as described by the training video. (This is not to be completed by the subject as a paper-and-pencil self-report.) For information on NPI-Q Interviewer Certification, see UDS Coding Guidebook for Telephone Follow-up Visit Packet, Form B5. Link to NACC Coding Guidebook Check only one box for each category of response. CORRECTED INSTRUCTIONS: Please answer the following questions based on changes that have occurred since the patient first began to experience memory (i.e. cognitive) problems. Select 1=Yes only if the symptom(s) has been present in the last month. Otherwise, select 0=No. For each item marked 1=Yes, rate the SEVERITY of the symptom (how it affects the patient): 1 = Mild (noticeable, but not a significant change) 2 = Moderate (significant, but not a dramatic change) 3 = Severe (very marked or prominent; a dramatic change)", + "id": "/profiles/uds_tvp_b5.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "tele_npiqinf", + "tele_del", + "tele_delsev", + "tele_hall", + "tele_hallsev", + "tele_agit", + "tele_agitsev", + "tele_depd", + "tele_depdsev", + "tele_anx", + "tele_anxsev", + "tele_elat", + "tele_elatsev", + "tele_apa", + "tele_apasev", + "tele_disn", + "tele_disnsev", + "tele_irr", + "tele_irrsev", + "tele_mot", + "tele_motsev", + "tele_nite", + "tele_nitesev", + "tele_app", + "tele_appsev" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "tele_npiqinf": { + "title": "1. NPI CO-PARTICIPANT:", + "type": "string", + "enum": [ + "1 Spouse", + "2 Child", + "3 Other (SPECIFY)" + ] + }, + "tele_npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify", + "description": "(Any text or numbers with the exception of single quotes ('), double quotes (\"), ampersands (&), and percentage signs (%).)", + "type": "string" + }, + "tele_del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_delsev": { + "title": "2b. If Delusions, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_hallsev": { + "title": "3b. If Hallucinations, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_agitsev": { + "title": "4b. If Agitation/agression, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_depdsev": { + "title": "5b. If Depression/dysphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_anxsev": { + "title": "6b. If Anxiety, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_elatsev": { + "title": "7b. If Elation/euphoria, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_apasev": { + "title": "8b. If Apathy/indifference, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_disnsev": { + "title": "9b. If Disinhibition, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_irrsev": { + "title": "10b. If Irritability/lability, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house, handling buttons, wrapping string, or doing other things repeatedly?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_motsev": { + "title": "11b. If Motor disturbance, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_nitesev": { + "title": "12b. If Nighttime behaviors, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + }, + "tele_app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "tele_appsev": { + "title": "13b. If Appetite/eating, rate severity", + "type": "string", + "enum": [ + "1 Mild (noticeable, but not a significant change)", + "2 Moderate (significant, but not a dramatic change)", + "3 Severe (very marked or prominent, a dramatic change)", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "tele_npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "tele_npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "tele_del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "tele_delsev": { + "title": "2b. If Delusions, rate severity" + }, + "tele_hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "tele_hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "tele_agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "tele_agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "tele_depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "tele_depdsev": { + "title": "5b. If Depression/dysphoria, rate severity" + }, + "tele_anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "tele_anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "tele_elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy?" + }, + "tele_elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "tele_apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "tele_apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "tele_disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "tele_disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "tele_irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "tele_irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "tele_mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house, handling buttons, wrapping string, or doing other things repeatedly?" + }, + "tele_motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "tele_nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "tele_nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "tele_app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "tele_appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "tele_npiqinf": { + "title": "1. NPI CO-PARTICIPANT:" + }, + "tele_npiqinfx": { + "title": "1a If NPI CO-PARTICIPANT other-specify" + }, + "tele_del": { + "title": "2a. Delusions - Does the patient have false beliefs, such as thinking that others are stealing from him/her or planning to harm him/her in some way?" + }, + "tele_delsev": { + "title": "2b. If Delusions, rate severity" + }, + "tele_hall": { + "title": "3a. Hallucinations - Does the patient have hallucinations such as false visions or voices? Does he or she seem to hear or see things that are not present?" + }, + "tele_hallsev": { + "title": "3b. If Hallucinations, rate severity" + }, + "tele_agit": { + "title": "4a. Agitation/aggression - Is the patient resistive to help from others at times, or hard to handle?" + }, + "tele_agitsev": { + "title": "4b. If Agitation/agression, rate severity" + }, + "tele_depd": { + "title": "5a. Depression/dysphoria - Does the patient seem sad or say that he/she is depressed?" + }, + "tele_depdsev": { + "title": "5b. If Depression/dysphoria, rate severity" + }, + "tele_anx": { + "title": "6a. Anxiety - Does the patient become upset when separated from you? Does he/she have any other signs of nervousness, such as shortness of breath, sighing, being unable to relax, or feeling excessively tense?" + }, + "tele_anxsev": { + "title": "6b. If Anxiety, rate severity" + }, + "tele_elat": { + "title": "7a. Elation/euphoria - Does the patient appear to feel too good or act excessively happy?" + }, + "tele_elatsev": { + "title": "7b. If Elation/euphoria, rate severity" + }, + "tele_apa": { + "title": "8a. Apathy/indifference - Does the patient seem less interested in his/her usual activities or in the activities and plans of others?" + }, + "tele_apasev": { + "title": "8b. If Apathy/indifference, rate severity" + }, + "tele_disn": { + "title": "9a. Disinhibition - Does the patient seem to act impulsively, for example, talking to strangers as if he/she knows them, or saying things that may hurt people's feelings?" + }, + "tele_disnsev": { + "title": "9b. If Disinhibition, rate severity" + }, + "tele_irr": { + "title": "10a. Irritability/lability - Is the patient impatient and cranky? Does he/she have difficulty coping with delays or waiting for planned activities?" + }, + "tele_irrsev": { + "title": "10b. If Irritability/lability, rate severity" + }, + "tele_mot": { + "title": "11a. Motor disturbance - Does the patient engage in repetitive activities such as pacing around the house, handling buttons, wrapping string, or doing other things repeatedly?" + }, + "tele_motsev": { + "title": "11b. If Motor disturbance, rate severity" + }, + "tele_nite": { + "title": "12a. Nighttime behaviors - Does the patient awaken you during the night, rise too early in the morning, or take excessive naps during the day?" + }, + "tele_nitesev": { + "title": "12b. If Nighttime behaviors, rate severity" + }, + "tele_app": { + "title": "13a. Appetite/eating - Has the patient lost or gained weight, or had a change in the type of food he/she likes?" + }, + "tele_appsev": { + "title": "13b. If Appetite/eating, rate severity" + } + }, + "boost_values": { + "patient": 1.0, + "tele_npiqinf": 1.0, + "tele_npiqinfx": 1.0, + "tele_del": 1.0, + "tele_delsev": 1.0, + "tele_hall": 1.0, + "tele_hallsev": 1.0, + "tele_agit": 1.0, + "tele_agitsev": 1.0, + "tele_depd": 1.0, + "tele_depdsev": 1.0, + "tele_anx": 1.0, + "tele_anxsev": 1.0, + "tele_elat": 1.0, + "tele_elatsev": 1.0, + "tele_apa": 1.0, + "tele_apasev": 1.0, + "tele_disn": 1.0, + "tele_disnsev": 1.0, + "tele_irr": 1.0, + "tele_irrsev": 1.0, + "tele_mot": 1.0, + "tele_motsev": 1.0, + "tele_nite": 1.0, + "tele_nitesev": 1.0, + "tele_app": 1.0, + "tele_appsev": 1.0 + }, + "changelog": "/profiles/changelogs/tvp_b5.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/tvp_b7.json b/src/encoded/schemas/tvp_b7.json new file mode 100644 index 0000000000..7cfa018a1e --- /dev/null +++ b/src/encoded/schemas/tvp_b7.json @@ -0,0 +1,253 @@ +{ + "title": "NACC Uniform Data Set (UDS) - FOLLOW-UP Form B7: FUNCTIONAL ASSESSMENT - FUNCTIONAL ACTIVITIES SCALE (FAS[1])", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or other trained health professional, based on information provided by the co-participant. For further information, see UDS Coding Guidebook for Follow-up Visit Packet, Form B7. Link to NACC Coding Guidebook Indicate the level of performance for each activity by checking the one appropriate response.", + "id": "/profiles/uds_tvp_b7.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "tele_help_with" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "tele_help_with": { + "title": "In the past four weeks, did the subject have difficulty or need help with:", + + "type": "object", + "properties": { + "tele_bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "tele_taxes": { + "title": "2. Assembling tax records, business affairs, or other papers", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "tele_shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "tele_games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "tele_stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "tele_mealprep": { + "title": "6. Preparing a balanced meal", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "tele_events": { + "title": "7. Keeping track of current events", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "tele_payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "tele_remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + }, + "tele_travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation", + "type": "string", + "enum": [ + "8 Not applicable (e.g., never did)", + "0 Normal", + "1 Has difficulty, but does by self", + "2 Requires assistance", + "3 Dependent", + "9 Unknown" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "tele_help_with.tele_bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "tele_help_with.tele_taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "tele_help_with.tele_shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "tele_help_with.tele_games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "tele_help_with.tele_stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "tele_help_with.tele_mealprep": { + "title": "6. Preparing a balanced meal" + }, + "tele_help_with.tele_events": { + "title": "7. Keeping track of current events" + }, + "tele_help_with.tele_payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "tele_help_with.tele_remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "tele_help_with.tele_travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "tele_help_with.tele_bills": { + "title": "1. Writing checks, paying bills, or balancing a checkbook" + }, + "tele_help_with.tele_taxes": { + "title": "2. Assembling tax records, business affairs, or other papers" + }, + "tele_help_with.tele_shopping": { + "title": "3. Shopping alone for clothes, household necessities, or groceries" + }, + "tele_help_with.tele_games": { + "title": "4. Playing a game of skill such as bridge or chess, working on a hobby" + }, + "tele_help_with.tele_stove": { + "title": "5. Heating water, making a cup of coffee, turning off the stove" + }, + "tele_help_with.tele_mealprep": { + "title": "6. Preparing a balanced meal" + }, + "tele_help_with.tele_events": { + "title": "7. Keeping track of current events" + }, + "tele_help_with.tele_payattn": { + "title": "8. Paying attention to and understanding a TV program, book, or magazine" + }, + "tele_help_with.tele_remdates": { + "title": "9. Remembering appointments, family occasions, holidays, medications" + }, + "tele_help_with.tele_travel": { + "title": "10. Traveling out of the neighborhood, driving, or arranging to take public transportation" + } + }, + "boost_values": { + "patient": 1.0, + "tele_help_with.tele_bills": 1.0, + "tele_help_with.tele_taxes": 1.0, + "tele_help_with.tele_shopping": 1.0, + "tele_help_with.tele_games": 1.0, + "tele_help_with.tele_stove": 1.0, + "tele_help_with.tele_mealprep": 1.0, + "tele_help_with.tele_events": 1.0, + "tele_help_with.tele_payattn": 1.0, + "tele_help_with.tele_remdates": 1.0, + "tele_help_with.tele_travel": 1.0 + }, + "changelog": "/profiles/changelogs/tvp_b7.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/tvp_d2.json b/src/encoded/schemas/tvp_d2.json new file mode 100644 index 0000000000..7788117ee4 --- /dev/null +++ b/src/encoded/schemas/tvp_d2.json @@ -0,0 +1,573 @@ +{ + "title": "NACC Uniform Data Set (UDS) - TELEPHONE FOLLOW UPFORM D2: Clinician-assessed Medical Conditions", + "description": "INSTRUCTIONS: This form is to be completed by a physician, physician's assistant, nurse practitioner, or other qualified practitioner. For additional clarification and examples, see UDS Coding Guidebook for Telephone Follow-Up Visit Packet, Form D2. Link to NACC Coding Guidebook.", + "id": "/profiles/uds_tvp_d2.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "tele_medical_conditions" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "tele_medical_conditions": { + "title": "Medical conditions and procedures", + "description": "The following questions should be answered based on review of all available information, including new diagnoses made during the current visit, previous medical records, procedures, laboratory tests, and the clinical exam.", + "type": "object", + "properties": { + "tele_cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic", + "type": "string", + "enum": [ + "0 No (SKIP TO QUESTION 2)", + "1 Yes, primary/non-metastatic", + "2 Yes, metastatic", + "8 Not assessed (SKIP TO QUESTION 2)" + ] + }, + "tele_cancsite": { + "title": "1a. If yes, specify the primary site:", + "type": "string" + }, + "tele_cond_present": { + "title": "If any of the conditions below are present (even if successfully treated), please check Yes.", + "type": "object", + "properties": { + "tele_diabet": { + "title": "2. Diabetes", + "type": "string", + "enum": [ + "0 No", + "1 Yes, Type I", + "2 Yes, Type II", + "3 Yes, other type(diabetes insipidus, latent autoimmune diabetes/type 1.5, gestational diabetes)", + "9 Not assessed or unknown" + ] + }, + "tele_myoinf": { + "title": "3. Myocardial infarct", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_conghrt": { + "title": "4. Congestive heart failure", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_afibrill": { + "title": "5. Atrial fibrillation", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_hypert": { + "title": "6. Hypertension", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_angina": { + "title": "7. Angina", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_hypchol": { + "title": "8. Hypercholesterolemia", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_vb12def": { + "title": "9. B12 deficiency", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_thydis": { + "title": "10. Thyroid disease", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_artype": { + "title": "11a. If yes, what type?", + "type": "string", + "enum": [ + "1 Rheumatoid", + "2 Osteoarthritis", + "3 Other (SPECIFY BELOW):", + "9 Unknown" + ] + }, + "tele_artypex": { + "title": "11a1. If other type of arthritis SPECIFY:", + "type": "string" + }, + "tele_note_d2_3": { + "title": "11b. If yes, regions affected (check at least one):", + "type": "object", + "properties": { + "tele_artupex": { + "title": "11b1. Arthritis region affected", + "type": "string", + "enum": [ + "1 Upper extremity" + ] + }, + "tele_artloex": { + "title": "11b2. Arthritis region affected", + "type": "string", + "enum": [ + "1 Lower extremity" + ] + }, + "tele_artspin": { + "title": "11b3. Arthritis region affected", + "type": "string", + "enum": [ + "1 Spine" + ] + }, + "tele_artunkn": { + "title": "11b4. Arthritis region affected", + "type": "string", + "enum": [ + "1 Unknown" + ] + } + } + }, + "tele_urineinc": { + "title": "12. Incontinence - urinary", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_bowlinc": { + "title": "13. Incontinence - bowel", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_sleepap": { + "title": "14. Sleep apnea", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_remdis": { + "title": "15. REM sleep behavior disorder (RBD)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_hyposom": { + "title": "16. Hyposomnia/insomnia", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_sleepotx": { + "title": "17a. Specify other sleep disorder:", + "type": "string" + }, + "tele_angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_hvalve": { + "title": "21. Procedure: heart valve replacement or repair", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_antienc": { + "title": "22. Antibody-mediated encephalopathy", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "8 Not assessed" + ] + }, + "tele_antiencx": { + "title": "22a . Specify antibody-mediated encephalopathy", + "type": "string" + }, + "tele_othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "tele_othcondx": { + "title": "23a. If other medical conditions SPECIFY:", + "type": "string" + } + } + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "tele_medical_conditions.tele_cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic" + }, + "tele_medical_conditions.tele_cancsite": { + "title": "1a. If yes, specify the primary site:" + }, + "tele_medical_conditions.tele_cond_present.tele_diabet": { + "title": "2. Diabetes" + }, + "tele_medical_conditions.tele_cond_present.tele_myoinf": { + "title": "3. Myocardial infarct" + }, + "tele_medical_conditions.tele_cond_present.tele_conghrt": { + "title": "4. Congestive heart failure" + }, + "tele_medical_conditions.tele_cond_present.tele_afibrill": { + "title": "5. Atrial fibrillation" + }, + "tele_medical_conditions.tele_cond_present.tele_hypert": { + "title": "6. Hypertension" + }, + "tele_medical_conditions.tele_cond_present.tele_angina": { + "title": "7. Angina" + }, + "tele_medical_conditions.tele_cond_present.tele_hypchol": { + "title": "8. Hypercholesterolemia" + }, + "tele_medical_conditions.tele_cond_present.tele_vb12def": { + "title": "9. B12 deficiency" + }, + "tele_medical_conditions.tele_cond_present.tele_thydis": { + "title": "10. Thyroid disease" + }, + "tele_medical_conditions.tele_cond_present.tele_arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12" + }, + "tele_medical_conditions.tele_cond_present.tele_artype": { + "title": "11a. If yes, what type?" + }, + "tele_medical_conditions.tele_cond_present.tele_artypex": { + "title": "11a1. If other type of arthritis SPECIFY:" + }, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artupex": { + "title": "11b1. Arthritis region affected" + }, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artloex": { + "title": "11b2. Arthritis region affected" + }, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artspin": { + "title": "11b3. Arthritis region affected" + }, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artunkn": { + "title": "11b4. Arthritis region affected" + }, + "tele_medical_conditions.tele_cond_present.tele_urineinc": { + "title": "12. Incontinence - urinary" + }, + "tele_medical_conditions.tele_cond_present.tele_bowlinc": { + "title": "13. Incontinence - bowel" + }, + "tele_medical_conditions.tele_cond_present.tele_sleepap": { + "title": "14. Sleep apnea" + }, + "tele_medical_conditions.tele_cond_present.tele_remdis": { + "title": "15. REM sleep behavior disorder (RBD)" + }, + "tele_medical_conditions.tele_cond_present.tele_hyposom": { + "title": "16. Hyposomnia/insomnia" + }, + "tele_medical_conditions.tele_cond_present.tele_sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):" + }, + "tele_medical_conditions.tele_cond_present.tele_sleepotx": { + "title": "17a. Specify other sleep disorder:" + }, + "tele_medical_conditions.tele_cond_present.tele_angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent" + }, + "tele_medical_conditions.tele_cond_present.tele_angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent" + }, + "tele_medical_conditions.tele_cond_present.tele_pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator" + }, + "tele_medical_conditions.tele_cond_present.tele_hvalve": { + "title": "21. Procedure: heart valve replacement or repair" + }, + "tele_medical_conditions.tele_cond_present.tele_antienc": { + "title": "22. Antibody-mediated encephalopathy" + }, + "tele_medical_conditions.tele_cond_present.tele_antiencx": { + "title": "22a . Specify antibody-mediated encephalopathy" + }, + "tele_medical_conditions.tele_cond_present.tele_othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):" + }, + "tele_medical_conditions.tele_cond_present.tele_othcondx": { + "title": "23a. If other medical conditions SPECIFY:" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "tele_medical_conditions.tele_cancer": { + "title": "1. Cancer (excluding non-melanoma skin cancer), primary or metastatic" + }, + "tele_medical_conditions.tele_cancsite": { + "title": "1a. If yes, specify the primary site:" + }, + "tele_medical_conditions.tele_cond_present.tele_diabet": { + "title": "2. Diabetes" + }, + "tele_medical_conditions.tele_cond_present.tele_myoinf": { + "title": "3. Myocardial infarct" + }, + "tele_medical_conditions.tele_cond_present.tele_conghrt": { + "title": "4. Congestive heart failure" + }, + "tele_medical_conditions.tele_cond_present.tele_afibrill": { + "title": "5. Atrial fibrillation" + }, + "tele_medical_conditions.tele_cond_present.tele_hypert": { + "title": "6. Hypertension" + }, + "tele_medical_conditions.tele_cond_present.tele_angina": { + "title": "7. Angina" + }, + "tele_medical_conditions.tele_cond_present.tele_hypchol": { + "title": "8. Hypercholesterolemia" + }, + "tele_medical_conditions.tele_cond_present.tele_vb12def": { + "title": "9. B12 deficiency" + }, + "tele_medical_conditions.tele_cond_present.tele_thydis": { + "title": "10. Thyroid disease" + }, + "tele_medical_conditions.tele_cond_present.tele_arth": { + "title": "11. Arthritis If No or Not assessed, SKIP TO QUESTION 12" + }, + "tele_medical_conditions.tele_cond_present.tele_artype": { + "title": "11a. If yes, what type?" + }, + "tele_medical_conditions.tele_cond_present.tele_artypex": { + "title": "11a1. If other type of arthritis SPECIFY:" + }, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artupex": { + "title": "11b1. Arthritis region affected" + }, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artloex": { + "title": "11b2. Arthritis region affected" + }, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artspin": { + "title": "11b3. Arthritis region affected" + }, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artunkn": { + "title": "11b4. Arthritis region affected" + }, + "tele_medical_conditions.tele_cond_present.tele_urineinc": { + "title": "12. Incontinence - urinary" + }, + "tele_medical_conditions.tele_cond_present.tele_bowlinc": { + "title": "13. Incontinence - bowel" + }, + "tele_medical_conditions.tele_cond_present.tele_sleepap": { + "title": "14. Sleep apnea" + }, + "tele_medical_conditions.tele_cond_present.tele_remdis": { + "title": "15. REM sleep behavior disorder (RBD)" + }, + "tele_medical_conditions.tele_cond_present.tele_hyposom": { + "title": "16. Hyposomnia/insomnia" + }, + "tele_medical_conditions.tele_cond_present.tele_sleepoth": { + "title": "17. Other sleep disorder (SPECIFY BELOW):" + }, + "tele_medical_conditions.tele_cond_present.tele_sleepotx": { + "title": "17a. Specify other sleep disorder:" + }, + "tele_medical_conditions.tele_cond_present.tele_angiocp": { + "title": "18. Carotid procedure: angioplasty, endarterectomy, or stent" + }, + "tele_medical_conditions.tele_cond_present.tele_angiopci": { + "title": "19. Percutaneous coronary intervention: angioplasty and/or stent" + }, + "tele_medical_conditions.tele_cond_present.tele_pacemake": { + "title": "20. Procedure: pacemaker and/or defibrillator" + }, + "tele_medical_conditions.tele_cond_present.tele_hvalve": { + "title": "21. Procedure: heart valve replacement or repair" + }, + "tele_medical_conditions.tele_cond_present.tele_antienc": { + "title": "22. Antibody-mediated encephalopathy" + }, + "tele_medical_conditions.tele_cond_present.tele_antiencx": { + "title": "22a . Specify antibody-mediated encephalopathy" + }, + "tele_medical_conditions.tele_cond_present.tele_othcond": { + "title": "23. Other medical conditions or procedures not listed above (IF YES, SPECIFY BELOW):" + }, + "tele_medical_conditions.tele_cond_present.tele_othcondx": { + "title": "23a. If other medical conditions SPECIFY:" + } + }, + "boost_values": { + "patient": 1.0, + "tele_medical_conditions.tele_cancer": 1.0, + "tele_medical_conditions.tele_cancsite": 1.0, + "tele_medical_conditions.tele_cond_present.tele_diabet": 1.0, + "tele_medical_conditions.tele_cond_present.tele_myoinf": 1.0, + "tele_medical_conditions.tele_cond_present.tele_conghrt": 1.0, + "tele_medical_conditions.tele_cond_present.tele_afibrill": 1.0, + "tele_medical_conditions.tele_cond_present.tele_hypert": 1.0, + "tele_medical_conditions.tele_cond_present.tele_angina": 1.0, + "tele_medical_conditions.tele_cond_present.tele_hypchol": 1.0, + "tele_medical_conditions.tele_cond_present.tele_vb12def": 1.0, + "tele_medical_conditions.tele_cond_present.tele_thydis": 1.0, + "tele_medical_conditions.tele_cond_present.tele_arth": 1.0, + "tele_medical_conditions.tele_cond_present.tele_artype": 1.0, + "tele_medical_conditions.tele_cond_present.tele_artypex": 1.0, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artupex": 1.0, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artloex": 1.0, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artspin": 1.0, + "tele_medical_conditions.tele_cond_present.tele_note_d2_3.tele_artunkn": 1.0, + "tele_medical_conditions.tele_cond_present.tele_urineinc": 1.0, + "tele_medical_conditions.tele_cond_present.tele_bowlinc": 1.0, + "tele_medical_conditions.tele_cond_present.tele_sleepap": 1.0, + "tele_medical_conditions.tele_cond_present.tele_remdis": 1.0, + "tele_medical_conditions.tele_cond_present.tele_hyposom": 1.0, + "tele_medical_conditions.tele_cond_present.tele_sleepoth": 1.0, + "tele_medical_conditions.tele_cond_present.tele_sleepotx": 1.0, + "tele_medical_conditions.tele_cond_present.tele_angiocp": 1.0, + "tele_medical_conditions.tele_cond_present.tele_angiopci": 1.0, + "tele_medical_conditions.tele_cond_present.tele_pacemake": 1.0, + "tele_medical_conditions.tele_cond_present.tele_hvalve": 1.0, + "tele_medical_conditions.tele_cond_present.tele_antienc": 1.0, + "tele_medical_conditions.tele_cond_present.tele_antiencx": 1.0, + "tele_medical_conditions.tele_cond_present.tele_othcond": 1.0, + "tele_medical_conditions.tele_cond_present.tele_othcondx": 1.0 + }, + "changelog": "/profiles/changelogs/tvp_d2.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/tvp_t1.json b/src/encoded/schemas/tvp_t1.json new file mode 100644 index 0000000000..e82379ee19 --- /dev/null +++ b/src/encoded/schemas/tvp_t1.json @@ -0,0 +1,182 @@ +{ + "title": "NACC Uniform Data Set (UDS) - TELEPHONE FOLLOW-UPFORM T1: INCLUSION FORM", + "description": "INSTRUCTIONS: This form is to be completed by the clinician or clinical interviewer who will participate in the telephone follow-up. For additional clarification and examples, see UDS Coding Guidebook for Telephone Follow-up Packet, Form T1. Link to NACC Coding Guidebook \nTo print a copy of data previously collected for this form, go to \nhttps://www.alz.washington.edu/MEMBER/siteprint.html \nPlease complete the following before continuing with the Telephone Follow-up Packet.", + "id": "/profiles/uds_tvp_t1.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "tvp_reason", + "telinper", + "telmile" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "tvp_reason": { + "title": "1. Why is the UDS telephone follow-up protocol being used to obtain data about the subject?", + "type": "object", + "properties": { + "telcog": { + "title": "a. Subject is too cognitively impaired for an in-person UDS visit.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "telill": { + "title": "b. Subject is too physically impaired (medical illness or injury) to attend an in-person UDS visit.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "telhome": { + "title": "c. Subject is homebound or in a nursing home and cannot travel.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "telrefu": { + "title": "d. Subject or co-participant refused an in-person UDS visit.", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "telothr": { + "title": "e. Other reason why the UDS telephone follow-up being used", + "type": "string", + "enum": [ + "0 No", + "1 Yes" + ] + }, + "telothrx": { + "title": "e1. Other reason specification: (ADC staff convenience is not an acceptable reason.)", + "type": "string" + } + } + }, + "telinper": { + "title": "2. Is the subject likely to resume in-person UDS follow-up evaluation? \nIf Yes or Unknown, and this is the first telephone packet submitted for the subject, then END FORM HERE. \nIf No or Unknown but two or more consecutive telephone packets have been submitted for this subject, then CONTINUE TO QUESTION 3.", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + }, + "telmile": { + "title": "3. Has a Milestone Form documenting the change to telephone follow-up been completed? (If No, complete a Milestones Form now.)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "9 Unknown" + ] + } + }, + "facets": { + "status": { + "title": "Status" + }, + "tvp_reason.telcog": { + "title": "a. Subject is too cognitively impaired for an in-person UDS visit." + }, + "tvp_reason.telill": { + "title": "b. Subject is too physically impaired (medical illness or injury) to attend an in-person UDS visit." + }, + "tvp_reason.telhome": { + "title": "c. Subject is homebound or in a nursing home and cannot travel." + }, + "tvp_reason.telrefu": { + "title": "d. Subject or co-participant refused an in-person UDS visit." + }, + "tvp_reason.telothr": { + "title": "e. Other reason why the UDS telephone follow-up being used" + }, + "tvp_reason.telothrx": { + "title": "e1. Other reason specification: (ADC staff convenience is not an acceptable reason.)" + }, + "telinper": { + "title": "2. Is the subject likely to resume in-person UDS follow-up evaluation? \nIf Yes or Unknown, and this is the first telephone packet submitted for the subject, then END FORM HERE. \nIf No or Unknown but two or more consecutive telephone packets have been submitted for this subject, then CONTINUE TO QUESTION 3." + }, + "telmile": { + "title": "3. Has a Milestone Form documenting the change to telephone follow-up been completed? (If No, complete a Milestones Form now.)" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "tvp_reason.telcog": { + "title": "a. Subject is too cognitively impaired for an in-person UDS visit." + }, + "tvp_reason.telill": { + "title": "b. Subject is too physically impaired (medical illness or injury) to attend an in-person UDS visit." + }, + "tvp_reason.telhome": { + "title": "c. Subject is homebound or in a nursing home and cannot travel." + }, + "tvp_reason.telrefu": { + "title": "d. Subject or co-participant refused an in-person UDS visit." + }, + "tvp_reason.telothr": { + "title": "e. Other reason why the UDS telephone follow-up being used" + }, + "tvp_reason.telothrx": { + "title": "e1. Other reason specification: (ADC staff convenience is not an acceptable reason.)" + }, + "telinper": { + "title": "2. Is the subject likely to resume in-person UDS follow-up evaluation? \nIf Yes or Unknown, and this is the first telephone packet submitted for the subject, then END FORM HERE. \nIf No or Unknown but two or more consecutive telephone packets have been submitted for this subject, then CONTINUE TO QUESTION 3." + }, + "telmile": { + "title": "3. Has a Milestone Form documenting the change to telephone follow-up been completed? (If No, complete a Milestones Form now.)" + } + }, + "boost_values": { + "patient": 1.0, + "tvp_reason.telcog": 1.0, + "tvp_reason.telill": 1.0, + "tvp_reason.telhome": 1.0, + "tvp_reason.telrefu": 1.0, + "tvp_reason.telothr": 1.0, + "tvp_reason.telothrx": 1.0, + "telinper": 1.0, + "telmile": 1.0 + }, + "changelog": "/profiles/changelogs/tvp_t1.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/tvp_z1x.json b/src/encoded/schemas/tvp_z1x.json new file mode 100644 index 0000000000..f9a79516dc --- /dev/null +++ b/src/encoded/schemas/tvp_z1x.json @@ -0,0 +1,463 @@ +{ + "title": "NACC Uniform Data Set (UDS) - TELEPHONE FOLLOW-UP Form Z1: Form Checklist", + "description": "INSTRUCCIONES: Este formulario debe ser completado por el personal clínico. El NACC espera que todos los formularios UDS se administren a todos los sujetos evaluados, pero entendemos que esto puede ser imposible cuando el sujeto está en estado terminal, cuando no hay informante, o por otras razones. Se requiere una explicación abajo para los formatos no presentados. CLAVE: Si el formulario especificado no se completó, por favor asigne uno de los siguientes códigos: 95 = Problema físico 96 = Problema cognitivo/conductal 97 = Otro problema 98 = Rechazo verbal", + "id": "/profiles/uds_tvp_z1x.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "tele_note_z1x_1", + "tele_note_z1x_2", + "tele_note_z1x_3", + "tele_note_z1x_4", + "tele_note_z1x_5", + "tele_note_z1x_6", + "tele_note_z1x_7", + "tele_note_z1x_8", + "tele_note_z1x_9", + "tele_note_z1x_10", + "tele_note_z1x_11", + "tele_cls_form" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "tele_note_z1x_1": { + "title": "T1 Inclusion Form", + "type": "object", + "properties": { + "tele_langt": { + "title": "1a. Language used for T1 Inclusion Form", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_note_z1x_2": { + "title": "A1 Subject Demographics", + "type": "object", + "properties": { + "tele_langa": { + "title": "2a. Language used for A1 Subject Demographics", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_note_z1x_3": { + "title": "A2 Co-participant Demographics", + "type": "object", + "properties": { + "tele_langa": { + "title": "3a. Language used for A2 Co-participant Demographics", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_note_z1x_4": { + "title": "A3 Subject Family History", + "type": "object", + "properties": { + "tele_a3sub": { + "title": "4b. Submitted A3 Subject Family History", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "tele_a3not": { + "title": "4c. If A3not submitted, specify reason (see Key)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + }, + "tele_langa": { + "title": "4a. Language used for A3 Subject Family History", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_note_z1x_5": { + "title": "A4 Subject Medications", + "type": "object", + "properties": { + "tele_a4sub": { + "title": "5b. Submitted A4 Subject Medications", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "tele_a4not": { + "title": "5c. If A4 not submitted, specify reason (see Key)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + }, + "tele_langa": { + "title": "5a. Language used for A4 Subject Medications", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_note_z1x_6": { + "title": "B4 Global Staging - CDR: Standard and supplemental", + "type": "object", + "properties": { + "tele_langb": { + "title": "6a. Language used for B4 CDR® plus NACC FTLD", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_note_z1x_7": { + "title": "B5 BEHAVIORAL ASSESSMENT NPI-Q", + "type": "object", + "properties": { + "tele_b5sub": { + "title": "7b. Submitted B5 BEHAVIORAL ASSESSMENT NPI-Q", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "tele_b5not": { + "title": "7c. If B5 not submitted, specify reason (see Key)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + }, + "tele_langb": { + "title": "7a. Language used for B5 Behavioral Assessment NPI-Q", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_note_z1x_8": { + "title": "B7 FUNCTIONAL ASSESSMENT - FAS", + "type": "object", + "properties": { + "tele_b7sub": { + "title": "8b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "tele_b7not": { + "title": "8c. If B7 not submitted, specify reason (see Key)", + "type": "string", + "enum": [ + "95 - Physical problem", + "96 - Cognitive/behavior problem", + "97 - Other problem", + "98 - Verbal refusal" + ] + }, + "tele_langb": { + "title": "8a. Language used for B7 Functional Assessment - FAS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_note_z1x_9": { + "title": "B9 Clinician Judgment of Symptoms", + "type": "object", + "properties": { + "tele_langb": { + "title": "9a. Language used for B9 Clinician Judgment of Symptoms", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_note_z1x_10": { + "title": "D1 Clinician Diagnosis", + "type": "object", + "properties": { + "tele_langd": { + "title": "10a. Language used for D1 Clinician Diagnosis", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_note_z1x_11": { + "title": "D2 Clinician-assessed Medical Conditions", + "type": "object", + "properties": { + "tele_langd": { + "title": "11a. Language used for D2 Clinician-assessed Medical Conditions", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + }, + "tele_cls_form": { + "title": "CLS Form", + "type": "object", + "properties": { + "tele_clssub": { + "title": "12b. Submitted CLS Linguistic History of Subject", + "description": "(Submit only once)", + "type": "string", + "enum": [ + "1 Yes", + "0 No" + ] + }, + "tele_langcls": { + "title": "12a. Language used for CLS", + "type": "string", + "enum": [ + "1 English", + "2 Spanish" + ] + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "tele_note_z1x_1.tele_langt": { + "title": "1a. Language used for T1 Inclusion Form" + }, + "tele_note_z1x_2.tele_langa": { + "title": "2a. Language used for A1 Subject Demographics" + }, + "tele_note_z1x_3.tele_langa": { + "title": "3a. Language used for A2 Co-participant Demographics" + }, + "tele_note_z1x_4.tele_a3sub": { + "title": "4b. Submitted A3 Subject Family History" + }, + "tele_note_z1x_4.tele_a3not": { + "title": "4c. If A3not submitted, specify reason (see Key)" + }, + "tele_note_z1x_4.tele_langa": { + "title": "4a. Language used for A3 Subject Family History" + }, + "tele_note_z1x_5.tele_a4sub": { + "title": "5b. Submitted A4 Subject Medications" + }, + "tele_note_z1x_5.tele_a4not": { + "title": "5c. If A4 not submitted, specify reason (see Key)" + }, + "tele_note_z1x_5.tele_langa": { + "title": "5a. Language used for A4 Subject Medications" + }, + "tele_note_z1x_6.tele_langb": { + "title": "6a. Language used for B4 CDR® plus NACC FTLD" + }, + "tele_note_z1x_7.tele_b5sub": { + "title": "7b. Submitted B5 BEHAVIORAL ASSESSMENT NPI-Q" + }, + "tele_note_z1x_7.tele_b5not": { + "title": "7c. If B5 not submitted, specify reason (see Key)" + }, + "tele_note_z1x_7.tele_langb": { + "title": "7a. Language used for B5 Behavioral Assessment NPI-Q" + }, + "tele_note_z1x_8.tele_b7sub": { + "title": "8b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS" + }, + "tele_note_z1x_8.tele_b7not": { + "title": "8c. If B7 not submitted, specify reason (see Key)" + }, + "tele_note_z1x_8.tele_langb": { + "title": "8a. Language used for B7 Functional Assessment - FAS" + }, + "tele_note_z1x_9.tele_langb": { + "title": "9a. Language used for B9 Clinician Judgment of Symptoms" + }, + "tele_note_z1x_10.tele_langd": { + "title": "10a. Language used for D1 Clinician Diagnosis" + }, + "tele_note_z1x_11.tele_langd": { + "title": "11a. Language used for D2 Clinician-assessed Medical Conditions" + }, + "tele_cls_form.tele_clssub": { + "title": "12b. Submitted CLS Linguistic History of Subject" + }, + "tele_cls_form.tele_langcls": { + "title": "12a. Language used for CLS" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "tele_note_z1x_1.tele_langt": { + "title": "1a. Language used for T1 Inclusion Form" + }, + "tele_note_z1x_2.tele_langa": { + "title": "2a. Language used for A1 Subject Demographics" + }, + "tele_note_z1x_3.tele_langa": { + "title": "3a. Language used for A2 Co-participant Demographics" + }, + "tele_note_z1x_4.tele_a3sub": { + "title": "4b. Submitted A3 Subject Family History" + }, + "tele_note_z1x_4.tele_a3not": { + "title": "4c. If A3not submitted, specify reason (see Key)" + }, + "tele_note_z1x_4.tele_langa": { + "title": "4a. Language used for A3 Subject Family History" + }, + "tele_note_z1x_5.tele_a4sub": { + "title": "5b. Submitted A4 Subject Medications" + }, + "tele_note_z1x_5.tele_a4not": { + "title": "5c. If A4 not submitted, specify reason (see Key)" + }, + "tele_note_z1x_5.tele_langa": { + "title": "5a. Language used for A4 Subject Medications" + }, + "tele_note_z1x_6.tele_langb": { + "title": "6a. Language used for B4 CDR® plus NACC FTLD" + }, + "tele_note_z1x_7.tele_b5sub": { + "title": "7b. Submitted B5 BEHAVIORAL ASSESSMENT NPI-Q" + }, + "tele_note_z1x_7.tele_b5not": { + "title": "7c. If B5 not submitted, specify reason (see Key)" + }, + "tele_note_z1x_7.tele_langb": { + "title": "7a. Language used for B5 Behavioral Assessment NPI-Q" + }, + "tele_note_z1x_8.tele_b7sub": { + "title": "8b. Submitted B7 FUNCTIONAL ASSESSMENT - FAS" + }, + "tele_note_z1x_8.tele_b7not": { + "title": "8c. If B7 not submitted, specify reason (see Key)" + }, + "tele_note_z1x_8.tele_langb": { + "title": "8a. Language used for B7 Functional Assessment - FAS" + }, + "tele_note_z1x_9.tele_langb": { + "title": "9a. Language used for B9 Clinician Judgment of Symptoms" + }, + "tele_note_z1x_10.tele_langd": { + "title": "10a. Language used for D1 Clinician Diagnosis" + }, + "tele_note_z1x_11.tele_langd": { + "title": "11a. Language used for D2 Clinician-assessed Medical Conditions" + }, + "tele_cls_form.tele_clssub": { + "title": "12b. Submitted CLS Linguistic History of Subject" + }, + "tele_cls_form.tele_langcls": { + "title": "12a. Language used for CLS" + } + }, + "boost_values": { + "patient": 1.0, + "tele_note_z1x_1.tele_langt": 1.0, + "tele_note_z1x_2.tele_langa": 1.0, + "tele_note_z1x_3.tele_langa": 1.0, + "tele_note_z1x_4.tele_a3sub": 1.0, + "tele_note_z1x_4.tele_a3not": 1.0, + "tele_note_z1x_4.tele_langa": 1.0, + "tele_note_z1x_5.tele_a4sub": 1.0, + "tele_note_z1x_5.tele_a4not": 1.0, + "tele_note_z1x_5.tele_langa": 1.0, + "tele_note_z1x_6.tele_langb": 1.0, + "tele_note_z1x_7.tele_b5sub": 1.0, + "tele_note_z1x_7.tele_b5not": 1.0, + "tele_note_z1x_7.tele_langb": 1.0, + "tele_note_z1x_8.tele_b7sub": 1.0, + "tele_note_z1x_8.tele_b7not": 1.0, + "tele_note_z1x_8.tele_langb": 1.0, + "tele_note_z1x_9.tele_langb": 1.0, + "tele_note_z1x_10.tele_langd": 1.0, + "tele_note_z1x_11.tele_langd": 1.0, + "tele_cls_form.tele_clssub": 1.0, + "tele_cls_form.tele_langcls": 1.0 + }, + "changelog": "/profiles/changelogs/tvp_z1x.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/updrs.json b/src/encoded/schemas/updrs.json new file mode 100644 index 0000000000..8c3c42ef0e --- /dev/null +++ b/src/encoded/schemas/updrs.json @@ -0,0 +1,919 @@ +{ + "title": "ADC Form B3.1 Unified Parkinson's Disease Rating Scale (UPDRS)-Motor Exam*", + "description": "NOTE: This form is to be completed by the clinician or other trained health professional. For additional clarification and examples, see UDS Coding Guidebook Version 2. Check only ONE box per question. *Fahn S, Elton RL, UPDRS Development Committee. The Unified Parkinson's Disease Rating Scale. In Fahn S,Marsden CD, Caine DB, Goldstein M, eds. Recent developments in Parkinson's disease, Vol. 2. Florham Park, NJ: Macmillan Healthcare Infonnation,1987:153-163,293-304. Reproduced by permission of the author.", + "id": "/profiles/updrs.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "pdnormal" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here", + "type": "boolean" + }, + "speech": { + "title": "1. Speech", + "type": "string", + "enum": [ + "0 Normal", + "1 Slight loss of expression, diction and/or volume", + "2 Monotone, slurred but understandable; moderately impaired", + "3 Marked impairment, difficult to understand", + "4 Unintelligible", + "8 Untestable" + ] + }, + "speech_untest": { + "title": "Specify reason", + "type": "string" + }, + "face_exp": { + "title": "2. Facial expression", + "type": "string", + "enum": [ + "0 Normal", + "1 Minimal hypomimia, could be normal \"poker face\"", + "2 Slight but definitely abnormal diminution of facial expression", + "3 Moderate hypomimia; lips parted some of the time", + "4 Masked or fixed facies with severe or complete loss of facial expression; lips parted ¼ inches or more", + "8 Untestable" + ] + }, + "face_exp_untest": { + "title": "Specify reason", + "type": "string" + }, + "trem_at_rest": { + "title": "3. Tremor at rest", + "type": "object", + "properties": { + "fac_lip_chin": { + "title": "3a. Face, lips, chin", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "r_hand": { + "title": "3b. Right hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "l_hand": { + "title": "3c. Left hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "r_foot": { + "title": "3d. Right foot", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "l_foot": { + "title": "3e. Left foot", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight and infrequently present", + "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "3 Moderate in amplitude and present most of the time", + "4 Marked in amplitude and present most of the time", + "8 Untestable" + ] + }, + "fac_lip_chin_untest": { + "title": "Face, lips, chin\nSpecify reason", + "type": "string" + }, + "r_hand_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "l_hand_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + }, + "r_foot_untest": { + "title": "Right foot\nSpecify reason", + "type": "string" + }, + "l_foot_untest": { + "title": "Left foot\nSpecify reason", + "type": "string" + } + } + }, + "action_trem_hands": { + "title": "4. Action or postural tremor of hands", + "type": "object", + "properties": { + "act_r_hand": { + "title": "4a. Right hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight; present with action", + "2 Moderate in amplitude, present with action", + "3 Moderate in amplitude with posture holding as well as action", + "4 Marked in amplitude; interferes with feeding", + "8 Untestable" + ] + }, + "act_l_hand": { + "title": "4b. Left hand", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight; present with action", + "2 Moderate in amplitude, present with action", + "3 Moderate in amplitude with posture holding as well as action", + "4 Marked in amplitude; interferes with feeding", + "8 Untestable" + ] + }, + "act_r_hand_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "act_l_hand_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "rigidity": { + "title": "5. Rigidity\n(judged on passive movement of major joints with patient relaxed in sitting position; cogwheeling to be ignored)", + "type": "object", + "properties": { + "rig_neck": { + "title": "5a. Neck", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "r_up": { + "title": "5b. Right upper extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "l_up": { + "title": "5c. Left upper extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "r_low": { + "title": "5d. Right lower extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "l_low": { + "title": "5e. Left lower extremity", + "type": "string", + "enum": [ + "0 Absent", + "1 Slight or detectable only when activated by mirror or other movements", + "2 Mild to moderate", + "3 Marked, but full range of motion easily achieved", + "4 Severe; range of motion achieved with difficulty", + "8 Untestable" + ] + }, + "rig_neck_untest": { + "title": "Neck\nSpecify reason", + "type": "string" + }, + "r_up_untest": { + "title": "Right upper extremity\nSpecify reason", + "type": "string" + }, + "l_up_untest": { + "title": "Left upper extremity\nSpecify reason", + "type": "string" + }, + "r_low_untest": { + "title": "Right lower extremity\nSpecify reason", + "type": "string" + }, + "l_low_untest": { + "title": "Left lower extremity\nSpecify reason", + "type": "string" + } + } + }, + "finger_taps": { + "title": "6. Finger taps\n(patient taps thumb with index finger in rapid succession)", + "type": "object", + "properties": { + "taps_r": { + "title": "6a. Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "taps_l": { + "title": "6b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "taps_r_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "taps_l_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "hand_move": { + "title": "7. Hand movements\n(patient opens and closes hands in rapid succession)", + "type": "object", + "properties": { + "movem_r": { + "title": "7a, Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "movem_l": { + "title": "7b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "movem_r_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "movem_l_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "move_of_hands": { + "title": "8. Rapid alternating movements of hands\n(pronation-supination movements of hands, vertically and horizontally, with as large an amplitude as possible, both hands simultaneously)", + "type": "object", + "properties": { + "rap_alt_r": { + "title": "8a. Right hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "rap_alt_l": { + "title": "8b. Left hand", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "rap_alt_r_untest": { + "title": "Right hand\nSpecify reason", + "type": "string" + }, + "rap_alt_l_untest": { + "title": "Left hand\nSpecify reason", + "type": "string" + } + } + }, + "leg_agil": { + "title": "9. Leg agility\n(patient taps heel on the ground in rapid succession, picking up entire leg; amplitude should be at least 3 inches)", + "type": "object", + "properties": { + "leg_agil_r": { + "title": "9a. Right leg", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "leg_agil_l": { + "title": "9b. Left leg", + "type": "string", + "enum": [ + "0 Normal", + "1 Mild slowing and/or reduction in amplitude", + "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement", + "4 Can barely perform the task", + "8 Untestable" + ] + }, + "leg_agil_r_untest": { + "title": "Right leg\nSpecify reason", + "type": "string" + }, + "leg_agil_l_untest": { + "title": "Left leg\nSpecify reason", + "type": "string" + } + } + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)", + "type": "string", + "enum": [ + "0 Normal", + "1 Slow; or may need more than one attempt", + "2 Pushes self up from arms of seat", + "3 Tends to fall back and may have to try more than one time, but can get up without help", + "4 Unable to arise without help.", + "8 Untestable" + ] + }, + "arise_chair_untest": { + "title": "Specify reason", + "type": "string" + }, + "posture": { + "title": "11. Posture", + "type": "string", + "enum": [ + "0 Normal", + "1 Not quite erect, slightly stooped posture; could be normal for older person", + "2 Moderately stooped posture, definitely abnormal; can be slightly leaning to one side", + "3 Severely stooped posture with kyphosis; can be moderately leaning to one side", + "4 Marked flexion with extreme abnormality of posture", + "8 Untestable" + ] + }, + "posture_untest": { + "title": "Specify reason", + "type": "string" + }, + "gait": { + "title": "12. Gait", + "type": "string", + "enum": [ + "0 Normal", + "1 Walks slowly; may shuffle with short steps, but no festination (hastening steps) or propulsion", + "2 Walks with difficulty, but requires little or no assistance; may have some festination, short steps, or propulsion", + "3 Severe disturbance of gait requiring assistance", + "4 Cannot walk at all, even with assistance.", + "8 Untestable" + ] + }, + "gait_untest": { + "title": "Specify reason", + "type": "string" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)", + "type": "string", + "enum": [ + "0 Normal erect", + "1 Retropulsion, but recovers unaided", + "2 Absence of postural response; would fall if not caught by examiner", + "3 Very unstable, tends to lose balance spontaneously", + "4 Unable to stand without assistance", + "8 Untestable" + ] + }, + "post_stab_untest": { + "title": "Specify reason", + "type": "string" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)", + "type": "string", + "enum": [ + "0 None", + "1 Minimal slowness, giving movement a deliberate character; could be normal for some persons; possibly reduced amplitude", + "2 Mild degree of slowness and poverty of movement which is definitely abnormal. Alternatively, some reduced amplitude", + "3 Moderate slowness, poverty or small amplitude of movement", + "4 Marked slowness, poverty or small amplitude of movement", + "8 Untestable" + ] + }, + "bradykin_untest": { + "title": "Specify reason", + "type": "string" + } + }, + "facets": { + "status": { + "title": "Status" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here" + }, + "speech": { + "title": "1. Speech" + }, + "speech_untest": { + "title": "Specify reason" + }, + "face_exp": { + "title": "2. Facial expression" + }, + "face_exp_untest": { + "title": "Specify reason" + }, + "trem_at_rest.fac_lip_chin": { + "title": "3a. Face, lips, chin" + }, + "trem_at_rest.r_hand": { + "title": "3b. Right hand" + }, + "trem_at_rest.l_hand": { + "title": "3c. Left hand" + }, + "trem_at_rest.r_foot": { + "title": "3d. Right foot" + }, + "trem_at_rest.l_foot": { + "title": "3e. Left foot" + }, + "trem_at_rest.fac_lip_chin_untest": { + "title": "Face, lips, chin\nSpecify reason" + }, + "trem_at_rest.r_hand_untest": { + "title": "trem_at_rest.right hand\nSpecify reason" + }, + "trem_at_rest.l_hand_untest": { + "title": "trem_at_rest.left hand\nSpecify reason" + }, + "trem_at_rest.r_foot_untest": { + "title": "trem_at_rest.right foot\nSpecify reason" + }, + "trem_at_rest.l_foot_untest": { + "title": "trem_at_rest.left foot\nSpecify reason" + }, + "action_trem_hands.act_r_hand": { + "title": "4a. Right hand" + }, + "action_trem_hands.act_l_hand": { + "title": "4b. Left hand" + }, + "action_trem_hands.act_r_hand_untest": { + "title": "Right hand\nSpecify reason" + }, + "action_trem_hands.act_l_hand_untest": { + "title": "Left hand\nSpecify reason" + }, + "rigidity.rig_neck": { + "title": "5a. Neck" + }, + "rigidity.r_up": { + "title": "5b. Right upper extremity" + }, + "rigidity.l_up": { + "title": "5c. Left upper extremity" + }, + "rigidity.r_low": { + "title": "5d. Right lower extremity" + }, + "rigidity.l_low": { + "title": "5e. Left lower extremity" + }, + "rigidity.rig_neck_untest": { + "title": "Neck\nSpecify reason" + }, + "rigidity.r_up_untest": { + "title": "rigidity.right upper extremity\nSpecify reason" + }, + "rigidity.l_up_untest": { + "title": "rigidity.left upper extremity\nSpecify reason" + }, + "rigidity.r_low_untest": { + "title": "rigidity.right lower extremity\nSpecify reason" + }, + "rigidity.l_low_untest": { + "title": "rigidity.left lower extremity\nSpecify reason" + }, + "finger_taps.taps_r": { + "title": "6a. Right hand" + }, + "finger_taps.taps_l": { + "title": "6b. Left hand" + }, + "finger_taps.taps_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "finger_taps.taps_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "hand_move.movem_r": { + "title": "7a, Right hand" + }, + "hand_move.movem_l": { + "title": "7b. Left hand" + }, + "hand_move.movem_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "hand_move.movem_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "move_of_hands.rap_alt_r": { + "title": "8a. Right hand" + }, + "move_of_hands.rap_alt_l": { + "title": "8b. Left hand" + }, + "move_of_hands.rap_alt_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "move_of_hands.rap_alt_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "leg_agil.leg_agil_r": { + "title": "9a. Right leg" + }, + "leg_agil.leg_agil_l": { + "title": "9b. Left leg" + }, + "leg_agil.leg_agil_r_untest": { + "title": "Right leg\nSpecify reason" + }, + "leg_agil.leg_agil_l_untest": { + "title": "Left leg\nSpecify reason" + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)" + }, + "arise_chair_untest": { + "title": "Specify reason" + }, + "posture": { + "title": "11. Posture" + }, + "posture_untest": { + "title": "Specify reason" + }, + "gait": { + "title": "12. Gait" + }, + "gait_untest": { + "title": "Specify reason" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)" + }, + "post_stab_untest": { + "title": "Specify reason" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)" + }, + "bradykin_untest": { + "title": "Specify reason" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "pdnormal": { + "title": "(Optional) UPDRS normal - If the clinician completes the UPDRS examination and determines all items are normal, check this box and end form here" + }, + "speech": { + "title": "1. Speech" + }, + "speech_untest": { + "title": "Specify reason" + }, + "face_exp": { + "title": "2. Facial expression" + }, + "face_exp_untest": { + "title": "Specify reason" + }, + "trem_at_rest.fac_lip_chin": { + "title": "3a. Face, lips, chin" + }, + "trem_at_rest.r_hand": { + "title": "3b. Right hand" + }, + "trem_at_rest.l_hand": { + "title": "3c. Left hand" + }, + "trem_at_rest.r_foot": { + "title": "3d. Right foot" + }, + "trem_at_rest.l_foot": { + "title": "3e. Left foot" + }, + "trem_at_rest.fac_lip_chin_untest": { + "title": "Face, lips, chin\nSpecify reason" + }, + "trem_at_rest.r_hand_untest": { + "title": "trem_at_rest.right hand\nSpecify reason" + }, + "trem_at_rest.l_hand_untest": { + "title": "trem_at_rest.left hand\nSpecify reason" + }, + "trem_at_rest.r_foot_untest": { + "title": "trem_at_rest.right foot\nSpecify reason" + }, + "trem_at_rest.l_foot_untest": { + "title": "trem_at_rest.left foot\nSpecify reason" + }, + "action_trem_hands.act_r_hand": { + "title": "4a. Right hand" + }, + "action_trem_hands.act_l_hand": { + "title": "4b. Left hand" + }, + "action_trem_hands.act_r_hand_untest": { + "title": "Right hand\nSpecify reason" + }, + "action_trem_hands.act_l_hand_untest": { + "title": "Left hand\nSpecify reason" + }, + "rigidity.rig_neck": { + "title": "5a. Neck" + }, + "rigidity.r_up": { + "title": "5b. Right upper extremity" + }, + "rigidity.l_up": { + "title": "5c. Left upper extremity" + }, + "rigidity.r_low": { + "title": "5d. Right lower extremity" + }, + "rigidity.l_low": { + "title": "5e. Left lower extremity" + }, + "rigidity.rig_neck_untest": { + "title": "Neck\nSpecify reason" + }, + "rigidity.r_up_untest": { + "title": "rigidity.right upper extremity\nSpecify reason" + }, + "rigidity.l_up_untest": { + "title": "rigidity.left upper extremity\nSpecify reason" + }, + "rigidity.r_low_untest": { + "title": "rigidity.right lower extremity\nSpecify reason" + }, + "rigidity.l_low_untest": { + "title": "rigidity.left lower extremity\nSpecify reason" + }, + "finger_taps.taps_r": { + "title": "6a. Right hand" + }, + "finger_taps.taps_l": { + "title": "6b. Left hand" + }, + "finger_taps.taps_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "finger_taps.taps_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "hand_move.movem_r": { + "title": "7a, Right hand" + }, + "hand_move.movem_l": { + "title": "7b. Left hand" + }, + "hand_move.movem_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "hand_move.movem_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "move_of_hands.rap_alt_r": { + "title": "8a. Right hand" + }, + "move_of_hands.rap_alt_l": { + "title": "8b. Left hand" + }, + "move_of_hands.rap_alt_r_untest": { + "title": "Right hand\nSpecify reason" + }, + "move_of_hands.rap_alt_l_untest": { + "title": "Left hand\nSpecify reason" + }, + "leg_agil.leg_agil_r": { + "title": "9a. Right leg" + }, + "leg_agil.leg_agil_l": { + "title": "9b. Left leg" + }, + "leg_agil.leg_agil_r_untest": { + "title": "Right leg\nSpecify reason" + }, + "leg_agil.leg_agil_l_untest": { + "title": "Left leg\nSpecify reason" + }, + "arise_chair": { + "title": "10. Arising from chair(patient attempts to rise from a straight-backed chair, with arms folded across chest)" + }, + "arise_chair_untest": { + "title": "Specify reason" + }, + "posture": { + "title": "11. Posture" + }, + "posture_untest": { + "title": "Specify reason" + }, + "gait": { + "title": "12. Gait" + }, + "gait_untest": { + "title": "Specify reason" + }, + "post_stab": { + "title": "13. Posture stability(response to sudden, strong posterior displacement produced by pull on shoulders while patient erect with eyes open and feet slightly apart; patient is prepared)" + }, + "post_stab_untest": { + "title": "Specify reason" + }, + "bradykin": { + "title": "14. Body bradykinesia and hypokinesia(combining slowness, hesitancy, decreased arm swing, small amplitude, and poverty of movement in general)" + }, + "bradykin_untest": { + "title": "Specify reason" + } + }, + "boost_values": { + "patient": 1.0, + "pdnormal": 1.0, + "speech": 1.0, + "speech_untest": 1.0, + "face_exp": 1.0, + "face_exp_untest": 1.0, + "trem_at_rest.fac_lip_chin": 1.0, + "trem_at_rest.r_hand": 1.0, + "trem_at_rest.l_hand": 1.0, + "trem_at_rest.r_foot": 1.0, + "trem_at_rest.l_foot": 1.0, + "trem_at_rest.fac_lip_chin_untest": 1.0, + "trem_at_rest.r_hand_untest": 1.0, + "trem_at_rest.l_hand_untest": 1.0, + "trem_at_rest.r_foot_untest": 1.0, + "trem_at_rest.l_foot_untest": 1.0, + "action_trem_hands.act_r_hand": 1.0, + "action_trem_hands.act_l_hand": 1.0, + "action_trem_hands.act_r_hand_untest": 1.0, + "action_trem_hands.act_l_hand_untest": 1.0, + "rigidity.rig_neck": 1.0, + "rigidity.r_up": 1.0, + "rigidity.l_up": 1.0, + "rigidity.r_low": 1.0, + "rigidity.l_low": 1.0, + "rigidity.rig_neck_untest": 1.0, + "rigidity.r_up_untest": 1.0, + "rigidity.l_up_untest": 1.0, + "rigidity.r_low_untest": 1.0, + "rigidity.l_low_untest": 1.0, + "finger_taps.taps_r": 1.0, + "finger_taps.taps_l": 1.0, + "finger_taps.taps_r_untest": 1.0, + "finger_taps.taps_l_untest": 1.0, + "hand_move.movem_r": 1.0, + "hand_move.movem_l": 1.0, + "hand_move.movem_r_untest": 1.0, + "hand_move.movem_l_untest": 1.0, + "move_of_hands.rap_alt_r": 1.0, + "move_of_hands.rap_alt_l": 1.0, + "move_of_hands.rap_alt_r_untest": 1.0, + "move_of_hands.rap_alt_l_untest": 1.0, + "leg_agil.leg_agil_r": 1.0, + "leg_agil.leg_agil_l": 1.0, + "leg_agil.leg_agil_r_untest": 1.0, + "leg_agil.leg_agil_l_untest": 1.0, + "arise_chair": 1.0, + "arise_chair_untest": 1.0, + "posture": 1.0, + "posture_untest": 1.0, + "gait": 1.0, + "gait_untest": 1.0, + "post_stab": 1.0, + "post_stab_untest": 1.0, + "bradykin": 1.0, + "bradykin_untest": 1.0 + }, + "changelog": "/profiles/changelogs/updrs.md" +} \ No newline at end of file diff --git a/src/encoded/schemas/visit_contact.json b/src/encoded/schemas/visit_contact.json new file mode 100644 index 0000000000..e3535ba702 --- /dev/null +++ b/src/encoded/schemas/visit_contact.json @@ -0,0 +1,2373 @@ +{ + "title": "Visit/Contact", + "description": "ADC Form A0.2", + "id": "/profiles/visit_contact.json", + "$schema": "http://json-schema.org/draft-04/schema#", + "identifyingProperties": [ + "uuid" + ], + "required": [ + "isadcvis" + ], + "additionalProperties": false, + "mixinProperties": [ + { + "$ref": "mixins.json#/schema_version" + }, + { + "$ref": "mixins.json#/submitted" + }, + { + "$ref": "mixins.json#/standard_status" + }, + { + "$ref": "mixins.json#/header" + }, + { + "$ref": "mixins.json#/examinier_initials" + }, + { + "$ref": "mixins.json#/form_status" + }, + { + "$ref": "mixins.json#/uuid" + } + ], + "type": "object", + "properties": { + "schema_version": { + "default": "1" + }, + "isadcvis": { + "title": "1. ADC Cohort Visit?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "adcvistype": { + "title": "If yes, which type of visit?", + "type": "string", + "enum": [ + "1 Initial", + "2 Follow-up", + "3 Exit" + ] + }, + "isrchvis": { + "title": "2. Research study visit", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "rchvistype": { + "title": "Research study visit type", + "type": "string", + "enum": [ + "1 Initial", + "2 Follow-up", + "3 Exit" + ] + }, + "study1": { + "title": "Study (1)", + "type": "string", + "enum": [ + "A Skin Biopsy", + "AA Aricept", + "AB Caregiver Enrichment Program", + "AC Milameline 979-15", + "AD Exelon ENAB-356", + "AE Galantamine (GAL-10-18)", + "AF MCI", + "AG MINT", + "AH Melatonin", + "AI APO-E", + "AJ Hyperlipidemia", + "AK Normal Control Instrument", + "AL NSAID", + "AM Exelon-TFLS", + "AN Pfizer CP-457920", + "AO GAL-INT-11", + "AP Memantine 01-03", + "AQ Memantine 12", + "AR Exelon - CENA-713B US01", + "AS CATIE", + "AT Primary Prevention Instrument", + "AU Fujisawa FK-960-0005", + "AV Homocysteine - Diaz-Arristia", + "AW TAP/DAP", + "AX Levetiracetam", + "AY Statin-Hypolipedemia", + "AZ Xaliproden/EFC2946", + "B Hydergine", + "BA FTD-Memantine", + "BB TAP-DAP", + "BC Memantine-23", + "BD Ono 2506 PO", + "BE simvastatin Double Blind", + "BF Homocysteine-ADCS", + "BG Huperzine Double Blind", + "BH Pilot-Pet", + "BI Elan AAB-001-201", + "BJ LOAD Genetics", + "BK MPC 7869-Flurizan", + "BL Control Autopsy Cohort", + "BM ADNI", + "BN Vega-Weiner-DEXA", + "BO Lu-Allen", + "BP Texas AD Research Consortium", + "BQ DHA-Omega III", + "BR Huperzine Open Label", + "BS Valproate Double Blind", + "BT Flurizan Open Label", + "BU Allen/ Rypma", + "BV Lu-CO2", + "BW Womack K23", + "BX MRI Studies (Hao)", + "BY E2020-G000-326", + "BZ CVR", + "C Cortisol Secretion/AD Progress", + "CA NTB-Elan", + "CB High-Low (Tent Study)", + "CC Elan-301/302", + "CD Rage", + "CE Elan 251", + "CF Novartis CAD 106", + "CG Hart-FMRI/FEEG", + "CH BMS-CN156-013/ CN156-018", + "CI Janssen 351", + "CJ Baxter-IGIV", + "CK Rong Zhang -Exercise-", + "CL ADNI-GO", + "CM Free space", + "CN ADNI-2", + "CO Dallas Heart Study", + "CP LBD Module", + "CQ FTLD-module", + "D IV Physostigmine w/ Spect", + "E Longitudinal Neuropsych", + "F Physostigmine Dbl Blind Dose", + "G Dup 996-014/016", + "H SQ 29,852 Open Label", + "I Oxiracetam 800Mg D/B Placebo", + "J Acetyl-L-Carnitine 1gm D/B Pla", + "K DuP 996-019/025", + "L Heptylphysostigmine Phase II", + "M Eli Lilly LY246708", + "N Hoffman LaRoche RO-19-1327", + "O Eisai - E2020 301/303", + "P SmithKline 202026 005/007", + "Q Agitation Protocol", + "R Estrogen Protocol", + "S Prednisone Protocol", + "T Spanish Instrument Protocol", + "U Sigma Tau ST-94-101", + "V Instrument Protocol", + "W SmithKline 202026 045", + "X Physician IND-acetyl-l-carniti", + "Y Idebenone", + "Z Postmortem Brain Donation" + ] + }, + "phase1": { + "title": "Phase (Study 1)", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4" + ] + }, + "study2": { + "title": "Study (2)", + "type": "string", + "enum": [ + "A Skin Biopsy", + "AA Aricept", + "AB Caregiver Enrichment Program", + "AC Milameline 979-15", + "AD Exelon ENAB-356", + "AE Galantamine (GAL-10-18)", + "AF MCI", + "AG MINT", + "AH Melatonin", + "AI APO-E", + "AJ Hyperlipidemia", + "AK Normal Control Instrument", + "AL NSAID", + "AM Exelon-TFLS", + "AN Pfizer CP-457920", + "AO GAL-INT-11", + "AP Memantine 01-03", + "AQ Memantine 12", + "AR Exelon - CENA-713B US01", + "AS CATIE", + "AT Primary Prevention Instrument", + "AU Fujisawa FK-960-0005", + "AV Homocysteine - Diaz-Arristia", + "AW TAP/DAP", + "AX Levetiracetam", + "AY Statin-Hypolipedemia", + "AZ Xaliproden/EFC2946", + "B Hydergine", + "BA FTD-Memantine", + "BB TAP-DAP", + "BC Memantine-23", + "BD Ono 2506 PO", + "BE simvastatin Double Blind", + "BF Homocysteine-ADCS", + "BG Huperzine Double Blind", + "BH Pilot-Pet", + "BI Elan AAB-001-201", + "BJ LOAD Genetics", + "BK MPC 7869-Flurizan", + "BL Control Autopsy Cohort", + "BM ADNI", + "BN Vega-Weiner-DEXA", + "BO Lu-Allen", + "BP Texas AD Research Consortium", + "BQ DHA-Omega III", + "BR Huperzine Open Label", + "BS Valproate Double Blind", + "BT Flurizan Open Label", + "BU Allen/ Rypma", + "BV Lu-CO2", + "BW Womack K23", + "BX MRI Studies (Hao)", + "BY E2020-G000-326", + "BZ CVR", + "C Cortisol Secretion/AD Progress", + "CA NTB-Elan", + "CB High-Low (Tent Study)", + "CC Elan-301/302", + "CD Rage", + "CE Elan 251", + "CF Novartis CAD 106", + "CG Hart-FMRI/FEEG", + "CH BMS-CN156-013/ CN156-018", + "CI Janssen 351", + "CJ Baxter-IGIV", + "CK Rong Zhang -Exercise-", + "CL ADNI-GO", + "CM Free space", + "CN ADNI-2", + "CO Dallas Heart Study", + "CP LBD Module", + "CQ FTLD-module", + "D IV Physostigmine w/ Spect", + "E Longitudinal Neuropsych", + "F Physostigmine Dbl Blind Dose", + "G Dup 996-014/016", + "H SQ 29,852 Open Label", + "I Oxiracetam 800Mg D/B Placebo", + "J Acetyl-L-Carnitine 1gm D/B Pla", + "K DuP 996-019/025", + "L Heptylphysostigmine Phase II", + "M Eli Lilly LY246708", + "N Hoffman LaRoche RO-19-1327", + "O Eisai - E2020 301/303", + "P SmithKline 202026 005/007", + "Q Agitation Protocol", + "R Estrogen Protocol", + "S Prednisone Protocol", + "T Spanish Instrument Protocol", + "U Sigma Tau ST-94-101", + "V Instrument Protocol", + "W SmithKline 202026 045", + "X Physician IND-acetyl-l-carniti", + "Y Idebenone", + "Z Postmortem Brain Donation" + ] + }, + "phase2": { + "title": "Phase (Study 2)", + "type": "string", + "enum": [ + "0 0", + "1 1", + "2 2", + "3 3", + "4 4" + ] + }, + "vishow": { + "title": "3. Visit made", + "type": "string", + "enum": [ + "1 In person", + "2 By phone", + "3 Tele-medicine", + "9 Unknown" + ] + }, + "medck": { + "title": "Med check", + "description": "(Field discontinued 9-1-2005)", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "vissite": { + "title": "4. Site of visit", + "type": "string", + "enum": [ + "1 UTSW", + "2 Native American Satellite", + "3 Other" + ] + }, + "vissite_natam": { + "title": "Native American Satellite", + "type": "string" + }, + "vissite_oth": { + "title": "Specify other site", + "type": "string" + }, + "time_phone": { + "title": "Approximate time (hours/week) caregiver spends with patient by PHONE", + "type": "string" + }, + "time_inperson": { + "title": "Approximate time (hours/week) caregiver spends with patient IN PERSON", + "type": "string" + }, + "marstat": { + "title": "Marital status.", + "type": "string" + }, + "residence": { + "title": "Type of Residence.", + "type": "string" + }, + "residencedt": { + "title": "If not private residence, date entered.", + "type": "string" + }, + "consent": { + "title": "Consent", + "type": "object", + "properties": { + "cinfo": { + "title": "1. May the investigators use the information from your evaluations and treatment, without identifying you, to learn about brain disease?", + "description": "(Added to Visit/Contact 9-1-2005)", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Not answered (missing)" + ] + }, + "csampblood": { + "title": "2. May the investigators obtain a blood sample?", + "description": "(Added to Visit/Contact 9-1-2005)", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Not answered (missing)" + ] + }, + "csampswab": { + "title": "If you are not willing to let the investigators obtain a blood sample, may they obtain cells by a cheek swab?", + "description": "(Added to Visit/Contact 9-1-2005)", + "type": "string", + "enum": [ + "1 Yes", + "0 N0", + "9 Not answered" + ] + }, + "csamppunct": { + "title": "3. May the investigators perform a lumbar puncture to obtain a CSF sample?", + "description": "(Added to Visit/Contact 9-1-2005)", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Not answered (missing)" + ] + }, + "cdonatebr": { + "title": "4. Are you willing to donate your brain at the time of death for research? ", + "description": "(Added to Visit/Contact 9-1-2005)", + "type": "string", + "enum": [ + "0 0 No", + "1 Yes", + "2 Refused", + "3 Decision deferred", + "9 Unknown, not answered" + ] + }, + "cdonatebrdt": { + "title": "If yes, date of assent", + "description": "Date can be submitted as YYYY-MM-DD.(Added to Visit/Contact 1-18-2012)", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "csampbrain": { + "title": "5. May the investigators keep your samples for future research to learn about brain diseases?", + "description": "(Added to Visit/Contact 9-1-2005)", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Not answered (missing)" + ] + }, + "csampbrainshare": { + "title": "May the investigators share your samples/clinical info with other researchers to learn about brain diseases?", + "description": "(Added to Visit/Contact 10-9-2018)", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Not answered" + ] + }, + "cirb": { + "title": "6. May a representative of the Institutional Review Board speak with you about your experience with this research?", + "description": "(Added to Visit/Contact 9-1-2005)", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Not answered (missing)" + ] + }, + "cfaminvite": { + "title": "7. May researchers invite other members of your family to participate in this research?", + "description": "(Added to Visit/Contact 9-1-2005)", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Not answered (missing)" + ] + }, + "cfcellline": { + "title": "7b. Do you agree for part of your blood/tissue sample to be used to grow a long-term cell line?", + "description": "(Added to Visit/Contact 2-25-2008)", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Not answered (missing)" + ] + }, + "autcons": { + "title": "Autopsy consent on file?", + "description": "(Added to Visit/Contact 9-1-2005)", + "type": "string", + "enum": [ + "0 No", + "1 Yes", + "2 Refused", + "3 Decision deferred", + "9 Unknown" + ] + }, + "autconsdt": { + "title": "Autopsy consent date", + "description": "(Added to Visit/Contact 9-1-2005)", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + } + } + }, + "nacc_diag": { + "title": "NACC Diagnosis", + "type": "object", + "properties": { + "clindem": { + "title": "1. Did the subject meet clinical criteria for dementia (e.g., DSM IV or other) at the most recent evaluation for dementia?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "notdem": { + "title": "Not demented\nIf subject did not meet criteria for dementia, what was the diagnosis?", + "type": "string", + "enum": [ + "1, 1 Not demented control subject, no neurological disorder", + "2 Not demented, but has other neurological disorder (Parkinson's, MS, etc.)", + "3 Questionable dementia (e.g., CDR 0.5) or cognitive impairment (MCI, AAMI)", + "4 Down Syndrome but not demented", + "5 Other", + "6 No diagnosis made" + ] + }, + "notdem_oth": { + "title": "Specify other diagnosis", + "type": "string" + }, + "alzdem": { + "title": "Demented \nIf subject met criteria for dementia, what was the primary diagnosis?", + "description": "Alzheimer's Dementia types:\nPR - Probable Alzheimer's disease (e.g. NINCDS 'probable Alzheimer's disease' or DSM IV 'dementia of the Alzheimer's type')\nPO - Alzheimer's disease with other conditions or variations in course (e.g. NINCDS 'possible Alzheimer's disease', DSM IV multiple etiologies where Alzheimer's is the predominate cause)", + "type": "string", + "enum": [ + "1, 1 PR", + "2 PO" + ] + }, + "mixed": { + "title": "Mixed AD/LDB", + "description": "If PR or PO checked for Alzheimer's Dementias, does subject also meet clinicalcriteria for dementia with Lewy bodies, Lewy body variant Alzheimer's disease, or diffuse Lewy body disease? (AL)", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "nonaddem": { + "title": "Non-Alzheimer's Dementia types Primary cause of dementia is not Alzheimer's ", + "type": "string", + "enum": [ + "1 Frontal lobe dementias (e.g. Pick's, FTD)", + "2 Parkinson's disease dementia", + "3 Huntington's disease (HD)", + "4 Progressive supranuclear palsy (PSP)", + "5 Alcohol related dementias", + "6 Corticobasal degeneration", + "7 Communicating, obstructive, or normal pressure hydrocephalus", + "8 Vascular dementia (e.g. dementia due to stroke)", + "9 Dementia with Lewy Bodies (not Parkinson's dementia) (DL)", + "10 Prion-associated dementia (e.g. Creutzfeldt-Jakob)", + "11 Human immunodeficiency virus (HIV) encephalopathy", + "12 Primary progressive aphasia", + "13 Posterior cortical dysfunction", + "14 Down syndrome", + "16 Dementia due to multiple non-Alzheimer's etiologies", + "17 Dementia due to other general medical conditions", + "18 Other non-Alzheimer's dementia" + ] + }, + "nonaddem_other": { + "title": "Please specify Other non-Alzheimer's dementia", + "type": "string" + }, + "psychos": { + "title": "Subject has signs and symptoms of psychosis", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "dep_a0_2": { + "title": "Subject had depression at the most recent evaluation", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "del_a0_2": { + "title": "Subject had delirium at the most recent evaluation", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "utswclinicdx": { + "title": "2a. UTSW ADC Clinician Diagnosis Codes(Make sure to code presence of depression, delirium, or Parkinsonism)", + "type": "string", + "enum": [ + "1 Primary", + "2 Secondary" + ] + }, + "clin_dx1": { + "title": "Primary Diagnosis", + "type": "string", + "enum": [ + "1D First Degree Relative", + "A1 Alzheimer's Frontal (Secondary Dx)", + "A2 Alzheimer's Left (Secondary Dx)", + "A3 Alzheimer's Right (Secondary Dx)", + "AA Amyloid Angiopathy", + "AD Alzheimer's Disease - Definite", + "AF AD pathology, insufficient for AD diagnosis", + "AG Argyrophilic Grain Disease", + "AI AIDS Related Dementia", + "AL Alz Lewy Body Variant", + "AM MCI - Amnestic MCI", + "AN Age-related Neurofibrillary Degeneration", + "AO Angiopathy, Other (includes CADASIL, Vasculitis)", + "AP Alzheimer's + Parkinson's", + "AR Age-related Memory Impairment", + "AS Progressive Motor Speech Apraxia", + "AY Amyotrophic lateral sclerosis (ALS)", + "BD B12 Deficiency", + "BI Binswanger's Disease", + "BP Bipolar Disorder", + "C1 MCI - Mild Cognitive Impairment 1", + "C2 MCI - Mild Cognitive Impairment 2", + "CB Corticobasal Ganglionic Degeneration", + "CD Cognitive Disorder", + "CH Chorea", + "CJ Creutzfeldt-Jakob Disease", + "CN Alpha-synuclein (SNCA) mutation", + "CO MCI - Mild Cognitive Impairment - Other", + "CS Corticobasal Ganglionic Syndrome", + "CT Chronic traumatic encephalopath", + "DC Demented Control", + "DD Dysthmia Disorder", + "DE Deferred", + "DG Degenerative Disease,NOS", + "DL Diffuse Lewy Body Disease", + "DM Delirium", + "DN TAR-DNA binding protein (TARDP) mutation", + "DO Depression Other", + "DP Alcohol Dependence", + "DR Prodromal", + "DS Down Syndrome", + "DT Drug Toxicity", + "DY Primary Progressive Aphasia", + "EN Encephalitis", + "EP Extrapyramidal Symptoms", + "ET Alcoholic Dementia", + "FB Frontotemporal Dementia - Behavioral variant", + "FD Frontotemporal Lobar Degeneration, NLS", + "FL Frontal Lobe Dementia", + "FM MCI - Frontal (Secondary Dx)", + "FP FTDP - 17 Tauopathy", + "FR Frontotemporal lobar degeneration/TDP-43 (FTLD-TDP)", + "FS Frontotemporal lobar degeneration/FUS (FTLD-FUS)", + "FT Frontotemporal Dementia", + "FU Frontotemporal lobar degeneration/UPS (FTLD-UPS)", + "FV Frontotemporal Dementia - Right Temporal Variant", + "FX Frontotemporal Lobar Degeneration, NOS", + "GG Globular glial tauopathy", + "GR Progranulin (GRN) mutation", + "HD Huntington's Disease", + "HE Hypoxic Encephalopathy", + "HN Hypertension", + "HP Hippocampal Sclerosis", + "HS Hallervorden-Spatz Syndrome", + "HT Head Trauma (TBI)", + "HY Hypothyroidism", + "IA Infarct, large cerebral artery", + "IC Impulse Control Disorder", + "IF Infarcts, not definite MI", + "IL Infarct, lacunar", + "IM Infarct, microscopic", + "IN Incomplete Clinical Evaluation", + "LA Lobar Atrophy, w/o Pick bodies", + "LB Dementia with Lewy Bodies", + "LD Leukodystrophy", + "LG Lewy body pathology, amygdala &/or olfactory bulb only", + "LL Lewy body pathology, limbic (transitional)", + "LM Leukoaraiosis/microvascular white matter disease", + "LO Lewy body pathology, NOS [not otherwise specified]", + "LP Logopenic Progressive Aphasia", + "LS Primary Lateral Sclerosis", + "LT Lewy body pathology, brainstem predominant", + "MA Multiple System Atrophy", + "MC Memory Complaint, not Demented", + "MD Major Depression", + "ME Metabolic Encephalopathy", + "MI Multi-infarct Dementia", + "ML Mitochondrial Encephalopathy with Lactic Acidosis", + "MM MCI - Mixed (Secondary Dx)", + "MN Frontotemporal Lobar Degeneration-Ub Inclusion (FTD/Ub)", + "MO Motor Neuron Disease", + "MP CHMP2B mutation", + "MR Mental Retardation", + "MS Multiple Sclerosis", + "MT Tau (MAPT) mutation", + "MU MCI - Multiple domains", + "MX Alzheimer's + Vascular", + "MY Myelin loss, non-arteriosclerotic", + "NA MCI - Nonamnestic MCI", + "NC Normal Clinical Control", + "ND No Dementia", + "NI Neuronal intermediate filament inclusion disease (NIFID)", + "NL Normal (no path abnormalities)", + "NM MCI - Non-Verbal (Secondary Dx)", + "NP Normal Pressure Hydrocephalus", + "NQ Normal with question", + "NS Non-Specific Neuropathologic Abnormality", + "OB Organic Brain Syndrome, NOS", + "OC Other CNS Disorder(s)", + "OD Other Dementia", + "OL Possible Dementia with Lewy Bodies", + "OM MCI - Possible", + "OP Olivopontocerebellar Atrophy", + "OV Possible Vascular Dementia", + "P1 Presenilin 1 (PSEN1) mutation", + "P2 Presenilin 1 (PSEN2) mutation", + "PA Parkinson's Disease", + "PC Posterior Cortical Atrophy", + "PD Parkinson's with Dementia", + "PE Secondary Personality Syndrome", + "PG Polyglandular Autoimmune Failure", + "PH Parenchymal Hemorrhage", + "PI Pick's Disease", + "PO Possible Alzheimer's Disease", + "PP Amyloid precursor protein (APP) mutation", + "PR Probable Alzheimer's Disease", + "PS Progressive Supranuclear Palsy", + "PX Prion Disease, non-CJD", + "PY Psychiatric Disorder Other", + "RB REM Behavior Disorder", + "RF C9ORF72 mutation", + "RM MCI - Probable", + "RV Probable Vascular Dementia", + "SA Spinocerebellar Degeneration", + "SD Subdural Hematoma", + "SE Seizure Disorder", + "SH Schizophrenia", + "SL Systemic Lupus", + "SM Semantic Dementia", + "SN Striatonigral Degeneration", + "SP Neurosyphilis", + "SU Subcortical Disease", + "TA Tangle-Predominant Senile Dementia", + "TB Traumatic brain injury", + "TD Tardive Dyskinesia", + "TF Familial Multiple System Tauopathy with Dementia", + "TM Tumor (neoplasm)--metastatic", + "TP Tumor (neoplasm)--primary", + "TR TREM2 mutation", + "TS Sporadic Multiple System Tauopathy with Dementia", + "TU Tumor", + "UT Tauopathy, Unclassified", + "VC Valosin-containing protein (VCP) mutation", + "VD Vascular Dementia", + "VM MCI - Verbal (Secondary Dx)", + "WC Without Complaint", + "WK Wernicke-Korsakoff Syndrome" + ] + }, + "clin_dx2": { + "title": "Secondary Diagnosis", + "type": "string", + "enum": [ + "1D First Degree Relative", + "A1 Alzheimer's Frontal (Secondary Dx)", + "A2 Alzheimer's Left (Secondary Dx)", + "A3 Alzheimer's Right (Secondary Dx)", + "AA Amyloid Angiopathy", + "AD Alzheimer's Disease - Definite", + "AF AD pathology, insufficient for AD diagnosis", + "AG Argyrophilic Grain Disease", + "AI AIDS Related Dementia", + "AL Alz Lewy Body Variant", + "AM MCI - Amnestic MCI", + "AN Age-related Neurofibrillary Degeneration", + "AO Angiopathy, Other (includes CADASIL, Vasculitis)", + "AP Alzheimer's + Parkinson's", + "AR Age-related Memory Impairment", + "AS Progressive Motor Speech Apraxia", + "AY Amyotrophic lateral sclerosis (ALS)", + "BD B12 Deficiency", + "BI Binswanger's Disease", + "BP Bipolar Disorder", + "C1 MCI - Mild Cognitive Impairment 1", + "C2 MCI - Mild Cognitive Impairment 2", + "CB Corticobasal Ganglionic Degeneration", + "CD Cognitive Disorder", + "CH Chorea", + "CJ Creutzfeldt-Jakob Disease", + "CN Alpha-synuclein (SNCA) mutation", + "CO MCI - Mild Cognitive Impairment - Other", + "CS Corticobasal Ganglionic Syndrome", + "CT Chronic traumatic encephalopath", + "DC Demented Control", + "DD Dysthmia Disorder", + "DE Deferred", + "DG Degenerative Disease,NOS", + "DL Diffuse Lewy Body Disease", + "DM Delirium", + "DN TAR-DNA binding protein (TARDP) mutation", + "DO Depression Other", + "DP Alcohol Dependence", + "DR Prodromal", + "DS Down Syndrome", + "DT Drug Toxicity", + "DY Primary Progressive Aphasia", + "EN Encephalitis", + "EP Extrapyramidal Symptoms", + "ET Alcoholic Dementia", + "FB Frontotemporal Dementia - Behavioral variant", + "FD Frontotemporal Lobar Degeneration, NLS", + "FL Frontal Lobe Dementia", + "FM MCI - Frontal (Secondary Dx)", + "FP FTDP - 17 Tauopathy", + "FR Frontotemporal lobar degeneration/TDP-43 (FTLD-TDP)", + "FS Frontotemporal lobar degeneration/FUS (FTLD-FUS)", + "FT Frontotemporal Dementia", + "FU Frontotemporal lobar degeneration/UPS (FTLD-UPS)", + "FV Frontotemporal Dementia - Right Temporal Variant", + "FX Frontotemporal Lobar Degeneration, NOS", + "GG Globular glial tauopathy", + "GR Progranulin (GRN) mutation", + "HD Huntington's Disease", + "HE Hypoxic Encephalopathy", + "HN Hypertension", + "HP Hippocampal Sclerosis", + "HS Hallervorden-Spatz Syndrome", + "HT Head Trauma (TBI)", + "HY Hypothyroidism", + "IA Infarct, large cerebral artery", + "IC Impulse Control Disorder", + "IF Infarcts, not definite MI", + "IL Infarct, lacunar", + "IM Infarct, microscopic", + "IN Incomplete Clinical Evaluation", + "LA Lobar Atrophy, w/o Pick bodies", + "LB Dementia with Lewy Bodies", + "LD Leukodystrophy", + "LG Lewy body pathology, amygdala &/or olfactory bulb only", + "LL Lewy body pathology, limbic (transitional)", + "LM Leukoaraiosis/microvascular white matter disease", + "LO Lewy body pathology, NOS [not otherwise specified]", + "LP Logopenic Progressive Aphasia", + "LS Primary Lateral Sclerosis", + "LT Lewy body pathology, brainstem predominant", + "MA Multiple System Atrophy", + "MC Memory Complaint, not Demented", + "MD Major Depression", + "ME Metabolic Encephalopathy", + "MI Multi-infarct Dementia", + "ML Mitochondrial Encephalopathy with Lactic Acidosis", + "MM MCI - Mixed (Secondary Dx)", + "MN Frontotemporal Lobar Degeneration-Ub Inclusion (FTD/Ub)", + "MO Motor Neuron Disease", + "MP CHMP2B mutation", + "MR Mental Retardation", + "MS Multiple Sclerosis", + "MT Tau (MAPT) mutation", + "MU MCI - Multiple domains", + "MX Alzheimer's + Vascular", + "MY Myelin loss, non-arteriosclerotic", + "NA MCI - Nonamnestic MCI", + "NC Normal Clinical Control", + "ND No Dementia", + "NI Neuronal intermediate filament inclusion disease (NIFID)", + "NL Normal (no path abnormalities)", + "NM MCI - Non-Verbal (Secondary Dx)", + "NP Normal Pressure Hydrocephalus", + "NQ Normal with question", + "NS Non-Specific Neuropathologic Abnormality", + "OB Organic Brain Syndrome, NOS", + "OC Other CNS Disorder(s)", + "OD Other Dementia", + "OL Possible Dementia with Lewy Bodies", + "OM MCI - Possible", + "OP Olivopontocerebellar Atrophy", + "OV Possible Vascular Dementia", + "P1 Presenilin 1 (PSEN1) mutation", + "P2 Presenilin 1 (PSEN2) mutation", + "PA Parkinson's Disease", + "PC Posterior Cortical Atrophy", + "PD Parkinson's with Dementia", + "PE Secondary Personality Syndrome", + "PG Polyglandular Autoimmune Failure", + "PH Parenchymal Hemorrhage", + "PI Pick's Disease", + "PO Possible Alzheimer's Disease", + "PP Amyloid precursor protein (APP) mutation", + "PR Probable Alzheimer's Disease", + "PS Progressive Supranuclear Palsy", + "PX Prion Disease, non-CJD", + "PY Psychiatric Disorder Other", + "RB REM Behavior Disorder", + "RF C9ORF72 mutation", + "RM MCI - Probable", + "RV Probable Vascular Dementia", + "SA Spinocerebellar Degeneration", + "SD Subdural Hematoma", + "SE Seizure Disorder", + "SH Schizophrenia", + "SL Systemic Lupus", + "SM Semantic Dementia", + "SN Striatonigral Degeneration", + "SP Neurosyphilis", + "SU Subcortical Disease", + "TA Tangle-Predominant Senile Dementia", + "TB Traumatic brain injury", + "TD Tardive Dyskinesia", + "TF Familial Multiple System Tauopathy with Dementia", + "TM Tumor (neoplasm)--metastatic", + "TP Tumor (neoplasm)--primary", + "TR TREM2 mutation", + "TS Sporadic Multiple System Tauopathy with Dementia", + "TU Tumor", + "UT Tauopathy, Unclassified", + "VC Valosin-containing protein (VCP) mutation", + "VD Vascular Dementia", + "VM MCI - Verbal (Secondary Dx)", + "WC Without Complaint", + "WK Wernicke-Korsakoff Syndrome" + ] + }, + "utswnpsydx": { + "title": "2b. UTSW ADC Neuropsychological Diagnosis Codes (Code presence of depression, delirium, or Parkinsonism)", + "type": "string", + "enum": [ + "1 Primary", + "2 Secondary" + ] + }, + "neuro_dx1": { + "title": "Primary Diagnosis", + "type": "string", + "enum": [ + "1D First Degree Relative", + "A1 Alzheimer's Frontal (Secondary Dx)", + "A2 Alzheimer's Left (Secondary Dx)", + "A3 Alzheimer's Right (Secondary Dx)", + "AA Amyloid Angiopathy", + "AD Alzheimer's Disease - Definite", + "AF AD pathology, insufficient for AD diagnosis", + "AG Argyrophilic Grain Disease", + "AI AIDS Related Dementia", + "AL Alz Lewy Body Variant", + "AM MCI - Amnestic MCI", + "AN Age-related Neurofibrillary Degeneration", + "AO Angiopathy, Other (includes CADASIL, Vasculitis)", + "AP Alzheimer's + Parkinson's", + "AR Age-related Memory Impairment", + "AS Progressive Motor Speech Apraxia", + "AY Amyotrophic lateral sclerosis (ALS)", + "BD B12 Deficiency", + "BI Binswanger's Disease", + "BP Bipolar Disorder", + "C1 MCI - Mild Cognitive Impairment 1", + "C2 MCI - Mild Cognitive Impairment 2", + "CB Corticobasal Ganglionic Degeneration", + "CD Cognitive Disorder", + "CH Chorea", + "CJ Creutzfeldt-Jakob Disease", + "CN Alpha-synuclein (SNCA) mutation", + "CO MCI - Mild Cognitive Impairment - Other", + "CS Corticobasal Ganglionic Syndrome", + "CT Chronic traumatic encephalopath", + "DC Demented Control", + "DD Dysthmia Disorder", + "DE Deferred", + "DG Degenerative Disease,NOS", + "DL Diffuse Lewy Body Disease", + "DM Delirium", + "DN TAR-DNA binding protein (TARDP) mutation", + "DO Depression Other", + "DP Alcohol Dependence", + "DR Prodromal", + "DS Down Syndrome", + "DT Drug Toxicity", + "DY Primary Progressive Aphasia", + "EN Encephalitis", + "EP Extrapyramidal Symptoms", + "ET Alcoholic Dementia", + "FB Frontotemporal Dementia - Behavioral variant", + "FD Frontotemporal Lobar Degeneration, NLS", + "FL Frontal Lobe Dementia", + "FM MCI - Frontal (Secondary Dx)", + "FP FTDP - 17 Tauopathy", + "FR Frontotemporal lobar degeneration/TDP-43 (FTLD-TDP)", + "FS Frontotemporal lobar degeneration/FUS (FTLD-FUS)", + "FT Frontotemporal Dementia", + "FU Frontotemporal lobar degeneration/UPS (FTLD-UPS)", + "FV Frontotemporal Dementia - Right Temporal Variant", + "FX Frontotemporal Lobar Degeneration, NOS", + "GG Globular glial tauopathy", + "GR Progranulin (GRN) mutation", + "HD Huntington's Disease", + "HE Hypoxic Encephalopathy", + "HN Hypertension", + "HP Hippocampal Sclerosis", + "HS Hallervorden-Spatz Syndrome", + "HT Head Trauma (TBI)", + "HY Hypothyroidism", + "IA Infarct, large cerebral artery", + "IC Impulse Control Disorder", + "IF Infarcts, not definite MI", + "IL Infarct, lacunar", + "IM Infarct, microscopic", + "IN Incomplete Clinical Evaluation", + "LA Lobar Atrophy, w/o Pick bodies", + "LB Dementia with Lewy Bodies", + "LD Leukodystrophy", + "LG Lewy body pathology, amygdala &/or olfactory bulb only", + "LL Lewy body pathology, limbic (transitional)", + "LM Leukoaraiosis/microvascular white matter disease", + "LO Lewy body pathology, NOS [not otherwise specified]", + "LP Logopenic Progressive Aphasia", + "LS Primary Lateral Sclerosis", + "LT Lewy body pathology, brainstem predominant", + "MA Multiple System Atrophy", + "MC Memory Complaint, not Demented", + "MD Major Depression", + "ME Metabolic Encephalopathy", + "MI Multi-infarct Dementia", + "ML Mitochondrial Encephalopathy with Lactic Acidosis", + "MM MCI - Mixed (Secondary Dx)", + "MN Frontotemporal Lobar Degeneration-Ub Inclusion (FTD/Ub)", + "MO Motor Neuron Disease", + "MP CHMP2B mutation", + "MR Mental Retardation", + "MS Multiple Sclerosis", + "MT Tau (MAPT) mutation", + "MU MCI - Multiple domains", + "MX Alzheimer's + Vascular", + "MY Myelin loss, non-arteriosclerotic", + "NA MCI - Nonamnestic MCI", + "NC Normal Clinical Control", + "ND No Dementia", + "NI Neuronal intermediate filament inclusion disease (NIFID)", + "NL Normal (no path abnormalities)", + "NM MCI - Non-Verbal (Secondary Dx)", + "NP Normal Pressure Hydrocephalus", + "NQ Normal with question", + "NS Non-Specific Neuropathologic Abnormality", + "OB Organic Brain Syndrome, NOS", + "OC Other CNS Disorder(s)", + "OD Other Dementia", + "OL Possible Dementia with Lewy Bodies", + "OM MCI - Possible", + "OP Olivopontocerebellar Atrophy", + "OV Possible Vascular Dementia", + "P1 Presenilin 1 (PSEN1) mutation", + "P2 Presenilin 1 (PSEN2) mutation", + "PA Parkinson's Disease", + "PC Posterior Cortical Atrophy", + "PD Parkinson's with Dementia", + "PE Secondary Personality Syndrome", + "PG Polyglandular Autoimmune Failure", + "PH Parenchymal Hemorrhage", + "PI Pick's Disease", + "PO Possible Alzheimer's Disease", + "PP Amyloid precursor protein (APP) mutation", + "PR Probable Alzheimer's Disease", + "PS Progressive Supranuclear Palsy", + "PX Prion Disease, non-CJD", + "PY Psychiatric Disorder Other", + "RB REM Behavior Disorder", + "RF C9ORF72 mutation", + "RM MCI - Probable", + "RV Probable Vascular Dementia", + "SA Spinocerebellar Degeneration", + "SD Subdural Hematoma", + "SE Seizure Disorder", + "SH Schizophrenia", + "SL Systemic Lupus", + "SM Semantic Dementia", + "SN Striatonigral Degeneration", + "SP Neurosyphilis", + "SU Subcortical Disease", + "TA Tangle-Predominant Senile Dementia", + "TB Traumatic brain injury", + "TD Tardive Dyskinesia", + "TF Familial Multiple System Tauopathy with Dementia", + "TM Tumor (neoplasm)--metastatic", + "TP Tumor (neoplasm)--primary", + "TR TREM2 mutation", + "TS Sporadic Multiple System Tauopathy with Dementia", + "TU Tumor", + "UT Tauopathy, Unclassified", + "VC Valosin-containing protein (VCP) mutation", + "VD Vascular Dementia", + "VM MCI - Verbal (Secondary Dx)", + "WC Without Complaint", + "WK Wernicke-Korsakoff Syndrome" + ] + }, + "neuro_dx2": { + "title": "Secondary Diagnosis", + "type": "string", + "enum": [ + "1D First Degree Relative", + "A1 Alzheimer's Frontal (Secondary Dx)", + "A2 Alzheimer's Left (Secondary Dx)", + "A3 Alzheimer's Right (Secondary Dx)", + "AA Amyloid Angiopathy", + "AD Alzheimer's Disease - Definite", + "AF AD pathology, insufficient for AD diagnosis", + "AG Argyrophilic Grain Disease", + "AI AIDS Related Dementia", + "AL Alz Lewy Body Variant", + "AM MCI - Amnestic MCI", + "AN Age-related Neurofibrillary Degeneration", + "AO Angiopathy, Other (includes CADASIL, Vasculitis)", + "AP Alzheimer's + Parkinson's", + "AR Age-related Memory Impairment", + "AS Progressive Motor Speech Apraxia", + "AY Amyotrophic lateral sclerosis (ALS)", + "BD B12 Deficiency", + "BI Binswanger's Disease", + "BP Bipolar Disorder", + "C1 MCI - Mild Cognitive Impairment 1", + "C2 MCI - Mild Cognitive Impairment 2", + "CB Corticobasal Ganglionic Degeneration", + "CD Cognitive Disorder", + "CH Chorea", + "CJ Creutzfeldt-Jakob Disease", + "CN Alpha-synuclein (SNCA) mutation", + "CO MCI - Mild Cognitive Impairment - Other", + "CS Corticobasal Ganglionic Syndrome", + "CT Chronic traumatic encephalopath", + "DC Demented Control", + "DD Dysthmia Disorder", + "DE Deferred", + "DG Degenerative Disease,NOS", + "DL Diffuse Lewy Body Disease", + "DM Delirium", + "DN TAR-DNA binding protein (TARDP) mutation", + "DO Depression Other", + "DP Alcohol Dependence", + "DR Prodromal", + "DS Down Syndrome", + "DT Drug Toxicity", + "DY Primary Progressive Aphasia", + "EN Encephalitis", + "EP Extrapyramidal Symptoms", + "ET Alcoholic Dementia", + "FB Frontotemporal Dementia - Behavioral variant", + "FD Frontotemporal Lobar Degeneration, NLS", + "FL Frontal Lobe Dementia", + "FM MCI - Frontal (Secondary Dx)", + "FP FTDP - 17 Tauopathy", + "FR Frontotemporal lobar degeneration/TDP-43 (FTLD-TDP)", + "FS Frontotemporal lobar degeneration/FUS (FTLD-FUS)", + "FT Frontotemporal Dementia", + "FU Frontotemporal lobar degeneration/UPS (FTLD-UPS)", + "FV Frontotemporal Dementia - Right Temporal Variant", + "FX Frontotemporal Lobar Degeneration, NOS", + "GG Globular glial tauopathy", + "GR Progranulin (GRN) mutation", + "HD Huntington's Disease", + "HE Hypoxic Encephalopathy", + "HN Hypertension", + "HP Hippocampal Sclerosis", + "HS Hallervorden-Spatz Syndrome", + "HT Head Trauma (TBI)", + "HY Hypothyroidism", + "IA Infarct, large cerebral artery", + "IC Impulse Control Disorder", + "IF Infarcts, not definite MI", + "IL Infarct, lacunar", + "IM Infarct, microscopic", + "IN Incomplete Clinical Evaluation", + "LA Lobar Atrophy, w/o Pick bodies", + "LB Dementia with Lewy Bodies", + "LD Leukodystrophy", + "LG Lewy body pathology, amygdala &/or olfactory bulb only", + "LL Lewy body pathology, limbic (transitional)", + "LM Leukoaraiosis/microvascular white matter disease", + "LO Lewy body pathology, NOS [not otherwise specified]", + "LP Logopenic Progressive Aphasia", + "LS Primary Lateral Sclerosis", + "LT Lewy body pathology, brainstem predominant", + "MA Multiple System Atrophy", + "MC Memory Complaint, not Demented", + "MD Major Depression", + "ME Metabolic Encephalopathy", + "MI Multi-infarct Dementia", + "ML Mitochondrial Encephalopathy with Lactic Acidosis", + "MM MCI - Mixed (Secondary Dx)", + "MN Frontotemporal Lobar Degeneration-Ub Inclusion (FTD/Ub)", + "MO Motor Neuron Disease", + "MP CHMP2B mutation", + "MR Mental Retardation", + "MS Multiple Sclerosis", + "MT Tau (MAPT) mutation", + "MU MCI - Multiple domains", + "MX Alzheimer's + Vascular", + "MY Myelin loss, non-arteriosclerotic", + "NA MCI - Nonamnestic MCI", + "NC Normal Clinical Control", + "ND No Dementia", + "NI Neuronal intermediate filament inclusion disease (NIFID)", + "NL Normal (no path abnormalities)", + "NM MCI - Non-Verbal (Secondary Dx)", + "NP Normal Pressure Hydrocephalus", + "NQ Normal with question", + "NS Non-Specific Neuropathologic Abnormality", + "OB Organic Brain Syndrome, NOS", + "OC Other CNS Disorder(s)", + "OD Other Dementia", + "OL Possible Dementia with Lewy Bodies", + "OM MCI - Possible", + "OP Olivopontocerebellar Atrophy", + "OV Possible Vascular Dementia", + "P1 Presenilin 1 (PSEN1) mutation", + "P2 Presenilin 1 (PSEN2) mutation", + "PA Parkinson's Disease", + "PC Posterior Cortical Atrophy", + "PD Parkinson's with Dementia", + "PE Secondary Personality Syndrome", + "PG Polyglandular Autoimmune Failure", + "PH Parenchymal Hemorrhage", + "PI Pick's Disease", + "PO Possible Alzheimer's Disease", + "PP Amyloid precursor protein (APP) mutation", + "PR Probable Alzheimer's Disease", + "PS Progressive Supranuclear Palsy", + "PX Prion Disease, non-CJD", + "PY Psychiatric Disorder Other", + "RB REM Behavior Disorder", + "RF C9ORF72 mutation", + "RM MCI - Probable", + "RV Probable Vascular Dementia", + "SA Spinocerebellar Degeneration", + "SD Subdural Hematoma", + "SE Seizure Disorder", + "SH Schizophrenia", + "SL Systemic Lupus", + "SM Semantic Dementia", + "SN Striatonigral Degeneration", + "SP Neurosyphilis", + "SU Subcortical Disease", + "TA Tangle-Predominant Senile Dementia", + "TB Traumatic brain injury", + "TD Tardive Dyskinesia", + "TF Familial Multiple System Tauopathy with Dementia", + "TM Tumor (neoplasm)--metastatic", + "TP Tumor (neoplasm)--primary", + "TR TREM2 mutation", + "TS Sporadic Multiple System Tauopathy with Dementia", + "TU Tumor", + "UT Tauopathy, Unclassified", + "VC Valosin-containing protein (VCP) mutation", + "VD Vascular Dementia", + "VM MCI - Verbal (Secondary Dx)", + "WC Without Complaint", + "WK Wernicke-Korsakoff Syndrome" + ] + }, + "utswconsensusdx": { + "title": "2c. UTSW ADC Consensus Diagnosis Codes (Make sure to code presence of depression, delirium, or Parkinsonism)", + "type": "string", + "enum": [ + "1 Primary", + "2 Secondary", + "3 Secondary", + "4 Secondary" + ] + }, + "prim_consen_dx": { + "title": "Primary Diagnosis", + "type": "string", + "enum": [ + "1D First Degree Relative", + "A1 Alzheimer's Frontal (Secondary Dx)", + "A2 Alzheimer's Left (Secondary Dx)", + "A3 Alzheimer's Right (Secondary Dx)", + "AA Amyloid Angiopathy", + "AD Alzheimer's Disease - Definite", + "AF AD pathology, insufficient for AD diagnosis", + "AG Argyrophilic Grain Disease", + "AI AIDS Related Dementia", + "AL Alz Lewy Body Variant", + "AM MCI - Amnestic MCI", + "AN Age-related Neurofibrillary Degeneration", + "AO Angiopathy, Other (includes CADASIL, Vasculitis)", + "AP Alzheimer's + Parkinson's", + "AR Age-related Memory Impairment", + "AS Progressive Motor Speech Apraxia", + "AY Amyotrophic lateral sclerosis (ALS)", + "BD B12 Deficiency", + "BI Binswanger's Disease", + "BP Bipolar Disorder", + "C1 MCI - Mild Cognitive Impairment 1", + "C2 MCI - Mild Cognitive Impairment 2", + "CB Corticobasal Ganglionic Degeneration", + "CD Cognitive Disorder", + "CH Chorea", + "CJ Creutzfeldt-Jakob Disease", + "CN Alpha-synuclein (SNCA) mutation", + "CO MCI - Mild Cognitive Impairment - Other", + "CS Corticobasal Ganglionic Syndrome", + "CT Chronic traumatic encephalopath", + "DC Demented Control", + "DD Dysthmia Disorder", + "DE Deferred", + "DG Degenerative Disease,NOS", + "DL Diffuse Lewy Body Disease", + "DM Delirium", + "DN TAR-DNA binding protein (TARDP) mutation", + "DO Depression Other", + "DP Alcohol Dependence", + "DR Prodromal", + "DS Down Syndrome", + "DT Drug Toxicity", + "DY Primary Progressive Aphasia", + "EN Encephalitis", + "EP Extrapyramidal Symptoms", + "ET Alcoholic Dementia", + "FB Frontotemporal Dementia - Behavioral variant", + "FD Frontotemporal Lobar Degeneration, NLS", + "FL Frontal Lobe Dementia", + "FM MCI - Frontal (Secondary Dx)", + "FP FTDP - 17 Tauopathy", + "FR Frontotemporal lobar degeneration/TDP-43 (FTLD-TDP)", + "FS Frontotemporal lobar degeneration/FUS (FTLD-FUS)", + "FT Frontotemporal Dementia", + "FU Frontotemporal lobar degeneration/UPS (FTLD-UPS)", + "FV Frontotemporal Dementia - Right Temporal Variant", + "FX Frontotemporal Lobar Degeneration, NOS", + "GG Globular glial tauopathy", + "GR Progranulin (GRN) mutation", + "HD Huntington's Disease", + "HE Hypoxic Encephalopathy", + "HN Hypertension", + "HP Hippocampal Sclerosis", + "HS Hallervorden-Spatz Syndrome", + "HT Head Trauma (TBI)", + "HY Hypothyroidism", + "IA Infarct, large cerebral artery", + "IC Impulse Control Disorder", + "IF Infarcts, not definite MI", + "IL Infarct, lacunar", + "IM Infarct, microscopic", + "IN Incomplete Clinical Evaluation", + "LA Lobar Atrophy, w/o Pick bodies", + "LB Dementia with Lewy Bodies", + "LD Leukodystrophy", + "LG Lewy body pathology, amygdala &/or olfactory bulb only", + "LL Lewy body pathology, limbic (transitional)", + "LM Leukoaraiosis/microvascular white matter disease", + "LO Lewy body pathology, NOS [not otherwise specified]", + "LP Logopenic Progressive Aphasia", + "LS Primary Lateral Sclerosis", + "LT Lewy body pathology, brainstem predominant", + "MA Multiple System Atrophy", + "MC Memory Complaint, not Demented", + "MD Major Depression", + "ME Metabolic Encephalopathy", + "MI Multi-infarct Dementia", + "ML Mitochondrial Encephalopathy with Lactic Acidosis", + "MM MCI - Mixed (Secondary Dx)", + "MN Frontotemporal Lobar Degeneration-Ub Inclusion (FTD/Ub)", + "MO Motor Neuron Disease", + "MP CHMP2B mutation", + "MR Mental Retardation", + "MS Multiple Sclerosis", + "MT Tau (MAPT) mutation", + "MU MCI - Multiple domains", + "MX Alzheimer's + Vascular", + "MY Myelin loss, non-arteriosclerotic", + "NA MCI - Nonamnestic MCI", + "NC Normal Clinical Control", + "ND No Dementia", + "NI Neuronal intermediate filament inclusion disease (NIFID)", + "NL Normal (no path abnormalities)", + "NM MCI - Non-Verbal (Secondary Dx)", + "NP Normal Pressure Hydrocephalus", + "NQ Normal with question", + "NS Non-Specific Neuropathologic Abnormality", + "OB Organic Brain Syndrome, NOS", + "OC Other CNS Disorder(s)", + "OD Other Dementia", + "OL Possible Dementia with Lewy Bodies", + "OM MCI - Possible", + "OP Olivopontocerebellar Atrophy", + "OV Possible Vascular Dementia", + "P1 Presenilin 1 (PSEN1) mutation", + "P2 Presenilin 1 (PSEN2) mutation", + "PA Parkinson's Disease", + "PC Posterior Cortical Atrophy", + "PD Parkinson's with Dementia", + "PE Secondary Personality Syndrome", + "PG Polyglandular Autoimmune Failure", + "PH Parenchymal Hemorrhage", + "PI Pick's Disease", + "PO Possible Alzheimer's Disease", + "PP Amyloid precursor protein (APP) mutation", + "PR Probable Alzheimer's Disease", + "PS Progressive Supranuclear Palsy", + "PX Prion Disease, non-CJD", + "PY Psychiatric Disorder Other", + "RB REM Behavior Disorder", + "RF C9ORF72 mutation", + "RM MCI - Probable", + "RV Probable Vascular Dementia", + "SA Spinocerebellar Degeneration", + "SD Subdural Hematoma", + "SE Seizure Disorder", + "SH Schizophrenia", + "SL Systemic Lupus", + "SM Semantic Dementia", + "SN Striatonigral Degeneration", + "SP Neurosyphilis", + "SU Subcortical Disease", + "TA Tangle-Predominant Senile Dementia", + "TB Traumatic brain injury", + "TD Tardive Dyskinesia", + "TF Familial Multiple System Tauopathy with Dementia", + "TM Tumor (neoplasm)--metastatic", + "TP Tumor (neoplasm)--primary", + "TR TREM2 mutation", + "TS Sporadic Multiple System Tauopathy with Dementia", + "TU Tumor", + "UT Tauopathy, Unclassified", + "VC Valosin-containing protein (VCP) mutation", + "VD Vascular Dementia", + "VM MCI - Verbal (Secondary Dx)", + "WC Without Complaint", + "WK Wernicke-Korsakoff Syndrome" + ] + }, + "sec_consen_dx": { + "title": "Secondary Diagnosis", + "type": "string", + "enum": [ + "1D First Degree Relative", + "A1 Alzheimer's Frontal (Secondary Dx)", + "A2 Alzheimer's Left (Secondary Dx)", + "A3 Alzheimer's Right (Secondary Dx)", + "AA Amyloid Angiopathy", + "AD Alzheimer's Disease - Definite", + "AF AD pathology, insufficient for AD diagnosis", + "AG Argyrophilic Grain Disease", + "AI AIDS Related Dementia", + "AL Alz Lewy Body Variant", + "AM MCI - Amnestic MCI", + "AN Age-related Neurofibrillary Degeneration", + "AO Angiopathy, Other (includes CADASIL, Vasculitis)", + "AP Alzheimer's + Parkinson's", + "AR Age-related Memory Impairment", + "AS Progressive Motor Speech Apraxia", + "AY Amyotrophic lateral sclerosis (ALS)", + "BD B12 Deficiency", + "BI Binswanger's Disease", + "BP Bipolar Disorder", + "C1 MCI - Mild Cognitive Impairment 1", + "C2 MCI - Mild Cognitive Impairment 2", + "CB Corticobasal Ganglionic Degeneration", + "CD Cognitive Disorder", + "CH Chorea", + "CJ Creutzfeldt-Jakob Disease", + "CN Alpha-synuclein (SNCA) mutation", + "CO MCI - Mild Cognitive Impairment - Other", + "CS Corticobasal Ganglionic Syndrome", + "CT Chronic traumatic encephalopath", + "DC Demented Control", + "DD Dysthmia Disorder", + "DE Deferred", + "DG Degenerative Disease,NOS", + "DL Diffuse Lewy Body Disease", + "DM Delirium", + "DN TAR-DNA binding protein (TARDP) mutation", + "DO Depression Other", + "DP Alcohol Dependence", + "DR Prodromal", + "DS Down Syndrome", + "DT Drug Toxicity", + "DY Primary Progressive Aphasia", + "EN Encephalitis", + "EP Extrapyramidal Symptoms", + "ET Alcoholic Dementia", + "FB Frontotemporal Dementia - Behavioral variant", + "FD Frontotemporal Lobar Degeneration, NLS", + "FL Frontal Lobe Dementia", + "FM MCI - Frontal (Secondary Dx)", + "FP FTDP - 17 Tauopathy", + "FR Frontotemporal lobar degeneration/TDP-43 (FTLD-TDP)", + "FS Frontotemporal lobar degeneration/FUS (FTLD-FUS)", + "FT Frontotemporal Dementia", + "FU Frontotemporal lobar degeneration/UPS (FTLD-UPS)", + "FV Frontotemporal Dementia - Right Temporal Variant", + "FX Frontotemporal Lobar Degeneration, NOS", + "GG Globular glial tauopathy", + "GR Progranulin (GRN) mutation", + "HD Huntington's Disease", + "HE Hypoxic Encephalopathy", + "HN Hypertension", + "HP Hippocampal Sclerosis", + "HS Hallervorden-Spatz Syndrome", + "HT Head Trauma (TBI)", + "HY Hypothyroidism", + "IA Infarct, large cerebral artery", + "IC Impulse Control Disorder", + "IF Infarcts, not definite MI", + "IL Infarct, lacunar", + "IM Infarct, microscopic", + "IN Incomplete Clinical Evaluation", + "LA Lobar Atrophy, w/o Pick bodies", + "LB Dementia with Lewy Bodies", + "LD Leukodystrophy", + "LG Lewy body pathology, amygdala &/or olfactory bulb only", + "LL Lewy body pathology, limbic (transitional)", + "LM Leukoaraiosis/microvascular white matter disease", + "LO Lewy body pathology, NOS [not otherwise specified]", + "LP Logopenic Progressive Aphasia", + "LS Primary Lateral Sclerosis", + "LT Lewy body pathology, brainstem predominant", + "MA Multiple System Atrophy", + "MC Memory Complaint, not Demented", + "MD Major Depression", + "ME Metabolic Encephalopathy", + "MI Multi-infarct Dementia", + "ML Mitochondrial Encephalopathy with Lactic Acidosis", + "MM MCI - Mixed (Secondary Dx)", + "MN Frontotemporal Lobar Degeneration-Ub Inclusion (FTD/Ub)", + "MO Motor Neuron Disease", + "MP CHMP2B mutation", + "MR Mental Retardation", + "MS Multiple Sclerosis", + "MT Tau (MAPT) mutation", + "MU MCI - Multiple domains", + "MX Alzheimer's + Vascular", + "MY Myelin loss, non-arteriosclerotic", + "NA MCI - Nonamnestic MCI", + "NC Normal Clinical Control", + "ND No Dementia", + "NI Neuronal intermediate filament inclusion disease (NIFID)", + "NL Normal (no path abnormalities)", + "NM MCI - Non-Verbal (Secondary Dx)", + "NP Normal Pressure Hydrocephalus", + "NQ Normal with question", + "NS Non-Specific Neuropathologic Abnormality", + "OB Organic Brain Syndrome, NOS", + "OC Other CNS Disorder(s)", + "OD Other Dementia", + "OL Possible Dementia with Lewy Bodies", + "OM MCI - Possible", + "OP Olivopontocerebellar Atrophy", + "OV Possible Vascular Dementia", + "P1 Presenilin 1 (PSEN1) mutation", + "P2 Presenilin 1 (PSEN2) mutation", + "PA Parkinson's Disease", + "PC Posterior Cortical Atrophy", + "PD Parkinson's with Dementia", + "PE Secondary Personality Syndrome", + "PG Polyglandular Autoimmune Failure", + "PH Parenchymal Hemorrhage", + "PI Pick's Disease", + "PO Possible Alzheimer's Disease", + "PP Amyloid precursor protein (APP) mutation", + "PR Probable Alzheimer's Disease", + "PS Progressive Supranuclear Palsy", + "PX Prion Disease, non-CJD", + "PY Psychiatric Disorder Other", + "RB REM Behavior Disorder", + "RF C9ORF72 mutation", + "RM MCI - Probable", + "RV Probable Vascular Dementia", + "SA Spinocerebellar Degeneration", + "SD Subdural Hematoma", + "SE Seizure Disorder", + "SH Schizophrenia", + "SL Systemic Lupus", + "SM Semantic Dementia", + "SN Striatonigral Degeneration", + "SP Neurosyphilis", + "SU Subcortical Disease", + "TA Tangle-Predominant Senile Dementia", + "TB Traumatic brain injury", + "TD Tardive Dyskinesia", + "TF Familial Multiple System Tauopathy with Dementia", + "TM Tumor (neoplasm)--metastatic", + "TP Tumor (neoplasm)--primary", + "TR TREM2 mutation", + "TS Sporadic Multiple System Tauopathy with Dementia", + "TU Tumor", + "UT Tauopathy, Unclassified", + "VC Valosin-containing protein (VCP) mutation", + "VD Vascular Dementia", + "VM MCI - Verbal (Secondary Dx)", + "WC Without Complaint", + "WK Wernicke-Korsakoff Syndrome" + ] + }, + "sec_consen_dx_2": { + "title": "Secondary Diagnosis", + "type": "string", + "enum": [ + "1D First Degree Relative", + "A1 Alzheimer's Frontal (Secondary Dx)", + "A2 Alzheimer's Left (Secondary Dx)", + "A3 Alzheimer's Right (Secondary Dx)", + "AA Amyloid Angiopathy", + "AD Alzheimer's Disease - Definite", + "AF AD pathology, insufficient for AD diagnosis", + "AG Argyrophilic Grain Disease", + "AI AIDS Related Dementia", + "AL Alz Lewy Body Variant", + "AM MCI - Amnestic MCI", + "AN Age-related Neurofibrillary Degeneration", + "AO Angiopathy, Other (includes CADASIL, Vasculitis)", + "AP Alzheimer's + Parkinson's", + "AR Age-related Memory Impairment", + "AS Progressive Motor Speech Apraxia", + "AY Amyotrophic lateral sclerosis (ALS)", + "BD B12 Deficiency", + "BI Binswanger's Disease", + "BP Bipolar Disorder", + "C1 MCI - Mild Cognitive Impairment 1", + "C2 MCI - Mild Cognitive Impairment 2", + "CB Corticobasal Ganglionic Degeneration", + "CD Cognitive Disorder", + "CH Chorea", + "CJ Creutzfeldt-Jakob Disease", + "CN Alpha-synuclein (SNCA) mutation", + "CO MCI - Mild Cognitive Impairment - Other", + "CS Corticobasal Ganglionic Syndrome", + "CT Chronic traumatic encephalopath", + "DC Demented Control", + "DD Dysthmia Disorder", + "DE Deferred", + "DG Degenerative Disease,NOS", + "DL Diffuse Lewy Body Disease", + "DM Delirium", + "DN TAR-DNA binding protein (TARDP) mutation", + "DO Depression Other", + "DP Alcohol Dependence", + "DR Prodromal", + "DS Down Syndrome", + "DT Drug Toxicity", + "DY Primary Progressive Aphasia", + "EN Encephalitis", + "EP Extrapyramidal Symptoms", + "ET Alcoholic Dementia", + "FB Frontotemporal Dementia - Behavioral variant", + "FD Frontotemporal Lobar Degeneration, NLS", + "FL Frontal Lobe Dementia", + "FM MCI - Frontal (Secondary Dx)", + "FP FTDP - 17 Tauopathy", + "FR Frontotemporal lobar degeneration/TDP-43 (FTLD-TDP)", + "FS Frontotemporal lobar degeneration/FUS (FTLD-FUS)", + "FT Frontotemporal Dementia", + "FU Frontotemporal lobar degeneration/UPS (FTLD-UPS)", + "FV Frontotemporal Dementia - Right Temporal Variant", + "FX Frontotemporal Lobar Degeneration, NOS", + "GG Globular glial tauopathy", + "GR Progranulin (GRN) mutation", + "HD Huntington's Disease", + "HE Hypoxic Encephalopathy", + "HN Hypertension", + "HP Hippocampal Sclerosis", + "HS Hallervorden-Spatz Syndrome", + "HT Head Trauma (TBI)", + "HY Hypothyroidism", + "IA Infarct, large cerebral artery", + "IC Impulse Control Disorder", + "IF Infarcts, not definite MI", + "IL Infarct, lacunar", + "IM Infarct, microscopic", + "IN Incomplete Clinical Evaluation", + "LA Lobar Atrophy, w/o Pick bodies", + "LB Dementia with Lewy Bodies", + "LD Leukodystrophy", + "LG Lewy body pathology, amygdala &/or olfactory bulb only", + "LL Lewy body pathology, limbic (transitional)", + "LM Leukoaraiosis/microvascular white matter disease", + "LO Lewy body pathology, NOS [not otherwise specified]", + "LP Logopenic Progressive Aphasia", + "LS Primary Lateral Sclerosis", + "LT Lewy body pathology, brainstem predominant", + "MA Multiple System Atrophy", + "MC Memory Complaint, not Demented", + "MD Major Depression", + "ME Metabolic Encephalopathy", + "MI Multi-infarct Dementia", + "ML Mitochondrial Encephalopathy with Lactic Acidosis", + "MM MCI - Mixed (Secondary Dx)", + "MN Frontotemporal Lobar Degeneration-Ub Inclusion (FTD/Ub)", + "MO Motor Neuron Disease", + "MP CHMP2B mutation", + "MR Mental Retardation", + "MS Multiple Sclerosis", + "MT Tau (MAPT) mutation", + "MU MCI - Multiple domains", + "MX Alzheimer's + Vascular", + "MY Myelin loss, non-arteriosclerotic", + "NA MCI - Nonamnestic MCI", + "NC Normal Clinical Control", + "ND No Dementia", + "NI Neuronal intermediate filament inclusion disease (NIFID)", + "NL Normal (no path abnormalities)", + "NM MCI - Non-Verbal (Secondary Dx)", + "NP Normal Pressure Hydrocephalus", + "NQ Normal with question", + "NS Non-Specific Neuropathologic Abnormality", + "OB Organic Brain Syndrome, NOS", + "OC Other CNS Disorder(s)", + "OD Other Dementia", + "OL Possible Dementia with Lewy Bodies", + "OM MCI - Possible", + "OP Olivopontocerebellar Atrophy", + "OV Possible Vascular Dementia", + "P1 Presenilin 1 (PSEN1) mutation", + "P2 Presenilin 1 (PSEN2) mutation", + "PA Parkinson's Disease", + "PC Posterior Cortical Atrophy", + "PD Parkinson's with Dementia", + "PE Secondary Personality Syndrome", + "PG Polyglandular Autoimmune Failure", + "PH Parenchymal Hemorrhage", + "PI Pick's Disease", + "PO Possible Alzheimer's Disease", + "PP Amyloid precursor protein (APP) mutation", + "PR Probable Alzheimer's Disease", + "PS Progressive Supranuclear Palsy", + "PX Prion Disease, non-CJD", + "PY Psychiatric Disorder Other", + "RB REM Behavior Disorder", + "RF C9ORF72 mutation", + "RM MCI - Probable", + "RV Probable Vascular Dementia", + "SA Spinocerebellar Degeneration", + "SD Subdural Hematoma", + "SE Seizure Disorder", + "SH Schizophrenia", + "SL Systemic Lupus", + "SM Semantic Dementia", + "SN Striatonigral Degeneration", + "SP Neurosyphilis", + "SU Subcortical Disease", + "TA Tangle-Predominant Senile Dementia", + "TB Traumatic brain injury", + "TD Tardive Dyskinesia", + "TF Familial Multiple System Tauopathy with Dementia", + "TM Tumor (neoplasm)--metastatic", + "TP Tumor (neoplasm)--primary", + "TR TREM2 mutation", + "TS Sporadic Multiple System Tauopathy with Dementia", + "TU Tumor", + "UT Tauopathy, Unclassified", + "VC Valosin-containing protein (VCP) mutation", + "VD Vascular Dementia", + "VM MCI - Verbal (Secondary Dx)", + "WC Without Complaint", + "WK Wernicke-Korsakoff Syndrome" + ] + }, + "sec_consen_dx_3": { + "title": "Secondary Diagnosis", + "type": "string", + "enum": [ + "1D First Degree Relative", + "A1 Alzheimer's Frontal (Secondary Dx)", + "A2 Alzheimer's Left (Secondary Dx)", + "A3 Alzheimer's Right (Secondary Dx)", + "AA Amyloid Angiopathy", + "AD Alzheimer's Disease - Definite", + "AF AD pathology, insufficient for AD diagnosis", + "AG Argyrophilic Grain Disease", + "AI AIDS Related Dementia", + "AL Alz Lewy Body Variant", + "AM MCI - Amnestic MCI", + "AN Age-related Neurofibrillary Degeneration", + "AO Angiopathy, Other (includes CADASIL, Vasculitis)", + "AP Alzheimer's + Parkinson's", + "AR Age-related Memory Impairment", + "AS Progressive Motor Speech Apraxia", + "AY Amyotrophic lateral sclerosis (ALS)", + "BD B12 Deficiency", + "BI Binswanger's Disease", + "BP Bipolar Disorder", + "C1 MCI - Mild Cognitive Impairment 1", + "C2 MCI - Mild Cognitive Impairment 2", + "CB Corticobasal Ganglionic Degeneration", + "CD Cognitive Disorder", + "CH Chorea", + "CJ Creutzfeldt-Jakob Disease", + "CN Alpha-synuclein (SNCA) mutation", + "CO MCI - Mild Cognitive Impairment - Other", + "CS Corticobasal Ganglionic Syndrome", + "CT Chronic traumatic encephalopath", + "DC Demented Control", + "DD Dysthmia Disorder", + "DE Deferred", + "DG Degenerative Disease,NOS", + "DL Diffuse Lewy Body Disease", + "DM Delirium", + "DN TAR-DNA binding protein (TARDP) mutation", + "DO Depression Other", + "DP Alcohol Dependence", + "DR Prodromal", + "DS Down Syndrome", + "DT Drug Toxicity", + "DY Primary Progressive Aphasia", + "EN Encephalitis", + "EP Extrapyramidal Symptoms", + "ET Alcoholic Dementia", + "FB Frontotemporal Dementia - Behavioral variant", + "FD Frontotemporal Lobar Degeneration, NLS", + "FL Frontal Lobe Dementia", + "FM MCI - Frontal (Secondary Dx)", + "FP FTDP - 17 Tauopathy", + "FR Frontotemporal lobar degeneration/TDP-43 (FTLD-TDP)", + "FS Frontotemporal lobar degeneration/FUS (FTLD-FUS)", + "FT Frontotemporal Dementia", + "FU Frontotemporal lobar degeneration/UPS (FTLD-UPS)", + "FV Frontotemporal Dementia - Right Temporal Variant", + "FX Frontotemporal Lobar Degeneration, NOS", + "GG Globular glial tauopathy", + "GR Progranulin (GRN) mutation", + "HD Huntington's Disease", + "HE Hypoxic Encephalopathy", + "HN Hypertension", + "HP Hippocampal Sclerosis", + "HS Hallervorden-Spatz Syndrome", + "HT Head Trauma (TBI)", + "HY Hypothyroidism", + "IA Infarct, large cerebral artery", + "IC Impulse Control Disorder", + "IF Infarcts, not definite MI", + "IL Infarct, lacunar", + "IM Infarct, microscopic", + "IN Incomplete Clinical Evaluation", + "LA Lobar Atrophy, w/o Pick bodies", + "LB Dementia with Lewy Bodies", + "LD Leukodystrophy", + "LG Lewy body pathology, amygdala &/or olfactory bulb only", + "LL Lewy body pathology, limbic (transitional)", + "LM Leukoaraiosis/microvascular white matter disease", + "LO Lewy body pathology, NOS [not otherwise specified]", + "LP Logopenic Progressive Aphasia", + "LS Primary Lateral Sclerosis", + "LT Lewy body pathology, brainstem predominant", + "MA Multiple System Atrophy", + "MC Memory Complaint, not Demented", + "MD Major Depression", + "ME Metabolic Encephalopathy", + "MI Multi-infarct Dementia", + "ML Mitochondrial Encephalopathy with Lactic Acidosis", + "MM MCI - Mixed (Secondary Dx)", + "MN Frontotemporal Lobar Degeneration-Ub Inclusion (FTD/Ub)", + "MO Motor Neuron Disease", + "MP CHMP2B mutation", + "MR Mental Retardation", + "MS Multiple Sclerosis", + "MT Tau (MAPT) mutation", + "MU MCI - Multiple domains", + "MX Alzheimer's + Vascular", + "MY Myelin loss, non-arteriosclerotic", + "NA MCI - Nonamnestic MCI", + "NC Normal Clinical Control", + "ND No Dementia", + "NI Neuronal intermediate filament inclusion disease (NIFID)", + "NL Normal (no path abnormalities)", + "NM MCI - Non-Verbal (Secondary Dx)", + "NP Normal Pressure Hydrocephalus", + "NQ Normal with question", + "NS Non-Specific Neuropathologic Abnormality", + "OB Organic Brain Syndrome, NOS", + "OC Other CNS Disorder(s)", + "OD Other Dementia", + "OL Possible Dementia with Lewy Bodies", + "OM MCI - Possible", + "OP Olivopontocerebellar Atrophy", + "OV Possible Vascular Dementia", + "P1 Presenilin 1 (PSEN1) mutation", + "P2 Presenilin 1 (PSEN2) mutation", + "PA Parkinson's Disease", + "PC Posterior Cortical Atrophy", + "PD Parkinson's with Dementia", + "PE Secondary Personality Syndrome", + "PG Polyglandular Autoimmune Failure", + "PH Parenchymal Hemorrhage", + "PI Pick's Disease", + "PO Possible Alzheimer's Disease", + "PP Amyloid precursor protein (APP) mutation", + "PR Probable Alzheimer's Disease", + "PS Progressive Supranuclear Palsy", + "PX Prion Disease, non-CJD", + "PY Psychiatric Disorder Other", + "RB REM Behavior Disorder", + "RF C9ORF72 mutation", + "RM MCI - Probable", + "RV Probable Vascular Dementia", + "SA Spinocerebellar Degeneration", + "SD Subdural Hematoma", + "SE Seizure Disorder", + "SH Schizophrenia", + "SL Systemic Lupus", + "SM Semantic Dementia", + "SN Striatonigral Degeneration", + "SP Neurosyphilis", + "SU Subcortical Disease", + "TA Tangle-Predominant Senile Dementia", + "TB Traumatic brain injury", + "TD Tardive Dyskinesia", + "TF Familial Multiple System Tauopathy with Dementia", + "TM Tumor (neoplasm)--metastatic", + "TP Tumor (neoplasm)--primary", + "TR TREM2 mutation", + "TS Sporadic Multiple System Tauopathy with Dementia", + "TU Tumor", + "UT Tauopathy, Unclassified", + "VC Valosin-containing protein (VCP) mutation", + "VD Vascular Dementia", + "VM MCI - Verbal (Secondary Dx)", + "WC Without Complaint", + "WK Wernicke-Korsakoff Syndrome" + ] + }, + "eov_status": { + "title": "3. Status at end of this visit", + "type": "string", + "enum": [ + "1 Active: further in-person visits expected", + "2 Active: further phone (or other) visits expected", + "3 Active: no further visits expected, autopsy expected or have autopsy consent", + "4 Inactive: no further data expected, no autopsy expected", + "5 Inactive: do not contact further" + ] + }, + "fupdate": { + "title": "Date of next expected follow-up", + "description": "Date can be submitted as YYYY-MM-DD.", + "type": "string", + "anyOf": [ + { + "format": "date" + } + ] + }, + "crsrchavail": { + "title": "Is subject available for research studies?", + "type": "string", + "enum": [ + "1 Yes", + "0 No", + "9 Unknown" + ] + }, + "crsrchreas": { + "title": "Reason", + "type": "string" + } + } + } + }, + "facets": { + "status": { + "title": "Status" + }, + "isadcvis": { + "title": "1. ADC Cohort Visit?" + }, + "adcvistype": { + "title": "If yes, which type of visit?" + }, + "isrchvis": { + "title": "2. Research study visit" + }, + "rchvistype": { + "title": "Research study visit type" + }, + "study1": { + "title": "Study (1)" + }, + "phase1": { + "title": "Phase (Study 1)" + }, + "study2": { + "title": "Study (2)" + }, + "phase2": { + "title": "Phase (Study 2)" + }, + "vishow": { + "title": "3. Visit made" + }, + "medck": { + "title": "Med check" + }, + "vissite": { + "title": "4. Site of visit" + }, + "vissite_natam": { + "title": "Native American Satellite" + }, + "vissite_oth": { + "title": "Specify other site" + }, + "time_phone": { + "title": "Approximate time (hours/week) caregiver spends with patient by PHONE" + }, + "time_inperson": { + "title": "Approximate time (hours/week) caregiver spends with patient IN PERSON" + }, + "marstat": { + "title": "Marital status." + }, + "residence": { + "title": "Type of Residence." + }, + "residencedt": { + "title": "If not private residence, date entered." + }, + "consent.cinfo": { + "title": "1. May the investigators use the information from your evaluations and treatment, without identifying you, to learn about brain disease?" + }, + "consent.csampblood": { + "title": "2. May the investigators obtain a blood sample?" + }, + "consent.csampswab": { + "title": "If you are not willing to let the investigators obtain a blood sample, may they obtain cells by a cheek swab?" + }, + "consent.csamppunct": { + "title": "3. May the investigators perform a lumbar puncture to obtain a CSF sample?" + }, + "consent.cdonatebr": { + "title": "4. Are you willing to donate your brain at the time of death for research? " + }, + "consent.cdonatebrdt": { + "title": "If yes, date of assent" + }, + "consent.csampbrain": { + "title": "5. May the investigators keep your samples for future research to learn about brain diseases?" + }, + "consent.csampbrainshare": { + "title": "May the investigators share your samples/clinical info with other researchers to learn about brain diseases?" + }, + "consent.cirb": { + "title": "6. May a representative of the Institutional Review Board speak with you about your experience with this research?" + }, + "consent.cfaminvite": { + "title": "7. May researchers invite other members of your family to participate in this research?" + }, + "consent.cfcellline": { + "title": "7b. Do you agree for part of your blood/tissue sample to be used to grow a long-term cell line?" + }, + "consent.autcons": { + "title": "Autopsy consent on file?" + }, + "consent.autconsdt": { + "title": "Autopsy consent date" + }, + "nacc_diag.clindem": { + "title": "1. Did the subject meet clinical criteria for dementia (e.g., DSM IV or other) at the most recent evaluation for dementia?" + }, + "nacc_diag.notdem": { + "title": "Not demented\nIf subject did not meet criteria for dementia, what was the diagnosis?" + }, + "nacc_diag.notdem_oth": { + "title": "Specify other diagnosis" + }, + "nacc_diag.alzdem": { + "title": "Demented \nIf subject met criteria for dementia, what was the primary diagnosis?" + }, + "nacc_diag.mixed": { + "title": "Mixed AD/LDB" + }, + "nacc_diag.nonaddem": { + "title": "Non-Alzheimer's Dementia types Primary cause of dementia is not Alzheimer's " + }, + "nacc_diag.nonaddem_other": { + "title": "Please specify Other non-Alzheimer's dementia" + }, + "nacc_diag.psychos": { + "title": "Subject has signs and symptoms of psychosis" + }, + "nacc_diag.dep_a0_2": { + "title": "Subject had depression at the most recent evaluation" + }, + "nacc_diag.del_a0_2": { + "title": "Subject had delirium at the most recent evaluation" + }, + "nacc_diag.utswclinicdx": { + "title": "2a. UTSW ADC Clinician Diagnosis Codes(Make sure to code presence of depression, delirium, or Parkinsonism)" + }, + "nacc_diag.clin_dx1": { + "title": "Primary Diagnosis" + }, + "nacc_diag.clin_dx2": { + "title": "Secondary Diagnosis" + }, + "nacc_diag.utswnpsydx": { + "title": "2b. UTSW ADC Neuropsychological Diagnosis Codes (Code presence of depression, delirium, or Parkinsonism)" + }, + "nacc_diag.neuro_dx1": { + "title": "Primary Diagnosis" + }, + "nacc_diag.neuro_dx2": { + "title": "Secondary Diagnosis" + }, + "nacc_diag.utswconsensusdx": { + "title": "2c. UTSW ADC Consensus Diagnosis Codes (Make sure to code presence of depression, delirium, or Parkinsonism)" + }, + "nacc_diag.prim_consen_dx": { + "title": "Primary Diagnosis" + }, + "nacc_diag.sec_consen_dx": { + "title": "Secondary Diagnosis" + }, + "nacc_diag.sec_consen_dx_2": { + "title": "Secondary Diagnosis" + }, + "nacc_diag.sec_consen_dx_3": { + "title": "Secondary Diagnosis" + }, + "nacc_diag.eov_status": { + "title": "3. Status at end of this visit" + }, + "nacc_diag.fupdate": { + "title": "Date of next expected follow-up" + }, + "nacc_diag.crsrchavail": { + "title": "Is subject available for research studies?" + }, + "nacc_diag.crsrchreas": { + "title": "Reason" + } + }, + "columns": { + "status": { + "title": "Status" + }, + "isadcvis": { + "title": "1. ADC Cohort Visit?" + }, + "adcvistype": { + "title": "If yes, which type of visit?" + }, + "isrchvis": { + "title": "2. Research study visit" + }, + "rchvistype": { + "title": "Research study visit type" + }, + "study1": { + "title": "Study (1)" + }, + "phase1": { + "title": "Phase (Study 1)" + }, + "study2": { + "title": "Study (2)" + }, + "phase2": { + "title": "Phase (Study 2)" + }, + "vishow": { + "title": "3. Visit made" + }, + "medck": { + "title": "Med check" + }, + "vissite": { + "title": "4. Site of visit" + }, + "vissite_natam": { + "title": "Native American Satellite" + }, + "vissite_oth": { + "title": "Specify other site" + }, + "time_phone": { + "title": "Approximate time (hours/week) caregiver spends with patient by PHONE" + }, + "time_inperson": { + "title": "Approximate time (hours/week) caregiver spends with patient IN PERSON" + }, + "marstat": { + "title": "Marital status." + }, + "residence": { + "title": "Type of Residence." + }, + "residencedt": { + "title": "If not private residence, date entered." + }, + "consent.cinfo": { + "title": "1. May the investigators use the information from your evaluations and treatment, without identifying you, to learn about brain disease?" + }, + "consent.csampblood": { + "title": "2. May the investigators obtain a blood sample?" + }, + "consent.csampswab": { + "title": "If you are not willing to let the investigators obtain a blood sample, may they obtain cells by a cheek swab?" + }, + "consent.csamppunct": { + "title": "3. May the investigators perform a lumbar puncture to obtain a CSF sample?" + }, + "consent.cdonatebr": { + "title": "4. Are you willing to donate your brain at the time of death for research? " + }, + "consent.cdonatebrdt": { + "title": "If yes, date of assent" + }, + "consent.csampbrain": { + "title": "5. May the investigators keep your samples for future research to learn about brain diseases?" + }, + "consent.csampbrainshare": { + "title": "May the investigators share your samples/clinical info with other researchers to learn about brain diseases?" + }, + "consent.cirb": { + "title": "6. May a representative of the Institutional Review Board speak with you about your experience with this research?" + }, + "consent.cfaminvite": { + "title": "7. May researchers invite other members of your family to participate in this research?" + }, + "consent.cfcellline": { + "title": "7b. Do you agree for part of your blood/tissue sample to be used to grow a long-term cell line?" + }, + "consent.autcons": { + "title": "Autopsy consent on file?" + }, + "consent.autconsdt": { + "title": "Autopsy consent date" + }, + "nacc_diag.clindem": { + "title": "1. Did the subject meet clinical criteria for dementia (e.g., DSM IV or other) at the most recent evaluation for dementia?" + }, + "nacc_diag.notdem": { + "title": "Not demented\nIf subject did not meet criteria for dementia, what was the diagnosis?" + }, + "nacc_diag.notdem_oth": { + "title": "Specify other diagnosis" + }, + "nacc_diag.alzdem": { + "title": "Demented \nIf subject met criteria for dementia, what was the primary diagnosis?" + }, + "nacc_diag.mixed": { + "title": "Mixed AD/LDB" + }, + "nacc_diag.nonaddem": { + "title": "Non-Alzheimer's Dementia types Primary cause of dementia is not Alzheimer's " + }, + "nacc_diag.nonaddem_other": { + "title": "Please specify Other non-Alzheimer's dementia" + }, + "nacc_diag.psychos": { + "title": "Subject has signs and symptoms of psychosis" + }, + "nacc_diag.dep_a0_2": { + "title": "Subject had depression at the most recent evaluation" + }, + "nacc_diag.del_a0_2": { + "title": "Subject had delirium at the most recent evaluation" + }, + "nacc_diag.utswclinicdx": { + "title": "2a. UTSW ADC Clinician Diagnosis Codes(Make sure to code presence of depression, delirium, or Parkinsonism)" + }, + "nacc_diag.clin_dx1": { + "title": "Primary Diagnosis" + }, + "nacc_diag.clin_dx2": { + "title": "Secondary Diagnosis" + }, + "nacc_diag.utswnpsydx": { + "title": "2b. UTSW ADC Neuropsychological Diagnosis Codes (Code presence of depression, delirium, or Parkinsonism)" + }, + "nacc_diag.neuro_dx1": { + "title": "Primary Diagnosis" + }, + "nacc_diag.neuro_dx2": { + "title": "Secondary Diagnosis" + }, + "nacc_diag.utswconsensusdx": { + "title": "2c. UTSW ADC Consensus Diagnosis Codes (Make sure to code presence of depression, delirium, or Parkinsonism)" + }, + "nacc_diag.prim_consen_dx": { + "title": "Primary Diagnosis" + }, + "nacc_diag.sec_consen_dx": { + "title": "Secondary Diagnosis" + }, + "nacc_diag.sec_consen_dx_2": { + "title": "Secondary Diagnosis" + }, + "nacc_diag.sec_consen_dx_3": { + "title": "Secondary Diagnosis" + }, + "nacc_diag.eov_status": { + "title": "3. Status at end of this visit" + }, + "nacc_diag.fupdate": { + "title": "Date of next expected follow-up" + }, + "nacc_diag.crsrchavail": { + "title": "Is subject available for research studies?" + }, + "nacc_diag.crsrchreas": { + "title": "Reason" + } + }, + "boost_values": { + "patient": 1.0, + "isadcvis": 1.0, + "adcvistype": 1.0, + "isrchvis": 1.0, + "rchvistype": 1.0, + "study1": 1.0, + "phase1": 1.0, + "study2": 1.0, + "phase2": 1.0, + "vishow": 1.0, + "medck": 1.0, + "vissite": 1.0, + "vissite_natam": 1.0, + "vissite_oth": 1.0, + "time_phone": 1.0, + "time_inperson": 1.0, + "marstat": 1.0, + "residence": 1.0, + "residencedt": 1.0, + "consent.cinfo": 1.0, + "consent.csampblood": 1.0, + "consent.csampswab": 1.0, + "consent.csamppunct": 1.0, + "consent.cdonatebr": 1.0, + "consent.cdonatebrdt": 1.0, + "consent.csampbrain": 1.0, + "consent.csampbrainshare": 1.0, + "consent.cirb": 1.0, + "consent.cfaminvite": 1.0, + "consent.cfcellline": 1.0, + "consent.autcons": 1.0, + "consent.autconsdt": 1.0, + "nacc_diag.clindem": 1.0, + "nacc_diag.notdem": 1.0, + "nacc_diag.notdem_oth": 1.0, + "nacc_diag.alzdem": 1.0, + "nacc_diag.mixed": 1.0, + "nacc_diag.nonaddem": 1.0, + "nacc_diag.nonaddem_other": 1.0, + "nacc_diag.psychos": 1.0, + "nacc_diag.dep_a0_2": 1.0, + "nacc_diag.del_a0_2": 1.0, + "nacc_diag.utswclinicdx": 1.0, + "nacc_diag.clin_dx1": 1.0, + "nacc_diag.clin_dx2": 1.0, + "nacc_diag.utswnpsydx": 1.0, + "nacc_diag.neuro_dx1": 1.0, + "nacc_diag.neuro_dx2": 1.0, + "nacc_diag.utswconsensusdx": 1.0, + "nacc_diag.prim_consen_dx": 1.0, + "nacc_diag.sec_consen_dx": 1.0, + "nacc_diag.sec_consen_dx_2": 1.0, + "nacc_diag.sec_consen_dx_3": 1.0, + "nacc_diag.eov_status": 1.0, + "nacc_diag.fupdate": 1.0, + "nacc_diag.crsrchavail": 1.0, + "nacc_diag.crsrchreas": 1.0 + }, + "changelog": "/profiles/changelogs/visit_contact.md" +} \ No newline at end of file diff --git a/src/encoded/search_views.py b/src/encoded/search_views.py index 92b1fa68e2..50f4756576 100644 --- a/src/encoded/search_views.py +++ b/src/encoded/search_views.py @@ -52,8 +52,6 @@ def includeme(config): DEFAULT_ITEM_TYPES = [ 'Award', - 'Page', - 'Publication', 'Biofile', 'Patient', 'Biospecimen', @@ -61,6 +59,11 @@ def includeme(config): 'PathologyReport' ] +PUBLICATION_ITEM_TYPES = [ + 'Page', + 'Publication', +] + @view_config(route_name='search', request_method='GET', permission='search') def search(context, request): @@ -93,8 +96,7 @@ def search(context, request): ) return fr.render() - -@view_config(route_name='searchv2_raw', request_method='GET', permission='search') +@view_config(route_name='searchv2_raw', request_method='GET', permission='summary') def searchv2_raw(context, request): fr = FieldedResponse( _meta={ @@ -109,16 +111,33 @@ def searchv2_raw(context, request): return fr.render() -@view_config(route_name='searchv2_quick', request_method='GET', permission='search') +@view_config(route_name='searchv2_quick', request_method='GET', permission='summary') def searchv2_quick(context, request): + # Note the order of rendering matters for some fields, e.g. AllResponseField and + # NotificationResponseField depend on results from BasicSearchWithFacetsResponseField. fr = FieldedResponse( _meta={ 'params_parser': ParamsParser(request) }, response_fields=[ - BasicSearchResponseField( - default_item_types=DEFAULT_ITEM_TYPES - ) + TitleResponseField( + title=SEARCH_TITLE + ), + TypeResponseField( + at_type=[SEARCH_TITLE] + ), + IDResponseField(), + ContextResponseField(), + BasicSearchWithFacetsResponseField( + default_item_types=PUBLICATION_ITEM_TYPES + ), + AllResponseField(), + NotificationResponseField(), + FiltersResponseField(), + ClearFiltersResponseField(), + ColumnsResponseField(), + SortResponseField(), + DebugQueryResponseField() ] ) return fr.render() @@ -359,7 +378,7 @@ def mouse_development(context, request): return fr.render() -@view_config(route_name='summary', request_method='GET', permission='search') +@view_config(route_name='summary', request_method='GET', permission='summary') def summary(context, request): fr = FieldedResponse( _meta={ @@ -414,4 +433,3 @@ def audit(context, request): ] ) return fr.render() - diff --git a/src/encoded/static/components/app.js b/src/encoded/static/components/app.js index 41ba57d1ec..c556cb980d 100644 --- a/src/encoded/static/components/app.js +++ b/src/encoded/static/components/app.js @@ -48,7 +48,7 @@ const portal = { { id: 'patientmatrix', title: 'Patient Matrix', url: '/matrix/?type=Patient&status=released' }, { id: 'sampletmatrix', title: 'Biospecimen Matrix', url: '/matrix/?type=Biospecimen&status=released' }, { id: 'sep-mm-2' }, - { id: 'publications', title: 'Publications', url: '/search/?type=Publication&status=released' }, + { id: 'publications', title: 'Publications', url: '/searchv2_quick/?type=Publication&status=public' }, ], }, { @@ -296,7 +296,7 @@ class App extends React.Component { languageDictionary: { title: 'Log in to KCE', }, - allowedConnections: ['google-oauth2'], + allowedConnections: ['KCE'], }); this.lock.on('authenticated', this.handleAuth0Login); @@ -316,6 +316,7 @@ class App extends React.Component { } }); + // Initialize browesr history mechanism if (this.constructor.historyEnabled()) { const data = this.props.context; @@ -1235,4 +1236,3 @@ module.exports.getRenderedProps = function getRenderedProps(document) { } return props; }; - diff --git a/src/encoded/static/components/bioexperiment.js b/src/encoded/static/components/bioexperiment.js index 6af4dff99a..3c04549634 100644 --- a/src/encoded/static/components/bioexperiment.js +++ b/src/encoded/static/components/bioexperiment.js @@ -13,9 +13,9 @@ import { DbxrefList } from './dbxref'; import { FetchedItems } from './fetched'; // import { FileGallery } from './filegallery'; import { FileGallery1 } from './filegallery1'; -import { ProjectBadge } from './image'; import { CartToggle } from './cart'; -import { singleTreatment, ItemAccessories, DisplayAsJson, InternalTags } from './objectutils'; +import { ProjectBadge } from './image'; +import { singleTreatment, DisplayAsJson, InternalTags } from './objectutils'; import pubReferenceList from './reference'; import { SortTablePanel, SortTable } from './sorttable'; import { BiosampleSummaryString, BiospecimenOrganismNames, CollectBiosampleDocs, AwardRef, ReplacementAccessions, ControllingExperiments } from './typeutils'; @@ -166,13 +166,14 @@ class Bioexperiment extends React.Component { render() { const context = this.props.context; - const itemClass = globals.itemClass(context, 'view-item'); + console.log('context', context); let librarySpecials = {}; let libraryComponents = {}; let libSubmitterComments = []; const loggedIn = !!(this.context.session && this.context.session['auth.userid']); const adminUser = !!(this.context.session_properties && this.context.session_properties.admin); + const itemClass = globals.itemClass(context, 'view-item'); const replicates = context.bioreplicate && context.bioreplicate.length ? context.bioreplicate : []; if (replicates.length) { @@ -218,6 +219,7 @@ class Bioexperiment extends React.Component { return null; })); } + console.log("libraryDoc", libraryDocs); // Create platforms array from file platforms; ignore duplicate platforms. const platforms = {}; if (context.files && context.files.length) { @@ -328,6 +330,7 @@ class Bioexperiment extends React.Component { // const organismNames = BiosampleOrganismNames(biosamples); const organismNames = BiospecimenOrganismNames(biosamples); + console.log('organismName', organismNames); let nameQuery = ''; let nameTip = ''; const names = organismNames.map((organismName, i) => { @@ -362,24 +365,28 @@ class Bioexperiment extends React.Component {
Accession: {biospecimen_summary[0].accession}
Patient: {biospecimen_summary[0].patient}
Openspecimen ID: {biospecimen_summary[0].openspecimen_id}
-
Sample Type: {biospecimen_summary[0].sample_type}
-
Tissue Derivatives: {biospecimen_summary[0].tissue_derivatives}
+
Collection Type: {biospecimen_summary[0].collection_type}
+
Processing Type: {biospecimen_summary[0].processing_type}
Tissue Type: {biospecimen_summary[0].tissue_type}
Species: {biospecimen_summary[0].species}
Anatomic Site: {biospecimen_summary[0].anatomic_site}
+
Primary Site: {biospecimen_summary[0].primary_site}
); return ( -
-
-
+
+

Experiment summary for {context.accession}

- -
+
+ +
+
+ {/* {auditDetail(context.audit, 'experiment-audit', { session: reactContext.session, sessionProperties: reactContext.session_properties, except: context['@id'] })} */} +
@@ -700,4 +707,4 @@ RelatedSeriesItem.propTypes = { RelatedSeriesItem.defaultProps = { detailOpen: false, -}; +}; \ No newline at end of file diff --git a/src/encoded/static/components/biospecimen.js b/src/encoded/static/components/biospecimen.js index 91e2c38d58..355a95dbb0 100644 --- a/src/encoded/static/components/biospecimen.js +++ b/src/encoded/static/components/biospecimen.js @@ -30,30 +30,31 @@ class Biospecimen extends React.Component { return list } - createPathTable(){ + createPathTable(){ const context = this.props.context; let list = [] - if (context.surgery && context.surgery.pathology_report) { - - for(let i = 0; i < context.surgery.pathology_report.length; i++){ - list.push(
) - list.push() - list.push(
Histologic Subtype
{context.surgery.pathology_report[i].histology}
) - if (context.surgery.pathology_report[i].t_stage) { - list.push(
pT Stage
{context.surgery.pathology_report[i].t_stage}
) - } - if (context.surgery.pathology_report[i].n_stage) { - list.push(
pN Stage
{context.surgery.pathology_report[i].n_stage}
) - } - if (context.surgery.pathology_report[i].m_stage) { - list.push(
pM Stage
{context.surgery.pathology_report[i].m_stage}
) - } - if (context.surgery.pathology_report[i].ajcc_version){ - list.push(
AJCC Version
{context.surgery.pathology_report[i].ajcc_version}
) + if (context.surgery && context.surgery.surgery_procedure) { + for (let i = 0; i < context.surgery.surgery_procedure.length; i++){ + for (let j = 0; j < context.surgery.surgery_procedure[i].pathology_report.length; j++){ + list.push(
) + list.push() + list.push(
Histologic Subtype
{context.surgery.surgery_procedure[i].pathology_report[j].histology}
) + if (context.surgery.surgery_procedure[i].pathology_report[j].t_stage) { + list.push(
pT Stage
{context.surgery.surgery_procedure[i].pathology_report[j].t_stage}
) + } + if (context.surgery.surgery_procedure[i].pathology_report[j].n_stage) { + list.push(
pN Stage
{context.surgery.surgery_procedure[i].pathology_report[j].n_stage}
) + } + if (context.surgery.surgery_procedure[i].pathology_report[j].m_stage) { + list.push(
pM Stage
{context.surgery.surgery_procedure[i].pathology_report[j].m_stage}
) + } + if (context.surgery.surgery_procedure[i].pathology_report[j].ajcc_version){ + list.push(
AJCC Version
{context.surgery.surgery_procedure[i].pathology_report[j].ajcc_version}
) + } } + } - } } return list @@ -61,6 +62,7 @@ class Biospecimen extends React.Component { render() { + const context = this.props.context; const itemClass = globals.itemClass(context, 'view-item'); // Set up breadcrumbs @@ -70,7 +72,8 @@ class Biospecimen extends React.Component { ]; const crumbsReleased = (context.status === 'released'); let hasGenomics =false; - if (Object.keys(this.props.context.biolibrary).length > 0) { + // if ( context.genomic_release.item_status==='released'&&Object.keys(this.props.context.biofile).length > 0 ) { + if ( Object.keys(this.props.context.biofile).length > 0 ) { hasGenomics = true; } let hasIHC=false; @@ -136,9 +139,9 @@ class Biospecimen extends React.Component {
Specimen Pathological Type
{context.tissue_type}
} - {context.anatomic_site &&
+ {context.anatomic_site_display &&
Anatomic Site
-
{context.anatomic_site}
+
{context.anatomic_site_display}
} {context.primary_site &&
Primary Site
@@ -169,7 +172,7 @@ class Biospecimen extends React.Component {
- {/* { hasGenomics && } */} + { hasGenomics && } {hasIHC&&} {false && @@ -184,3 +187,4 @@ class Biospecimen extends React.Component { } globals.contentViews.register(Biospecimen, 'Biospecimen'); + diff --git a/src/encoded/static/components/biospecimenTable.js b/src/encoded/static/components/biospecimenTable.js index acce893de6..8c4739cda9 100644 --- a/src/encoded/static/components/biospecimenTable.js +++ b/src/encoded/static/components/biospecimenTable.js @@ -22,6 +22,15 @@ class BiospecimenTable extends React.Component { specimen_label: { title: "Specimen label" }, + surgery: { + title: "Surgery", + display: biospecimen => { + if (typeof biospecimen['surgery'] != 'undefined') { + return {biospecimen['surgery'].split('/')[2]} + } + + }, + }, sample_type: { title: 'Specimen type', }, @@ -31,7 +40,7 @@ class BiospecimenTable extends React.Component { tissue_type: { title: 'Specimen pathological type', }, - anatomic_site: { + anatomic_site_display: { title: 'Anatomic site', }, species: { @@ -67,3 +76,4 @@ class BiospecimenTable extends React.Component { } export default BiospecimenTable; + diff --git a/src/encoded/static/components/cart/cart.js b/src/encoded/static/components/cart/cart.js index 84a4820538..ae9df284e4 100644 --- a/src/encoded/static/components/cart/cart.js +++ b/src/encoded/static/components/cart/cart.js @@ -72,7 +72,7 @@ const displayedFacetFields = [ { field: 'sample_type', title: 'Sample Type'}, { field: 'tissue_derivatives', title: 'Tissue Derivatives'}, { field: 'tissue_type', title: 'Tissue Type'}, - { field: 'anatomic_site', title: 'Anatomic Site'}, + { field: 'anatomic_site_display', title: 'Anatomic Site'}, { field: 'status', title: 'Status' }, ]; diff --git a/src/encoded/static/components/errors.js b/src/encoded/static/components/errors.js index 66734ea020..2fc0541773 100755 --- a/src/encoded/static/components/errors.js +++ b/src/encoded/static/components/errors.js @@ -49,7 +49,10 @@ class HTTPForbidden extends React.Component {

Not available

{loggedIn ?

Your account is not allowed to view this page.

:

Please sign in to view this page.

} - {loggedIn ? null :

Or Request an account.

} + {loggedIn ? null :

Users of any data provided by KCE agree not to attempt to reidentify any individual participant in any study represented by KCE data, + for any purpose whatever. This includes, but is not limited to, the use of analytical techniques of reidentification on genomic or clinical data.

} + {loggedIn ? null :

Or Request an account.

} +
); } @@ -74,17 +77,17 @@ const LoginDenied = (props) => { return (

Our Apologies!

-

The email address you have provided us does not match any user of the ENCODE Portal.

-

As you know, we have recently changed our login system.

- +

The email address you have provided us does not match any user in the Portal.

- The ENCODE Portal now uses a variety of common identity providers to verify you are who say you are.
+ The KCE Portal uses a your UT Southwestern email to verify you are who say you are.
The email address you use as your “id” must match exactly the email address in our system.

-

Please be aware that login access (to unreleased data) is available only to ENCODE Consortium members.

-

Please contact Help Desk if you need an account, or if your old account is not working.

-

Terms and ConditionsPrivacy Policy

+

Please be aware that full download access is only avaiable to those that agree to all terms and conditions.

+

Users of any data provided by KCE agree not to attempt to reidentify any individual participant in any study represented by KCE data, + for any purpose whatever. This includes, but is not limited to, the use of analytical techniques of reidentification on genomic or clinical data.

+

Please contact Help Desk if you need an account

+

Privacy Policy

); }; diff --git a/src/encoded/static/components/facets/defaults.js b/src/encoded/static/components/facets/defaults.js index 29ce1d9eda..bf4e2e2075 100644 --- a/src/encoded/static/components/facets/defaults.js +++ b/src/encoded/static/components/facets/defaults.js @@ -874,7 +874,7 @@ const FacetTerms = React.memo(({ facet, results, mode, relevantFilters, pathname if (facet.field.includes("histology_filter")){ filteredTerms = sortTermsAlphabetical(filteredTerms); } - if (facet.field.includes("pathology_report.t_stage") || facet.field.includes("surgery.pathology_report.n_stage") || facet.field.includes("surgery.pathology_report.m_stage") || facet.field.includes("surgery.pathology_report.ajcc_tnm_stage")){ + if (facet.field.includes("pathology_report.t_stage") || facet.field.includes("surgery.surgery_procedure.pathology_report.n_stage") || facet.field.includes("surgery.surgery_procedure.pathology_report.m_stage") || facet.field.includes("surgery.surgery_procedure.pathology_report.ajcc_tnm_stage")){ filteredTerms = sortStageTerms(filteredTerms); } if (facet.field === "diagnosis.age_range" || facet.field === "diagnosis.follow_up_duration_range" || facet.field.includes("pathology_report.pathology_report_tumor_range") diff --git a/src/encoded/static/components/formsTable.js b/src/encoded/static/components/formsTable.js new file mode 100644 index 0000000000..54d41af5f2 --- /dev/null +++ b/src/encoded/static/components/formsTable.js @@ -0,0 +1,1424 @@ +import React from "react"; +import { SortTablePanel, SortTable } from "./sorttable"; + +class FormsTable extends React.Component { + constructor(props) { + super(props); + this.forms = this.transformData(this.props.data); + } + + transformData(data) { + let forms = []; + console.log("data", data); + let visitObj = { + visit_number: 1, + visit_name: "Initial Visit", + visit_date: data.ivp_a1v3[0]["visdate"], + // ===========================version3=========================================== + a1v3_name: "ivp_a1v3", + a1v3_id: data.ivp_a1v3[0]["@id"], + a2v3_id: "", + a2v3_name: "", + a3v3_id: "", + a3v3_name: "", + a4v3_id: "", + a4v3_name: "", + a5v3_id: "", + a5v3_name: "", + b1v3_id: "", + b1v3_name: "", + b4v3_id: "", + b4v3_name: "", + b5v3_id: "", + b5v3_name: "", + b6v3_id: "", + b6v3_name: "", + b7v3_id: "", + b7v3_name: "", + b8v3_id: "", + b8v3_name: "", + b9v3_id: "", + b9v3_name: "", + c2v3_id: "", + c2v3_name: "", + d1v3_id: "", + d1v3_name: "", + d2v3_id: "", + d2v3_name: "", + z1xv3_name: "", + z1xv3_id: "", + // ================================version 2============================ + + a1v2_id: "", + a1v2_name: "", + a2v2_id: "", + a2v2_name: "", + a3v2_id: "", + a3v2_name: "", + a4v2_id: "", + a4v2_name: "", + a5v2_id: "", + a5v2_name: "", + b1v2_id: "", + b1v2_name: "", + b2v2_id: "", + b2v2_name: "", + b3v2_id: "", + b3v2_name: "", + b4v2_id: "", + b4v2_name: "", + b5v2_id: "", + b5v2_name: "", + b6v2_id: "", + b6v2_name: "", + b7v2_id: "", + b7v2_name: "", + b8v2_id: "", + b8v2_name: "", + b9v2_id: "", + b9v2_name: "", + c1v2_id: "", + c1v2_name: "", + + d1v2_id: "", + d1v2_name: "", + + e1v2_id: "", + e1v2_name: "", + z1v2_id: "", + z1v2_name: "", + // ================================version 1=========================== + + a1v1_id: "", + a1v1_name: "", + a2v1_id: "", + a2v1_name: "", + a3v1_id: "", + a3v1_name: "", + a4v1_id: "", + a4v1_name: "", + a5v1_id: "", + a5v1_name: "", + b1v1_id: "", + b1v1_name: "", + b2v1_id: "", + b2v1_name: "", + b3v1_id: "", + b3v1_name: "", + b4v1_id: "", + b4v1_name: "", + b5v1_id: "", + b5v1_name: "", + b6v1_id: "", + b6v1_name: "", + b7v1_id: "", + b7v1_name: "", + b8v1_id: "", + b8v1_name: "", + b9v1_id: "", + b9v1_name: "", + c1v1_id: "", + c1v1_name: "", + d1v1_id: "", + d1v1_name: "", + e1v1_id: "", + e1v1_name: "", + z1v1_id: "", + z1v1_name: "", + // =========================local form=========================== + m1_name: "", + m1_id: "", + local_form_name: "", + local_form_id: "", + concussion_history_id: "", + concussion_history_name: "", + moca_name: "", + moca_id: "", + updrs_name: "", + updrs_id: "", + visit_contact_name: "", + visit_contact_id: "", + physical_exam_name: "", + physical_exam_id: "", + }; + + // ================================= initial visits version 3==================================== + + if (data.ivp_a1v3.length > 0) { + visitObj.a1v3_id = data.ivp_a1v3[0]["@id"]; + visitObj.a1v3_name = "ivp_a1v3"; + } + + if (data.ivp_a2v3.length > 0) { + visitObj.a2v3_id = data.ivp_a2v3[0]["@id"]; + visitObj.a2v3_name = "ivp_a2v3"; + } + + if (data.ivp_a3v3.length > 0) { + visitObj.a3v3_id = data.ivp_a3v3[0]["@id"]; + visitObj.a3v3_name = "ivp_a3v3"; + } + + if (data.ivp_a4v3.length > 0) { + visitObj.a4v3_id = data.ivp_a4v3[0]["@id"]; + visitObj.a4v3_name = "ivp_a4v3"; + } + + if (data.ivp_a5v3.length > 0) { + visitObj.a5v3_id = data.ivp_a5v3[0]["@id"]; + visitObj.a5v3_name = "ivp_a5v3"; + } + + if (data.ivp_b1v3.length > 0) { + visitObj.b1v3_id = data.ivp_b1v3[0]["@id"]; + visitObj.b1v3_name = "ivp_b1v3"; + } + + if (data.ivp_b4v3.length > 0) { + visitObj.b4v3_id = data.ivp_b4v3[0]["@id"]; + visitObj.b4v3_name = "ivp_b4v3"; + } + + if (data.ivp_b5v3.length > 0) { + visitObj.b5v3_id = data.ivp_b5v3[0]["@id"]; + visitObj.b5v3_name = "ivp_b5v3"; + } + + if (data.ivp_b6v3.length > 0) { + visitObj.b6v3_id = data.ivp_b6v3[0]["@id"]; + visitObj.b6v3_name = "ivp_b6v3"; + } + + if (data.ivp_b7v3.length > 0) { + visitObj.b7v3_id = data.ivp_b7v3[0]["@id"]; + visitObj.b7v3_name = "ivp_b7v3"; + } + + if (data.ivp_b8v3.length > 0) { + visitObj.b8v3_id = data.ivp_b8v3[0]["@id"]; + visitObj.b8v3_name = "ivp_b8v3"; + } + + if (data.ivp_b9v3.length > 0) { + visitObj.b9v3_id = data.ivp_b9v3[0]["@id"]; + visitObj.b9v3_name = "ivp_b9v3"; + } + + if (data.ivp_c2v3.length > 0) { + visitObj.c2v3_id = data.ivp_c2v3[0]["@id"]; + visitObj.c2v3_name = "ivp_c2v3"; + } + + if (data.ivp_d1v3.length > 0) { + visitObj.d1v3_id = data.ivp_d1v3[0]["@id"]; + visitObj.d1v3_name = "ivp_d1v3"; + } + + if (data.ivp_d2v3.length > 0) { + visitObj.d2v3_id = data.ivp_d2v3[0]["@id"]; + visitObj.d2v3_name = "ivp_d2v3"; + } + + if (data.ivp_z1xv3.length > 0) { + visitObj.z1xv3_id = data.ivp_z1xv3[0]["@id"]; + visitObj.z1xv3_name = "ivp_z1xv3"; + } + // =================================initial visits version 2==================================== + + if (data.ivp_a1v2.length > 0) { + visitObj.a1v2_id = data.ivp_a1v2[0]["@id"]; + visitObj.a1v2_name = "ivp_a1v2"; + } + if (data.ivp_a2v2.length > 0) { + visitObj.a2v2_id = data.ivp_a2v2[0]["@id"]; + visitObj.a2v2_name = "ivp_a2v2"; + } + if (data.ivp_a3v2.length > 0) { + visitObj.a3v2_id = data.ivp_a3v2[0]["@id"]; + visitObj.a3v2_name = "ivp_a3v2"; + } + if (data.ivp_a4v2.length > 0) { + visitObj.a4v2_id = data.ivp_a4v2[0]["@id"]; + visitObj.a4v2_name = "ivp_a4v2"; + } + if (data.ivp_a5v2.length > 0) { + visitObj.a5v2_id = data.ivp_a5v2[0]["@id"]; + visitObj.a5v2_name = "ivp_a5v2"; + } + if (data.ivp_b1v2.length > 0) { + visitObj.b1v2_id = data.ivp_b1v2[0]["@id"]; + visitObj.b1v2_name = "ivp_b1v2"; + } + if (data.ivp_b2v2.length > 0) { + visitObj.b2v2_id = data.ivp_b2v2[0]["@id"]; + visitObj.b2v2_name = "ivp_b2v2"; + } + if (data.ivp_b3v2.length > 0) { + visitObj.b3v2_id = data.ivp_b3v2[0]["@id"]; + visitObj.b3v2_name = "ivp_b3v2"; + } + if (data.ivp_b4v2.length > 0) { + visitObj.b4v2_id = data.ivp_b4v2[0]["@id"]; + visitObj.b4v2_name = "ivp_b4v2"; + } + if (data.ivp_b5v2.length > 0) { + visitObj.b5v2_id = data.ivp_b5v2[0]["@id"]; + visitObj.b5v2_name = "ivp_b5v2"; + } + if (data.ivp_b6v2.length > 0) { + visitObj.b6v2_id = data.ivp_b6v2[0]["@id"]; + visitObj.b6v2_name = "ivp_b6v2"; + } + if (data.ivp_b7v2.length > 0) { + visitObj.b7v2_id = data.ivp_b7v2[0]["@id"]; + visitObj.b7v2_name = "ivp_b7v2"; + } + if (data.ivp_b8v2.length > 0) { + visitObj.b8v2_id = data.ivp_b8v2[0]["@id"]; + visitObj.b8v2_name = "ivp_b8v2"; + } + if (data.ivp_b9v2.length > 0) { + visitObj.b9v2_id = data.ivp_b9v2[0]["@id"]; + visitObj.b9v2_name = "ivp_b9v2"; + } + if (data.ivp_c1v2.length > 0) { + visitObj.c1v2_id = data.ivp_c1v2[0]["@id"]; + visitObj.c1v2_name = "ivp_c1v2"; + } + if (data.ivp_d1v2.length > 0) { + visitObj.d1v2_id = data.ivp_d1v2[0]["@id"]; + visitObj.d1v2_name = "ivp_d1v2"; + } + if (data.ivp_e1v2.length > 0) { + visitObj.e1v2_id = data.ivp_e1v2[0]["@id"]; + visitObj.e1v2_name = "ivp_e1v2"; + } + if (data.ivp_z1v2.length > 0) { + visitObj.z1v2_id = data.ivp_z1v2[0]["@id"]; + visitObj.z1v2_name = "ivp_z1v2"; + } + // =================================initial visits version 1==================================== + + if (data.ivp_a1v1.length > 0) { + visitObj.a1v1_id = data.ivp_a1v1[0]["@id"]; + visitObj.a1v1_name = "ivp_a1v1"; + } + if (data.ivp_a2v1.length > 0) { + visitObj.a2v1_id = data.ivp_a2v1[0]["@id"]; + visitObj.a2v1_name = "ivp_a2v1"; + } + if (data.ivp_a3v1.length > 0) { + visitObj.a3v1_id = data.ivp_a3v1[0]["@id"]; + visitObj.a3v1_name = "ivp_a3v1"; + } + if (data.ivp_a4v1.length > 0) { + visitObj.a4v1_id = data.ivp_a4v1[0]["@id"]; + visitObj.a4v1_name = "ivp_a4v1"; + } + if (data.ivp_a5v1.length > 0) { + visitObj.a5v1_id = data.ivp_a5v1[0]["@id"]; + visitObj.a5v1_name = "ivp_a5v1"; + } + if (data.ivp_b1v1.length > 0) { + visitObj.b1v1_id = data.ivp_b1v1[0]["@id"]; + visitObj.b1v1_name = "ivp_b1v1"; + } + if (data.ivp_b2v1.length > 0) { + visitObj.b2v1_id = data.ivp_b2v1[0]["@id"]; + visitObj.b2v1_name = "ivp_b2v1"; + } + if (data.ivp_b3v1.length > 0) { + visitObj.b3v1_id = data.ivp_b3v1[0]["@id"]; + visitObj.b3v1_name = "ivp_b3v1"; + } + if (data.ivp_b4v1.length > 0) { + visitObj.b4v1_id = data.ivp_b4v1[0]["@id"]; + visitObj.b4v1_name = "ivp_b4v1"; + } + if (data.ivp_b5v1.length > 0) { + visitObj.b5v1_id = data.ivp_b5v1[0]["@id"]; + visitObj.b5v1_name = "ivp_b5v1"; + } + if (data.ivp_b6v1.length > 0) { + visitObj.b6v1_id = data.ivp_b6v1[0]["@id"]; + visitObj.b6v1_name = "ivp_b6v1"; + } + if (data.ivp_b7v1.length > 0) { + visitObj.b7v1_id = data.ivp_b7v1[0]["@id"]; + visitObj.b7v1_name = "ivp_b7v1"; + } + if (data.ivp_b8v1.length > 0) { + visitObj.b8v1_id = data.ivp_b8v1[0]["@id"]; + visitObj.b8v1_name = "ivp_b8v1"; + } + if (data.ivp_b9v1.length > 0) { + visitObj.b9v1_id = data.ivp_b9v1[0]["@id"]; + visitObj.b9v1_name = "ivp_b9v1"; + } + if (data.ivp_c1v1.length > 0) { + visitObj.c1v1_id = data.ivp_c1v1[0]["@id"]; + visitObj.c1v1_name = "ivp_c1v1"; + } + if (data.ivp_d1v1.length > 0) { + visitObj.d1v1_id = data.ivp_d1v1[0]["@id"]; + visitObj.d1v1_name = "ivp_d1v1"; + } + if (data.ivp_e1v1.length > 0) { + visitObj.e1v1_id = data.ivp_e1v1[0]["@id"]; + visitObj.e1v1_name = "ivp_e1v1"; + } + if (data.ivp_z1v1.length > 0) { + visitObj.z1v1_id = data.ivp_z1v1[0]["@id"]; + visitObj.z1v1_name = "ivp_z1v1"; + } + // =================================initial visits local version ==================================== + if (data.concussion_history.length > 0) { + visitObj.concussion_history_id = data.concussion_history[0]["@id"]; + visitObj.concussion_history_name = "concussion_history"; + } + if (data.updrs.length > 0) { + visitObj.updrs_id = data.updrs[0]["@id"]; + visitObj.updrs_name = "UPDRS"; + } + if (data.visit_contact.length > 0) { + visitObj.visit_contact_id = data.visit_contact[0]["@id"]; + visitObj.visit_contact_name = "visit/contact"; + } + if (data.physical_exam.length > 0) { + visitObj.physical_exam_id = data.physical_exam[0]["@id"]; + visitObj.physical_exam_name = "physical_exam"; + } + if (data.moca.length > 0) { + visitObj.moca_id = data.moca[0]["@id"]; + visitObj.moca_name = "MOCA"; + } + forms[0] = visitObj; + let followUpVisitTimes = this.getFollowUpVisitTimes(data); + + console.log(followUpVisitTimes); + for (let i = 0; i < followUpVisitTimes.length; i++) { + let visitObj = { + visit_number: i + 2, + visit_name: "Follow Up Visit " + (i + 1), + visit_date: followUpVisitTimes[i], + // ===========================fvp version 3=========================================== + a1v3_name: "", + a1v3_id: "", + a2v3_id: "", + a2v3_name: "", + a3v3_id: "", + a3v3_name: "", + a4v3_id: "", + a4v3_name: "", + a5v3_id: "", + a5v3_name: "", + b1v3_id: "", + b1v3_name: "", + b4v3_id: "", + b4v3_name: "", + b5v3_id: "", + b5v3_name: "", + b6v3_id: "", + b6v3_name: "", + b7v3_id: "", + b7v3_name: "", + b8v3_id: "", + b8v3_name: "", + b9v3_id: "", + b9v3_name: "", + c2v3_id: "", + c2v3_name: "", + d1v3_id: "", + d1v3_name: "", + d2v3_id: "", + d2v3_name: "", + z1xv3_name: "", + z1xv3_id: "", + // ================================fvpe version 2============================ + + a1v2_id: "", + a1v2_name: "", + a2v2_id: "", + a2v2_name: "", + a3v2_id: "", + a3v2_name: "", + a4v2_id: "", + a4v2_name: "", + a5v2_id: "", + a5v2_name: "", + b1v2_id: "", + b1v2_name: "", + b2v2_id: "", + b2v2_name: "", + b3v2_id: "", + b3v2_name: "", + b4v2_id: "", + b4v2_name: "", + b5v2_id: "", + b5v2_name: "", + b6v2_id: "", + b6v2_name: "", + b7v2_id: "", + b7v2_name: "", + b8v2_id: "", + b8v2_name: "", + b9v2_id: "", + b9v2_name: "", + c1v2_id: "", + c1v2_name: "", + + d1v2_id: "", + d1v2_name: "", + + e1v2_id: "", + e1v2_name: "", + z1v2_id: "", + z1v2_name: "", + // ================================fvp version 1=========================== + + a1v1_id: "", + a1v1_name: "", + a2v1_id: "", + a2v1_name: "", + a3v1_id: "", + a3v1_name: "", + a4v1_id: "", + a4v1_name: "", + a5v1_id: "", + a5v1_name: "", + b1v1_id: "", + b1v1_name: "", + b2v1_id: "", + b2v1_name: "", + b3v1_id: "", + b3v1_name: "", + b4v1_id: "", + b4v1_name: "", + b5v1_id: "", + b5v1_name: "", + b6v1_id: "", + b6v1_name: "", + b7v1_id: "", + b7v1_name: "", + b8v1_id: "", + b8v1_name: "", + b9v1_id: "", + b9v1_name: "", + c1v1_id: "", + c1v1_name: "", + d1v1_id: "", + d1v1_name: "", + e1v1_id: "", + e1v1_name: "", + z1v1_id: "", + z1v1_name: "", + // =========================fvp local form=========================== + m1_name: "", + m1_id: "", + local_form_name: "", + local_form_id: "", + concussion_history_id: "", + concussion_history_name: "", + moca_name: "", + moca_id: "", + updrs_name: "", + updrs_id: "", + visit_contact_name: "", + visit_contact_id: "", + physical_exam_name: "", + physical_exam_id: "", + }; + forms.push(visitObj); + } + console.log(forms); + // ==============================follow-up visits version 3========================================= + for (let i = 0; i < data.fvp_a1v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a1v3[i]["visdate"]) + 1; + console.log(index); + forms[index].a1v3_id = data.fvp_a1v3[i]["@id"]; + forms[index].a1v3_name = "fvp_a1v3"; + } + + for (let i = 0; i < data.fvp_a2v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a2v3[i]["visdate"]) + 1; + + forms[index].a2v3_id = data.fvp_a2v3[i]["@id"]; + forms[index].a2v3_name = "fvp_a2v3"; + } + + for (let i = 0; i < data.fvp_a3v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a3v3[i]["visdate"]) + 1; + + forms[index].a3v3_id = data.fvp_a3v3[i]["@id"]; + forms[index].a3v3_name = "fvp_a3v3"; + } + + for (let i = 0; i < data.fvp_a4v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a4v3[i]["visdate"]) + 1; + + forms[index].a4v3_id = data.fvp_a4v3[i]["@id"]; + forms[index].a4v3_name = "fvp_a4v3"; + } + + for (let i = 0; i < data.fvp_b1v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b1v3[i]["visdate"]) + 1; + + forms[index].b1v3_id = data.fvp_b1v3[i]["@id"]; + forms[index].b1v3_name = "fvp_b1v3"; + } + + for (let i = 0; i < data.fvp_b4v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b4v3[i]["visdate"]) + 1; + + forms[index].b4v3_id = data.fvp_b4v3[i]["@id"]; + forms[index].b4v3_name = "fvp_b4v3"; + } + + for (let i = 0; i < data.fvp_b5v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b5v3[i]["visdate"]) + 1; + + forms[index].b5v3_id = data.fvp_b5v3[i]["@id"]; + forms[index].b5v3_name = "fvp_b5v3"; + } + + for (let i = 0; i < data.fvp_b6v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b6v3[i]["visdate"]) + 1; + + forms[index].b6v3_id = data.fvp_b6v3[i]["@id"]; + forms[index].b6v3_name = "fvp_b6v3"; + } + + for (let i = 0; i < data.fvp_b7v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b7v3[i]["visdate"]) + 1; + + forms[index].b7v3_id = data.fvp_b7v3[i]["@id"]; + forms[index].b7v3_name = "fvp_b7v3"; + } + + for (let i = 0; i < data.fvp_b8v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b8v3[i]["visdate"]) + 1; + + forms[index].b8v3_id = data.fvp_b8v3[i]["@id"]; + forms[index].b8v3_name = "fvp_b8v3"; + } + + for (let i = 0; i < data.fvp_b9v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b9v3[i]["visdate"]) + 1; + + forms[index].b9v3_id = data.fvp_b9v3[i]["@id"]; + forms[index].b9v3_name = "fvp_b9v3"; + } + + for (let i = 0; i < data.fvp_c1v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_c1v3[i]["visdate"]) + 1; + + forms[index].c1v3_id = data.fvp_c1v3[i]["@id"]; + forms[index].c1v3_name = "fvp_c1v3"; + } + for (let i = 0; i < data.fvp_c2v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_c2v3[i]["visdate"]) + 1; + + forms[index].c2v3_id = data.fvp_c2v3[i]["@id"]; + forms[index].c2v3_name = "fvp_c2v3"; + } + + for (let i = 0; i < data.fvp_d1v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_d1v3[i]["visdate"]) + 1; + + forms[index].d1v3_id = data.fvp_d1v3[i]["@id"]; + forms[index].d1v3_name = "fvp_d1v3"; + } + for (let i = 0; i < data.fvp_d2v3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_d2v3[i]["visdate"]) + 1; + + forms[index].d2v3_id = data.fvp_d2v3[i]["@id"]; + forms[index].d2v3_name = "fvp_d2v3"; + } + + for (let i = 0; i < data.fvp_z1xv3.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_z1xv3[i]["visdate"]) + 1; + + forms[index].z1xv3_id = data.fvp_z1xv3[i]["@id"]; + forms[index].z1xv3_name = "fvp_z1xv3"; + } + // =================================follow-up visits version 2==================================== + + for (let i = 0; i < data.fvp_a1v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a1v2[i]["visdate"]) + 1; + + forms[index].a1v2_id = data.fvp_a1v2[i]["@id"]; + forms[index].a1v2_name = "fvp_a1v2"; + } + for (let i = 0; i < data.fvp_a2v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a2v2[i]["visdate"]) + 1; + + forms[index].a2v2_id = data.fvp_a2v2[i]["@id"]; + forms[index].a2v2_name = "fvp_a2v2"; + } + for (let i = 0; i < data.fvp_a3v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a3v2[i]["visdate"]) + 1; + + forms[index].a3v2_id = data.fvp_a3v2[i]["@id"]; + forms[index].a3v2_name = "fvp_a3v2"; + } + for (let i = 0; i < data.fvp_a4v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a4v2[i]["visdate"]) + 1; + + forms[index].a4v2_id = data.fvp_a4v2[i]["@id"]; + forms[index].a4v2_name = "fvp_a4v2"; + } + for (let i = 0; i < data.fvp_a5v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a5v2[i]["visdate"]) + 1; + + forms[index].a5v2_id = data.fvp_a5v2[i]["@id"]; + forms[index].a5v2_name = "fvp_a5v2"; + } + for (let i = 0; i < data.fvp_b1v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b1v2[i]["visdate"]) + 1; + + forms[index].b1v2_id = data.fvp_b1v2[i]["@id"]; + forms[index].b1v2_name = "fvp_b1v2"; + } + for (let i = 0; i < data.fvp_b2v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b2v2[i]["visdate"]) + 1; + + forms[index].b2v2_id = data.fvp_b2v2[i]["@id"]; + forms[index].b2v2_name = "fvp_b2v2"; + } + for (let i = 0; i < data.fvp_b3v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b3v2[i]["visdate"]) + 1; + + forms[index].b3v2_id = data.fvp_b3v2[i]["@id"]; + forms[index].b3v2_name = "fvp_b3v2"; + } + for (let i = 0; i < data.fvp_b4v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b4v2[i]["visdate"]) + 1; + + forms[index].b4v2_id = data.fvp_b4v2[i]["@id"]; + forms[index].b4v2_name = "fvp_b4v2"; + } + for (let i = 0; i < data.fvp_b5v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b5v2[i]["visdate"]) + 1; + + forms[index].b5v2_id = data.fvp_b5v2[i]["@id"]; + forms[index].b5v2_name = "fvp_b5v2"; + } + for (let i = 0; i < data.fvp_b6v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b6v2[i]["visdate"]) + 1; + + forms[index].b6v2_id = data.fvp_b6v2[i]["@id"]; + forms[index].b6v2_name = "fvp_b6v2"; + } + for (let i = 0; i < data.fvp_b7v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b7v2[i]["visdate"]) + 1; + + forms[index].b7v2_id = data.fvp_b7v2[i]["@id"]; + forms[index].b7v2_name = "fvp_b7v2"; + } + for (let i = 0; i < data.fvp_b8v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b8v2[i]["visdate"]) + 1; + + forms[index].b8v2_id = data.fvp_b8v2[i]["@id"]; + forms[index].b8v2_name = "fvp_b8v2"; + } + for (let i = 0; i < data.fvp_b9v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b9v2[i]["visdate"]) + 1; + + forms[index].b9v2_id = data.fvp_b9v2[i]["@id"]; + forms[index].b9v2_name = "fvp_b9v2"; + } + for (let i = 0; i < data.fvp_c1v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_c1v2[i]["visdate"]) + 1; + + forms[index].c1v2_id = data.fvp_c1v2[i]["@id"]; + forms[index].c1v2_name = "fvp_c1v2"; + } + for (let i = 0; i < data.fvp_d1v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_d1v2[i]["visdate"]) + 1; + + forms[index].d1v2_id = data.fvp_d1v2[i]["@id"]; + forms[index].d1v2_name = "fvp_d1v2"; + } + for (let i = 0; i < data.fvp_e1v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_e1v2[i]["visdate"]) + 1; + + forms[index].e1v2_id = data.fvp_e1v2[i]["@id"]; + forms[index].e1v2_name = "fvp_e1v2"; + } + for (let i = 0; i < data.fvp_z1v2.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_z1v2[i]["visdate"]) + 1; + + forms[index].z1v2_id = data.fvp_z1v2[i]["@id"]; + forms[index].z1v2_name = "fvp_z1v2"; + } + + // =================================follow-up visits version 1==================================== + for (let i = 0; i < data.fvp_a1v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a1v1[i]["visdate"]) + 1; + + forms[index].a1v1_id = data.fvp_a1v1[i]["@id"]; + forms[index].a1v1_name = "fvp_a1v1"; + } + for (let i = 0; i < data.fvp_a2v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a2v1[i]["visdate"]) + 1; + + forms[index].a2v1_id = data.fvp_a2v1[i]["@id"]; + forms[index].a2v1_name = "fvp_a2v1"; + } + for (let i = 0; i < data.fvp_a3v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a3v1[i]["visdate"]) + 1; + + forms[index].a3v1_id = data.fvp_a3v1[i]["@id"]; + forms[index].a3v1_name = "fvp_a3v1"; + } + for (let i = 0; i < data.fvp_a4v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a4v1[i]["visdate"]) + 1; + + forms[index].a4v1_id = data.fvp_a4v1[i]["@id"]; + forms[index].a4v1_name = "fvp_a4v1"; + } + for (let i = 0; i < data.fvp_a5v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_a5v1[i]["visdate"]) + 1; + + forms[index].a5v1_id = data.fvp_a5v1[i]["@id"]; + forms[index].a5v1_name = "fvp_a5v1"; + } + for (let i = 0; i < data.fvp_b1v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b1v1[i]["visdate"]) + 1; + + forms[index].b1v1_id = data.fvp_b1v1[i]["@id"]; + forms[index].b1v1_name = "fvp_b1v1"; + } + for (let i = 0; i < data.fvp_b2v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b2v1[i]["visdate"]) + 1; + + forms[index].b2v1_id = data.fvp_b2v1[i]["@id"]; + forms[index].b2v1_name = "fvp_b2v1"; + } + for (let i = 0; i < data.fvp_b3v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b3v1[i]["visdate"]) + 1; + + forms[index].b3v1_id = data.fvp_b3v1[i]["@id"]; + forms[index].b3v1_name = "fvp_b3v1"; + } + for (let i = 0; i < data.fvp_b4v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b4v1[i]["visdate"]) + 1; + + forms[index].b4v1_id = data.fvp_b4v1[i]["@id"]; + forms[index].b4v1_name = "fvp_b4v1"; + } + for (let i = 0; i < data.fvp_b5v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b5v1[i]["visdate"]) + 1; + + forms[index].b5v1_id = data.fvp_b5v1[i]["@id"]; + forms[index].b5v1_name = "fvp_b5v1"; + } + for (let i = 0; i < data.fvp_b6v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b6v1[i]["visdate"]) + 1; + + forms[index].b6v1_id = data.fvp_b6v1[i]["@id"]; + forms[index].b6v1_name = "fvp_b6v1"; + } + for (let i = 0; i < data.fvp_b7v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b7v1[i]["visdate"]) + 1; + + forms[index].b7v1_id = data.fvp_b7v1[i]["@id"]; + forms[index].b7v1_name = "fvp_b7v1"; + } + for (let i = 0; i < data.fvp_b8v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b8v1[i]["visdate"]) + 1; + + forms[index].b8v1_id = data.fvp_b8v1[i]["@id"]; + forms[index].b8v1_name = "fvp_b8v1"; + } + for (let i = 0; i < data.fvp_b9v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_b9v1[i]["visdate"]) + 1; + + forms[index].b9v1_id = data.fvp_b9v1[i]["@id"]; + forms[index].b9v1_name = "fvp_b9v1"; + } + for (let i = 0; i < data.fvp_c1v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_c1v1[i]["visdate"]) + 1; + + forms[index].c1v1_id = data.fvp_c1v1[i]["@id"]; + forms[index].c1v1_name = "fvp_c1v1"; + } + for (let i = 0; i < data.fvp_d1v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_d1v1[i]["visdate"]) + 1; + + forms[index].d1v1_id = data.fvp_d1v1[i]["@id"]; + forms[index].d1v1_name = "fvp_d1v1"; + } + for (let i = 0; i < data.fvp_e1v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_e1v1[i]["visdate"]) + 1; + + forms[index].e1v1_id = data.fvp_e1v1[i]["@id"]; + forms[index].e1v1_name = "fvp_e1v1"; + } + for (let i = 0; i < data.fvp_z1v1.length; i++) { + let index = followUpVisitTimes.indexOf(data.fvp_z1v1[i]["visdate"]) + 1; + + forms[index].z1v1_id = data.fvp_z1v1[i]["@id"]; + forms[index].z1v1_name = "fvp_z1v1"; + } + + // =================================telephone follow-up visits==================================== + + for (let i = 0; i < data.tvp_a1.length; i++) { + let index = followUpVisitTimes.indexOf(data.tvp_a1[i]["visdate"]) + 1; + + forms[index].a1_id = data.tvp_a1[i]["@id"]; + forms[index].a1_name = "tvp_a1"; + } + for (let i = 0; i < data.tvp_a3.length; i++) { + let index = followUpVisitTimes.indexOf(data.tvp_a3[i]["visdate"]) + 1; + + forms[index].a3_id = data.tvp_a3[i]["@id"]; + forms[index].a3_name = "tvp_a3"; + } + for (let i = 0; i < data.tvp_z1x.length; i++) { + let index = followUpVisitTimes.indexOf(data.tvp_z1x[i]["visdate"]) + 1; + forms[index].z1x_id = data.tvp_z1x[i]["@id"]; + forms[index].z1x_name = "tvp_z1x"; + } + + for (let i = 0; i < data.tvp_d2.length; i++) { + let index = followUpVisitTimes.indexOf(data.tvp_d2[i]["visdate"]) + 1; + + forms[index].d2_id = data.tvp_d2[i]["@id"]; + forms[index].d2_name = "tvp_d2"; + } + + for (let i = 0; i < data.tvp_t1.length; i++) { + let index = followUpVisitTimes.indexOf(data.tvp_t1[i]["visdate"]) + 1; + console.log(index); + forms[index].t1_id = data.tvp_t1[i]["@id"]; + forms[index].t1_name = "tvp_t1"; + } + for (let i = 0; i < data.tvp_b4.length; i++) { + let index = followUpVisitTimes.indexOf(data.tvp_b4[i]["visdate"]) + 1; + + forms[index].b4_id = data.tvp_b4[i]["@id"]; + forms[index].b4_name = "tvp_b4"; + } + for (let i = 0; i < data.tvp_b7.length; i++) { + let index = followUpVisitTimes.indexOf(data.tvp_b7[i]["visdate"]) + 1; + + forms[index].b7_id = data.tvp_b7[i]["@id"]; + forms[index].b7_name = "tvp_b7"; + } + for (let i = 0; i < data.tvp_b5.length; i++) { + let index = followUpVisitTimes.indexOf(data.tvp_b5[i]["visdate"]) + 1; + + forms[index].b5_id = data.tvp_b5[i]["@id"]; + forms[index].b5_name = "tvp_b5"; + } + for (let i = 0; i < data.tvp_a2.length; i++) { + let index = followUpVisitTimes.indexOf(data.tvp_a2[i]["visdate"]) + 1; + + forms[index].a2_id = data.tvp_a2[i]["@id"]; + forms[index].a2_name = "tvp_a2"; + } + + for (let i = 0; i < data.tvp_a4.length; i++) { + let index = followUpVisitTimes.indexOf(data.tvp_a4[i]["visdate"]) + 1; + + forms[index].a4_id = data.tvp_a4[i]["@id"]; + forms[index].a4_name = "tvp_a4"; + } + + // =================================follow-up visits local version==================================== + for (let i = 0; i < data.concussion_history_follow_up.length; i++) { + let index = + followUpVisitTimes.indexOf( + data.concussion_history_follow_up[i]["visdate"] + ) + 1; + console.log(index); + forms[index].concussion_history_follow_up_id = + data.concussion_history_follow_up[i]["@id"]; + forms[index].concussion_history_follow_up_name = + "concussion_history_follow_up"; + } + return forms; + } + + getFollowUpVisitTimes(data) { + let followUpVisitTimes = []; + // ===============================follow-up visits version 3===================================== + data.fvp_a1v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_a2v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_a3v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_a4v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_b1v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_b4v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_b5v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_b6v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_b7v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_b8v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_b9v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_c1v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_c2v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_d1v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_d2v3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.fvp_z1xv3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + // ===============================follow-up visits version 2===================================== + data.fvp_a1v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_a2v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_a3v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_a4v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_a5v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b1v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b2v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b3v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b4v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b5v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b6v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b7v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b8v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b9v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_c1v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_d1v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_e1v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_z1v2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + // ===============================follow-up visits version 1===================================== + data.fvp_a1v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_a2v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_a3v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_a4v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_a5v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b1v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b2v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b3v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b4v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b5v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b6v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b7v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b8v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_b9v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_c1v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_d1v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_e1v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.fvp_z1v1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + // =============================telephone follow-up visits========================== + data.tvp_a1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.tvp_a2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.tvp_a3.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.tvp_b5.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.tvp_a1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.tvp_z1x.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.tvp_d2.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.tvp_t1.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.tvp_b4.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + data.tvp_b7.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + + data.tvp_a4.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + // ===========================follow-up visits local forms============================== + data.concussion_history_follow_up.forEach((element) => + followUpVisitTimes.push(element["visdate"]) + ); + followUpVisitTimes = [...new Set(followUpVisitTimes)]; + followUpVisitTimes = Array.from(followUpVisitTimes); + followUpVisitTimes.sort(function (a, b) { + a = a.split("-").join(""); + b = b.split("-").join(""); + return a > b ? 1 : a < b ? -1 : 0; + }); + return followUpVisitTimes; + } + + renderData() { + const tableColumns = { + visit_number: { + title: "No.", + }, + visit_name: { + title: "Visit", + }, + visit_date: { + title: "Visit Date", + }, + a1_id: { + title: "Form A", + display: (form) => ( +
+ {form.a1v3_id && ( + + {form.a1v3_name}{" "} + + )} + + {form.a2v3_id && ( + + {form.a2v3_name}{" "} + + )} + + {form.a3v3_id && ( + + {form.a3v3_name}{" "} + + )} + + {form.a4v3_id && ( + + {form.a4v3_name}{" "} + + )} + {/* {form.a1v2_id && {form.a1v2_name} } */} + {/* {form.a2v2_id && {form.a2v2_name} } */} + {/* {form.a3v2_id && {form.a3v2_name} } */} + {/* {form.a4v2_id && {form.a4v2_name} } */} + {/* {form.a5v2_id && {form.a5v2_name} } */} + + {/* {form.a1v1_id && {form.a1v1_name} } */} + {/* {form.a2v1_id && {form.a2v1_name} } */} + {/* {form.a3v1_id && {form.a3v1_name} } */} + {/* {form.a4v1_id && {form.a4v1_name} } */} + {/* {form.a5v1_id && {form.a5v1_name} } */} +
+ ), + }, + + b1_id: { + title: "Form B", + display: (form) => ( +
+ {form.b1v3_id && ( + + {form.b1v3_name}{" "} + + )} + {form.b1v3_id && ( + + {form.b1v3_name}{" "} + + )} + + {form.b4v3_id && ( + + {form.b4v3_name}{" "} + + )} + + {form.b5v3_id && ( + + {form.b5v3_name}{" "} + + )} + + {form.b6v3_id && ( + + {form.b6v3_name}{" "} + + )} + {form.b7v3_id && ( + + {form.b7v3_name}{" "} + + )} + {form.b8v3_id && ( + + {form.b8v3_name}{" "} + + )} + {form.b9v3_id && ( + + {form.b9v3_name}{" "} + + )} + {/* {form.b1v2_id && {form.b1v2_name} } */} + {/* {form.b2v2_id && {form.b2v2_name} } */} + {/* {form.b3v2_id && {form.b3v2_name} } */} + {/* {form.b4v2_id && {form.b4v2_name} } */} + {/* {form.b5v2_id && {form.b5v2_name} } */} + {/* {form.b6v2_id && {form.b6v2_name} } */} + {/* {form.b7v2_id && {form.b7v2_name} } */} + {/* {form.b8v2_id && {form.b8v2_name} } */} + {/* {form.b9v2_id && {form.b9v2_name} } */} + + {/* {form.b1v1_id && {form.b1v1_name} } */} + {/* {form.b2v1_id && {form.b2v1_name} } */} + {/* {form.b3v1_id && {form.b3v1_name} } */} + {/* {form.b4v1_id && {form.b4v1_name} } */} + {/* {form.b5v1_id && {form.b5v1_name} } */} + {/* {form.b6v1_id && {form.b6v1_name} } */} + {/* {form.b7v1_id && {form.b7v1_name} } */} + {/* {form.b8v1_id && {form.b8v1_name} } */} + {/* {form.b9v1_id && {form.b9v1_name} } */} +
+ ), + }, + + c2_id: { + title: "Form C", + display: (form) => ( +
+ {form.c1v3_id && ( + + {form.c1v3_name}{" "} + + )} + {form.c2v3_id && ( + + {form.c2v3_name}{" "} + + )} + {/* {form.c1v2_id && {form.c1v2_name} } */} + + {/* {form.c1v1_id && {form.c1v1_name} } */} +
+ ), + }, + d1_id: { + title: "Form D", + display: (form) => ( +
+ {form.d1v3_id && ( + + {form.d1v3_name}{" "} + + )} + {form.d2v3_id && ( + + {form.d2v3_name}{" "} + + )} + {/* {form.d1v2_id && {form.d1v2_name} } */} + {/* {form.d1v1_id && {form.d1v1_name} } */} +
+ ), + }, + e1_id: { + title: "Form E", + display: (form) => ( +
+ {/* {form.e1v2_id && {form.e1v2_name} } */} + {/* {form.e1v1_id && {form.e1v1_name} } */} +
+ ), + }, + + z1x_id: { + title: "Form Z1x", + display: (form) => ( +
+ {form.z1xv3_id && ( + + {form.z1xv3_name}{" "} + + )} + {/* {form.z1v2_id && {form.z1v2_name} } */} + {/* {form.z1v1_id && {form.z1v1_name} } */} +
+ ), + }, + t1_id: { + title: "Form T1", + display: (form) => , + }, + m1_id: { + title: "Form M1", + display: (form) => {form.m1_name}, + }, + + local_form_id: { + title: "Local Forms", + display: (form) => ( +
+ {form.moca_id && ( + + {form.moca_name}{" "} + + )} + {form.updrs_id && ( + + {form.updrs_name}{" "} + + )} + {form.concussion_history_id && ( + + + {form.concussion_history_name} + {" "} + + )} + {form.concussion_history_follow_up_id && ( + + + {form.concussion_history_follow_up_name} + {" "} + + )} + {form.visit_contact_id && ( + + {form.visit_contact_name}{" "} + + )} + {form.physical_exam_id && ( + + {form.physical_exam_name}{" "} + + )} +
+ ), + }, + }; + return ( + + + + ); + } + + render() { + return
{this.renderData()}
; + } + + componentDidMount() { + this.renderData(); + } +} + +export default FormsTable; diff --git a/src/encoded/static/components/genomicsTable.js b/src/encoded/static/components/genomicsTable.js index 3d919f4134..f30c5ba580 100644 --- a/src/encoded/static/components/genomicsTable.js +++ b/src/encoded/static/components/genomicsTable.js @@ -10,68 +10,52 @@ class GenomicsTable extends React.Component { } transformData(data) { - let biolibrary = []; - let index = 0; - for (let i = 0; i < data.length; i++) { - - for (let j = 0; j < data[i].biofile.length; j++) { - let obj = { - library_accession: data[i].accession, - library_id: data[i]['@id'], - library_nucleic_acid_term_name: data[i].nucleic_acid_term_name, - library_biological_replicate_number: data[i].biological_replicate_number, - library_technical_replicate_number: data[i].technical_replicate_number, - file_accession: data[i].biofile[j].accession, - file_run_type: data[i].biofile[j].run_type, - file_output_type: data[i].biofile[j].output_type, - file_size: data[i].biofile[j].file_size, - sequencing_replicate_number: data[i].biofile[j].sequencing_replicate_number, - file_format: data[i].biofile[j].file_format, - file_id: data[i].biofile[j]['@id'], - }; + let files = []; + for (let i = 0; i < data.length; i++) { + files[i] = { + award: data[i].award.project, + biodataset: data[i].biodataset, + assay_term_name: data[i].assay_term_name, + library_type: data[i].library_type, + file_accession: data[i].accession, + file_id: data[i]['@id'], + file_format: data[i].file_format, + file_run_type: data[i].run_type, + submitted_file_name: data[i].submitted_file_name, - biolibrary[index] = obj; - index++; - - } + } } - return biolibrary; + return files; } renderData() { const tableColumns = { - library_accession: { - title: 'Library', + award: { + title: 'Project', }, - library_nucleic_acid_term_name: { + biodataset: { + title: 'Dataset', + }, + assay_term_name: { + title: 'Assay', + }, + library_type: { title: 'Library type', }, file_accession: { title: 'File', - display: biolibrary => {biolibrary.file_accession}, - }, - library_biological_replicate_number: { - title: 'Biological replicate number', - }, - library_technical_replicate_number: { - title: 'Technical replicate number', - }, - sequencing_replicate_number: { - title: 'Sequencing replicate number', + display: files => {files.file_accession}, }, file_format: { title: 'File format', }, - file_size: { - title: 'File size', - }, file_run_type: { title: 'File run type', }, - file_output_type: { - title: 'File output type', + submitted_file_name: { + title: 'File name', }, }; @@ -98,3 +82,5 @@ class GenomicsTable extends React.Component { } export default GenomicsTable; + + diff --git a/src/encoded/static/components/home.js b/src/encoded/static/components/home.js index 91a7522d76..13b6a54c64 100644 --- a/src/encoded/static/components/home.js +++ b/src/encoded/static/components/home.js @@ -10,7 +10,7 @@ import { Panel, PanelBody } from '../libs/ui/panel'; import Tooltip from '../libs/ui/tooltip'; -const newsUri = '/search/?type=Page&news=true&status=released'; +const newsUri = '/searchv2_quick/?type=Page&news=true&status=public'; dayjs.extend(utc); // Convert the selected organisms and assays into an encoded query. diff --git a/src/encoded/static/components/index.js b/src/encoded/static/components/index.js index db340ebf05..35520bb2e0 100644 --- a/src/encoded/static/components/index.js +++ b/src/encoded/static/components/index.js @@ -50,6 +50,7 @@ require('./biodataset'); require('./doc'); require('./filegallery1'); require('./bioexperiment'); +// require('./status'); diff --git a/src/encoded/static/components/medicationChart.js b/src/encoded/static/components/medicationChart.js index 58968006ae..10fe8516a3 100755 --- a/src/encoded/static/components/medicationChart.js +++ b/src/encoded/static/components/medicationChart.js @@ -173,7 +173,7 @@ class MedicationChart extends React.Component { var layout = { autosize: true, - height: yIndex*80, + height: (yIndex+ 2)*65, xaxis: { type: 'date', @@ -191,7 +191,9 @@ class MedicationChart extends React.Component { zeroline: false, showline: true, showgrid: true, - fixedrange: true + fixedrange: true, + tickangle: 30 + }, xaxis2: { type: 'date', @@ -203,9 +205,9 @@ class MedicationChart extends React.Component { }, margin: { - l: 120, + l: 150, r: 20, - b: 30, + b: 25, t: 60, pad: 4 }, diff --git a/src/encoded/static/components/metastasis.js b/src/encoded/static/components/metastasis.js index b104c71749..86edd30b5a 100644 --- a/src/encoded/static/components/metastasis.js +++ b/src/encoded/static/components/metastasis.js @@ -180,11 +180,11 @@ class Metastasis extends React.Component { let layout = { - height: (scaleYIndex+ 2)*65, + height: (scaleYIndex+ 2)*80, margin: { - l: 120, + l: 150, r: 20, - b: 20, + b: 25, t: 60, pad: 4 }, diff --git a/src/encoded/static/components/objectutils.js b/src/encoded/static/components/objectutils.js index b2b3c264d9..e3a15ed73d 100644 --- a/src/encoded/static/components/objectutils.js +++ b/src/encoded/static/components/objectutils.js @@ -711,7 +711,14 @@ DocTypeTitle.contextTypes = { profilesTitles: PropTypes.object, }; - +export function valueOnly(str) { + if (typeof str == "string") { + return str.substr(str.indexOf(' ')+1);; + } else { + return "" + } + +} /** * Display a block of accessory controls on object-display pages, e.g. the audit indicator button. */ diff --git a/src/encoded/static/components/patient.js b/src/encoded/static/components/patient.js index 4ef063df53..4830e5b933 100644 --- a/src/encoded/static/components/patient.js +++ b/src/encoded/static/components/patient.js @@ -8,19 +8,21 @@ import { ItemAccessories } from './objectutils'; import formatMeasurement from './../libs/formatMeasurement'; import { CartToggle } from './cart'; import Status from './status'; -import MedicationChart from './medicationChart'; -import GermlineTable from './germlineTable'; -import IHCTable from './ihcTable'; +// import MedicationChart from './medicationChart'; +// import GermlineTable from './germlineTable'; +// import IHCTable from './ihcTable'; -import PatientChart from "./patientChart"; -import Radiation from "./radiation"; +// import PatientChart from "./patientChart"; +// import Radiation from "./radiation"; import CollapsiblePanel from './collapsiblePanel'; +import FormsTable from './formsTable'; +import { valueOnly } from './objectutils'; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleDoubleUp } from "@fortawesome/free-solid-svg-icons"; -import SurgeryChart from './surgeryChart'; -import BiospecimenTable from "./biospecimenTable"; -import PatientPathTable from './patientPathTable'; -import Metastasis from "./metastasis"; +// import SurgeryChart from './surgeryChart'; +// import BiospecimenTable from "./biospecimenTable"; +// import PatientPathTable from './patientPathTable'; +// import Metastasis from "./metastasis"; /* eslint-disable react/prefer-stateless-function */ class Patient extends React.Component { @@ -55,33 +57,6 @@ class Patient extends React.Component { componentWillUnmount() { window.removeEventListener('scroll', this.listenToScroll) } - - createPathPanel() { - let list = []; - let surgeryData = this.props.context.surgery; - if (surgeryData.length > 1) { - surgeryData.sort((a, b) => Date.parse(a.date) - Date.parse(b.date)); - } - for (let i = 0; i < surgeryData.length; i++) { - list.push(
Surgery Date
{surgeryData[i].date}
) - if (surgeryData[i].pathology_report && surgeryData[i].pathology_report.length > 0) { - for (let j = 0; j < surgeryData[i].pathology_report.length; j++) { - list.push() - list.push(
Histologic Subtype
{surgeryData[i].pathology_report[j].histology}
) - list.push(
pT stage
{surgeryData[i].pathology_report[j].t_stage}
) - list.push(
pN stage
{surgeryData[i].pathology_report[j].n_stage}
) - list.push(
pM stage
{surgeryData[i].pathology_report[j].m_stage}
) - } - } - if (i != surgeryData.length - 1) { - list.push(
) - } - - - } - return list - - } render() { const context = this.props.context; @@ -92,183 +67,81 @@ class Patient extends React.Component { { id: {context.accession} }, ]; const crumbsReleased = (context.status === 'released'); - const ageUnit = (context.diagnosis.age_unit && context.diagnosis.age != "90 or above" && context.diagnosis.age != "Unknown") ? ` ${context.diagnosis.age_unit}` : ''; - - let hasLabs = false; - let hasVitals = false; - let hasPath = false; - let hasSurgery = false; - let hasIHC = false; - let hasMedication = false; - let hasRadiation = false; - let hasBiospecimen = false; - let hasMetastasis = false; - if (Object.keys(this.props.context.labs).length > 0) { - hasLabs = true; - } - if (Object.keys(this.props.context.vitals).length > 0) { - hasVitals = true; - } - if (Object.keys(this.props.context.surgery).length > 0) { - hasPath = true; - } - if (Object.keys(this.props.context.surgery).length > 0) { - hasSurgery = true; - } - if (Object.keys(this.props.context.ihc).length > 0) { - hasIHC = true; - } - if (Object.keys(this.props.context.medications).length > 0) { - hasMedication = true; - } - if (Object.keys(this.props.context.radiation).length > 0) { - hasRadiation = true; - } - if (Object.keys(this.props.context.biospecimen).length > 0) { - hasBiospecimen = true; - } - if (Object.keys(this.props.context.metastasis).length > 0) { - hasMetastasis = true; + let hasForms =false; + if (this.props.context.ivp_a1v3.length > 0) { + hasForms = true; } + const NACCFormsPanelBody = ( + - const labsPanelBody = ( - - - ); - const vitalsPanelBody = ( - - ); - const surgeryPanelBody = ( - ); - const medicationPanelBody = ( - - ); - const radiationPanelBody = ( - - ); - const metastasisPanelBody = ( - - ); - const pathPanelBody = ( -
{this.createPathPanel()}
- ); + + return (
- +
-
- -

{context.accession}

- +
- -
-
-

Patient Information

-
- -
-
-
Status
-
-
-
-
Sex
-
{context.sex}
-
- -
-
Ethnicity
-
{context.ethnicity}
-
- -
-
Race
-
{context.race}
-
- -
-
Age at diagnosis
-
{`${context.diagnosis.age}${ageUnit}`}
-
- -
-
Diagnosis Date
-
{`${context.diagnosis.diagnosis_date} ( Diagnosis Source: `}{`${context.diagnosis.diagnosis_source} )`}
-
- -
-
Last Follow Up Date
-
{context.last_follow_up_date}
-
- - {context.death_date &&
-
Death Date
-
{`${context.death_date} ( Death Source: `}{`${context.death_source} )`}
-
} -
-
- -
-
-

Dominant Tumor

+ +

Patient Information

+
+ +
+
+
Status
+
-
- {context.dominant_tumor.histology &&
-
Histology
-
{context.dominant_tumor.histology}
-
} - {context.dominant_tumor.t_stage &&
-
pT Stage
-
{context.dominant_tumor.t_stage}
-
} - {context.dominant_tumor.n_stage &&
-
pN Stage
-
{context.dominant_tumor.n_stage}
-
} - {context.dominant_tumor.m_stage &&
-
pM Stage
-
{context.dominant_tumor.m_stage}
-
} - {context.dominant_tumor.tumor_size &&
-
Tumor Size
-
{`${context.dominant_tumor.tumor_size}${context.dominant_tumor.tumor_size_units}`}
-
} - {context.dominant_tumor.surgery && } - {context.dominant_tumor.path_report &&
-
Pathology Report
-
{context.dominant_tumor.path_report}
-
} -
-
+ {/* {context.pic &&
+
Patient Initial Category
+
{valueOnly(context.pic)}
+
} */} + {context.gender &&
+
Gender
+
{valueOnly(context.gender)}
+
} + { context.racial &&
+
Race
+
{valueOnly(context.racial)}
+
} + {/* { context.ethn &&
+
Spanish, Hispanic or Latino
+
{valueOnly(context.ethn)}
+
} */} + {/* { context.tribe &&
+
Tribe
+
{valueOnly(context.tribe)}
+
} */} + {/* { context.edu &&
+
Years of education
+
{context.edu}
+
} */} + {/* { context.retard &&
+
Exclude Mental Retardation
+
{valueOnly(context.retard)}
+
} */} + {/* {context.occ &&
+
Occupation
+
{valueOnly(context.occ)}
+
} */} + + - {hasPath && } - {hasSurgery && } - {hasRadiation && } - {hasMetastasis && } - {hasMedication && } - {hasIHC && } - {} - {hasBiospecimen && } - {hasLabs && } - {hasVitals && } + {hasForms && } +
); } diff --git a/src/encoded/static/components/patientPathTable.js b/src/encoded/static/components/patientPathTable.js index b616a67f50..a1cea7ef33 100644 --- a/src/encoded/static/components/patientPathTable.js +++ b/src/encoded/static/components/patientPathTable.js @@ -20,35 +20,49 @@ class patientPathTable extends React.Component { surgery_date: data[i].date, } if (data[i].surgery_procedure.length > 0){ - let procedure_type = data[i].surgery_procedure[0].procedure_type; - for (let j = 1; j < data[i].surgery_procedure.length; j++) { - procedure_type += ", " + data[i].surgery_procedure[j].procedure_type; - } - obj1.procedure_type = procedure_type - } - if (data[i].pathology_report.length > 0) { - for (let j = 0; j < data[i].pathology_report.length; j++) { + + for (let j = 0; j < data[i].surgery_procedure.length; j++) { + let obj2 = { surgery_accession: obj1.surgery_accession, surgery_id: obj1.surgery_id, surgery_date: obj1.surgery_date, - procedure_type: obj1.procedure_type, - path_accession: data[i].pathology_report[j].accession, - path_id: data[i].pathology_report[j]['@id'], - path_histology: data[i].pathology_report[j].histology, - t_stage: data[i].pathology_report[j].t_stage, - n_stage: data[i].pathology_report[j].n_stage, - m_stage: data[i].pathology_report[j].m_stage, - } - + procedure_type: data[i].surgery_procedure[j].procedure_type, - - - surgeryData[index] = obj2; - index++; + } + if (data[i].surgery_procedure[j].pathology_report.length > 0) { + for (let k = 0; k < data[i].surgery_procedure[j].pathology_report.length; k++) { + var procedure_type = '' + if (data[i].surgery_procedure[j].surgery_treatment) { + procedure_type = data[i].surgery_procedure[j].surgery_treatment + } + else if (data[i].surgery_procedure[j].surgery_diagnosis) { + procedure_type = data[i].surgery_procedure[j].surgery_diagnosis + } + let obj3 = { + surgery_accession: obj1.surgery_accession, + surgery_id: obj1.surgery_id, + surgery_date: obj1.surgery_date, + procedure_type: procedure_type, + path_accession: data[i].surgery_procedure[j].pathology_report[k].accession, + path_id: data[i].surgery_procedure[j].pathology_report[k]['@id'], + path_histology: data[i].surgery_procedure[j].pathology_report[k].histology, + t_stage: data[i].surgery_procedure[j].pathology_report[k].t_stage, + n_stage: data[i].surgery_procedure[j].pathology_report[k].n_stage, + m_stage: data[i].surgery_procedure[j].pathology_report[k].m_stage, + } + surgeryData[index] = obj3; + index++; + } + + }else { + surgeryData[index] = obj2; + index++; + } } - + + } else { surgeryData[index] = obj1; index++; @@ -59,7 +73,7 @@ class patientPathTable extends React.Component { } renderData() { - + const tableColumns = { surgery_date: { title: 'Surgery Date', @@ -69,7 +83,7 @@ class patientPathTable extends React.Component { display: surgeryData => {surgeryData.surgery_accession}, }, procedure_type: { - title: 'Procedure Type', + title: 'Surgery Procedure', }, path_accession: { @@ -89,15 +103,15 @@ class patientPathTable extends React.Component { title: 'pM Stage', }, - + }; return ( ); - - + + } render() { @@ -107,13 +121,10 @@ class patientPathTable extends React.Component { } componentDidMount() { - + this.renderData(); } } export default patientPathTable; - - - diff --git a/src/encoded/static/components/publication.js b/src/encoded/static/components/publication.js index 8db3c77379..94b3dc53af 100644 --- a/src/encoded/static/components/publication.js +++ b/src/encoded/static/components/publication.js @@ -264,15 +264,15 @@ const PublicationComponent = (props, reactContext) => {
: null} - {context.publication_data.length > 0 ? + {context.publication_data ? : null} - {context.datasets && context.datasets.length > 0 ? + {context.datasets ? : null } - {context.supplementary_data && context.supplementary_data.length > 0 ? + {context.supplementary_data ?

Related data

diff --git a/src/encoded/static/components/radiation.js b/src/encoded/static/components/radiation.js index 3ef3912a0a..a841f25293 100644 --- a/src/encoded/static/components/radiation.js +++ b/src/encoded/static/components/radiation.js @@ -264,11 +264,11 @@ data = data.concat(dumbbellData); let layout = { - height: (scaleYIndex+ 2)*65, + height: (scaleYIndex+ 2)*80, margin: { - l: 120, + l: 150, r: 20, - b: 20, + b: 25, t: 60, pad: 4 }, diff --git a/src/encoded/static/components/search.js b/src/encoded/static/components/search.js index 0f50c4b2fc..3ab267db64 100644 --- a/src/encoded/static/components/search.js +++ b/src/encoded/static/components/search.js @@ -20,7 +20,7 @@ import Status from './status'; import { BiosampleSummaryString, BiosampleOrganismNames } from './typeutils'; import { BatchDownloadControls, ViewControls } from './view_controls'; import { BrowserSelector } from './vis_defines'; - +import { valueOnly } from './objectutils'; // Should really be singular... const types = { @@ -212,41 +212,31 @@ globals.listingViews.register(Target, 'Target'); /* eslint-disable react/prefer-stateless-function */ class PatientComponent extends React.Component { render() { - const { cartControls } = this.props; const result = this.props.context; - let age = result.diagnosis.age; - const hasAge = (age != "Unknown") ? true : false; - const ageUnit = (result.diagnosis.age_unit && hasAge && age != "90 or above") ? ` ${result.diagnosis.age_unit}` : ''; return ( -
  • -
    -
    - - {`${result.accession}`} - {hasAge && `(${age}${ageUnit})`} - -
    -
    Sex: {result.sex}
    -
    Ethnicity: {result.ethnicity}
    -
    Race: {result.race}
    -
    -
    -
    -
    Patient
    -
    {` ${result.accession}`}
    - - {this.props.auditIndicators(result.audit, result['@id'], { session: this.context.session, search: true })} -
    - {cartControls ? -
    - -
    - : null} - -
    - {this.props.auditDetail(result.audit, result['@id'], { session: this.context.session, except: result['@id'], forcedEditLink: true })} -
  • +
  • +
    + +
    +

    Patient

    +

    {` ${result.accession}`}

    + + {this.props.auditIndicators(result.audit, result['@id'], { session: this.context.session, search: true })} +
    + +
    + {result.gender &&
    Gender: {valueOnly(result.gender)}
    } + {result.racial &&
    Race: {valueOnly(result.racial)}
    } +
    +
    + {this.props.auditDetail(result.audit, result['@id'], { session: this.context.session, except: result['@id'], forcedEditLink: true })} +
  • ); } } @@ -267,204 +257,203 @@ const Patient = auditDecor(PatientComponent); globals.listingViews.register(Patient, 'Patient'); -class PathologyComponent extends React.Component { - render() { - const result = this.props.context; - - return ( -
  • -
    -
    - - {`${result.accession} `} - -
    -
    Tumor Size Range:{result.tumor_size}{result.tumor_size_units}
    -
    Histologic Subtype: {result.histology}
    -
    Tumor Grade: {result.grade}
    -
    pT stage: {result.ajcc_p_stage}
    -
    AJCC TNM Stage: {result.ajcc_tnm_stage}
    -
    Laterality: {result.laterality}
    -
    -
    -
    -
    Pathology Report
    -
    {` ${result.accession}`}
    - - {this.props.auditIndicators(result.audit, result['@id'], { session: this.context.session, search: true })} -
    - -
    - {this.props.auditDetail(result.audit, result['@id'], { session: this.context.session, except: result['@id'], forcedEditLink: true })} -
  • - ); - } -} -/* eslint-enable react/prefer-stateless-function */ - -PathologyComponent.propTypes = { - context: PropTypes.object.isRequired, // Target search results - auditIndicators: PropTypes.func.isRequired, // Audit decorator function - auditDetail: PropTypes.func.isRequired, // Audit decorator function -}; - -PathologyComponent.contextTypes = { - session: PropTypes.object, // Login information from -}; - -const PathologyReport = auditDecor(PathologyComponent); - -globals.listingViews.register(PathologyReport, 'PathologyReport'); - -class SurgeryComponent extends React.Component { - render() { - const result = this.props.context; - const surgeryProcedure = result.surgery_procedure; - let type1 = []; - for (let i = 0; i < surgeryProcedure.length; i++) { - type1.push(
    Surgery Procedure: {surgeryProcedure[i].procedure_type}
    ); - } - return ( - < li className={resultItemClass(result)}> -
    -
    - - {`${result.accession} `} - -
    -
    Surgery Date: {result.date}
    -
    Hospital Location: {result.hospital_location}
    - {type1} -
    -
    -
    -
    Surgery
    -
    {` ${result.accession}`}
    - - {this.props.auditIndicators(result.audit, result['@id'], { session: this.context.session, search: true })} -
    - -
    - {this.props.auditDetail(result.audit, result['@id'], { session: this.context.session, except: result['@id'], forcedEditLink: true })} - - ); - } -} +// class PathologyComponent extends React.Component { +// render() { +// const result = this.props.context; + +// return ( +//
  • +//
    +//
    +// +// {`${result.accession} `} +// +//
    +//
    Tumor Size Range:{result.tumor_size}{result.tumor_size_units}
    +//
    Histologic Subtype: {result.histology}
    +//
    Tumor Grade: {result.grade}
    +//
    pT stage: {result.ajcc_p_stage}
    +//
    AJCC TNM Stage: {result.ajcc_tnm_stage}
    +//
    Laterality: {result.laterality}
    +//
    +//
    +//
    +//
    Pathology Report
    +//
    {` ${result.accession}`}
    +// +// {this.props.auditIndicators(result.audit, result['@id'], { session: this.context.session, search: true })} +//
    +// +//
    +// {this.props.auditDetail(result.audit, result['@id'], { session: this.context.session, except: result['@id'], forcedEditLink: true })} +//
  • +// ); +// } +// } +// /* eslint-enable react/prefer-stateless-function */ + +// PathologyComponent.propTypes = { +// context: PropTypes.object.isRequired, // Target search results +// auditIndicators: PropTypes.func.isRequired, // Audit decorator function +// auditDetail: PropTypes.func.isRequired, // Audit decorator function +// }; + +// PathologyComponent.contextTypes = { +// session: PropTypes.object, // Login information from +// }; + +// const PathologyReport = auditDecor(PathologyComponent); + +// globals.listingViews.register(PathologyReport, 'PathologyReport'); + +// class SurgeryComponent extends React.Component { +// render() { +// const result = this.props.context; +// const surgeryProcedure = result.surgery_procedure; +// let type1 = []; +// for (let i = 0; i < surgeryProcedure.length; i++) { +// type1.push(
    Surgery Procedure: {surgeryProcedure[i].procedure_type}
    ); +// } +// return ( +// < li className={resultItemClass(result)}> +//
    +//
    +// +// {`${result.accession} `} +// +//
    +//
    Surgery Date: {result.date}
    +// {type1} +//
    +//
    +//
    +//
    Surgery
    +//
    {` ${result.accession}`}
    +// +// {this.props.auditIndicators(result.audit, result['@id'], { session: this.context.session, search: true })} +//
    +// +//
    +// {this.props.auditDetail(result.audit, result['@id'], { session: this.context.session, except: result['@id'], forcedEditLink: true })} +// +// ); +// } +// } /* eslint-enable react/prefer-stateless-function */ -SurgeryComponent.propTypes = { - context: PropTypes.object.isRequired, // Target search results - auditIndicators: PropTypes.func.isRequired, // Audit decorator function - auditDetail: PropTypes.func.isRequired, // Audit decorator function -}; +// SurgeryComponent.propTypes = { +// context: PropTypes.object.isRequired, // Target search results +// auditIndicators: PropTypes.func.isRequired, // Audit decorator function +// auditDetail: PropTypes.func.isRequired, // Audit decorator function +// }; -SurgeryComponent.contextTypes = { - session: PropTypes.object, // Login information from -}; +// SurgeryComponent.contextTypes = { +// session: PropTypes.object, // Login information from +// }; -const Surgery = auditDecor(SurgeryComponent); +// const Surgery = auditDecor(SurgeryComponent); -globals.listingViews.register(Surgery, 'Surgery'); +// globals.listingViews.register(Surgery, 'Surgery'); /* eslint-disable react/prefer-stateless-function */ -class BiofileComponent extends React.Component { - render() { - const result = this.props.context; - return ( -
  • -
    - -
    -

    Biofile

    -

    {` ${result.accession}`}

    - - {this.props.auditIndicators(result.audit, result['@id'], { session: this.context.session, search: true })} -
    - -
    -
    File format: {result.file_format}
    -
    Output type: {result.output_type}
    -
    -
    - {this.props.auditDetail(result.audit, result['@id'], { session: this.context.session, except: result['@id'], forcedEditLink: true })} -
  • - ); - } -} -/* eslint-enable react/prefer-stateless-function */ - -BiofileComponent.propTypes = { - context: PropTypes.object.isRequired, // Target search results - auditIndicators: PropTypes.func.isRequired, // Audit decorator function - auditDetail: PropTypes.func.isRequired, // Audit decorator function -}; - -BiofileComponent.contextTypes = { - session: PropTypes.object, // Login information from -}; - -const Biofile = auditDecor(BiofileComponent); - -globals.listingViews.register(Biofile, 'Biofile'); +// class BiofileComponent extends React.Component { +// render() { +// const result = this.props.context; +// return ( +//
  • +//
    +// +//
    +//

    Biofile

    +//

    {` ${result.accession}`}

    +// +// {this.props.auditIndicators(result.audit, result['@id'], { session: this.context.session, search: true })} +//
    +// +//
    +//
    File format: {result.file_format}
    +//
    Output type: {result.output_type}
    +//
    +//
    +// {this.props.auditDetail(result.audit, result['@id'], { session: this.context.session, except: result['@id'], forcedEditLink: true })} +//
  • +// ); +// } +// } +// /* eslint-enable react/prefer-stateless-function */ + +// BiofileComponent.propTypes = { +// context: PropTypes.object.isRequired, // Target search results +// auditIndicators: PropTypes.func.isRequired, // Audit decorator function +// auditDetail: PropTypes.func.isRequired, // Audit decorator function +// }; + +// BiofileComponent.contextTypes = { +// session: PropTypes.object, // Login information from +// }; + +// const Biofile = auditDecor(BiofileComponent); + +// globals.listingViews.register(Biofile, 'Biofile'); /* eslint-disable react/prefer-stateless-function */ -class BiospecimenComponent extends React.Component { - render() { - const { cartControls } = this.props; - const result = this.props.context; - const tissueType = (result.tissue_type && result.sample_type == 'Tissue') ? ` ${result.tissue_type}` : ''; - const anatomicSite = (result.anatomic_site && result.sample_type == 'Tissue') ? ` ${result.anatomic_site}` : ''; - - return ( -
  • -
    -
    - - {`${result.accession} `} - -
    -
    Sample type: {result.sample_type}
    -
    Tissue derivatives: {result.tissue_derivatives}
    -
    Tissue type: {result.tissue_type}
    -
    Anatomic site: {result.anatomic_site}
    -
    -
    -
    -
    Biospecimen
    -
    {` ${result.accession}`}
    - - {this.props.auditIndicators(result.audit, result['@id'], { session: this.context.session, search: true })} -
    - - -
    - {this.props.auditDetail(result.audit, result['@id'], { session: this.context.session, except: result['@id'], forcedEditLink: true })} -
  • - ); - } - -} -/* eslint-enable react/prefer-stateless-function */ - -BiospecimenComponent.propTypes = { - context: PropTypes.object.isRequired, // Biosample search results - cartControls: PropTypes.bool, // True if displayed in active cart - auditIndicators: PropTypes.func.isRequired, // Audit decorator function - auditDetail: PropTypes.func.isRequired, // Audit decorator function -}; - -BiospecimenComponent.contextTypes = { - session: PropTypes.object, // Login information from -}; - -const Biospecimen = auditDecor(BiospecimenComponent); - -globals.listingViews.register(Biospecimen, 'Biospecimen'); +// class BiospecimenComponent extends React.Component { +// render() { +// const { cartControls } = this.props; +// const result = this.props.context; +// const tissueType = (result.tissue_type && result.sample_type == 'Tissue') ? ` ${result.tissue_type}` : ''; +// const anatomicSite = (result.anatomic_site_display && result.sample_type == 'Tissue') ? ` ${result.anatomic_site_display}` : ''; + +// return ( +//
  • +//
    +//
    +// +// {`${result.accession} `} +// +//
    +//
    Sample type: {result.sample_type}
    +//
    Tissue derivatives: {result.tissue_derivatives}
    +//
    Tissue type: {result.tissue_type}
    +//
    Anatomic site: {result.anatomic_site_display}
    +//
    +//
    +//
    +//
    Biospecimen
    +//
    {` ${result.accession}`}
    +// +// {this.props.auditIndicators(result.audit, result['@id'], { session: this.context.session, search: true })} +//
    +// + +//
    +// {this.props.auditDetail(result.audit, result['@id'], { session: this.context.session, except: result['@id'], forcedEditLink: true })} +//
  • +// ); +// } + +// } +// /* eslint-enable react/prefer-stateless-function */ + +// BiospecimenComponent.propTypes = { +// context: PropTypes.object.isRequired, // Biosample search results +// cartControls: PropTypes.bool, // True if displayed in active cart +// auditIndicators: PropTypes.func.isRequired, // Audit decorator function +// auditDetail: PropTypes.func.isRequired, // Audit decorator function +// }; + +// BiospecimenComponent.contextTypes = { +// session: PropTypes.object, // Login information from +// }; + +// const Biospecimen = auditDecor(BiospecimenComponent); + +// globals.listingViews.register(Biospecimen, 'Biospecimen'); const Image = (props) => { const result = props.context; @@ -499,111 +488,111 @@ globals.listingViews.register(Image, 'Image'); -const BioexperimentComponent = (props, reactContext) => { - const { cartControls } = props; - const result = props.context; - - return ( -
  • -
    - -
    -
    Bioexperiment
    -
    {` ${result.accession}`}
    - - {props.auditIndicators(result.audit, result['@id'], { session: reactContext.session, search: true })} -
    - -
    - { props.auditDetail(result.audit, result['@id'], { session: reactContext.session, except: result['@id'], forcedEditLink: true }) } -
  • - ); -}; - -BioexperimentComponent.propTypes = { - context: PropTypes.object.isRequired, // Experiment search results - cartControls: PropTypes.bool, // True if displayed in active cart - auditIndicators: PropTypes.func.isRequired, // Audit decorator function - auditDetail: PropTypes.func.isRequired, -}; - -BioexperimentComponent.defaultProps = { - cartControls: false, -}; - -BioexperimentComponent.contextTypes = { - session: PropTypes.object, // Login information from -}; - -const Bioexperiment = auditDecor(BioexperimentComponent); - -globals.listingViews.register(Bioexperiment, 'Bioexperiment'); - -const BiodatasetComponent = (props, reactContext) => { - const result = props.context; - let biosampleTerm; - - // Determine whether the dataset is a series or not - const seriesDataset = result['@type'].indexOf('Bioseries') >= 0; - // Get the biosample info for Series types if any. Can be string or array. If array, only use iff 1 term name exists - if (seriesDataset) { - biosampleTerm = (result.assay_term_name) ? result.assay_term_name : ''; - // biosampleTerm = (result.biospecimen && Array.isArray(result.biospecimen) && result.biospecimen.length === 1 && result.biospecimen[0].sample_type) ? result.biospecimen[0].sample_type : ((result.biospecimen && result.biospecimen.sample_type) ? result.biospecimen.sample_type : ''); - - - } - - const haveSeries = result['@type'].indexOf('Bioseries') >= 0; - const haveFileSet = result['@type'].indexOf('BiofileSet') >= 0; - - return ( -
  • -
    - -
    -
    {haveSeries ? 'Bioseries' : (haveFileSet ? 'BiofileSet' : 'Biodataset')}
    -
    {` ${result.accession}`}
    - - {props.auditIndicators(result.audit, result['@id'], { session: reactContext.session, search: true })} -
    - -
    - {props.auditDetail(result.audit, result['@id'], { session: reactContext.session, except: result['@id'], forcedEditLink: true })} -
  • - ); -}; - -BiodatasetComponent.propTypes = { - context: PropTypes.object.isRequired, // Dataset search results - auditIndicators: PropTypes.func.isRequired, // Audit decorator function - auditDetail: PropTypes.func.isRequired, // Audit decorator function -}; - -BiodatasetComponent.contextTypes = { - session: PropTypes.object, // Login information from -}; - -const Biodataset = auditDecor(BiodatasetComponent); - -globals.listingViews.register(Biodataset, 'Biodataset'); +// const BioexperimentComponent = (props, reactContext) => { +// const { cartControls } = props; +// const result = props.context; + +// return ( +//
  • +//
    +// +//
    +//
    Bioexperiment
    +//
    {` ${result.accession}`}
    +// +// {props.auditIndicators(result.audit, result['@id'], { session: reactContext.session, search: true })} +//
    +// +//
    +// { props.auditDetail(result.audit, result['@id'], { session: reactContext.session, except: result['@id'], forcedEditLink: true }) } +//
  • +// ); +// }; + +// BioexperimentComponent.propTypes = { +// context: PropTypes.object.isRequired, // Experiment search results +// cartControls: PropTypes.bool, // True if displayed in active cart +// auditIndicators: PropTypes.func.isRequired, // Audit decorator function +// auditDetail: PropTypes.func.isRequired, +// }; + +// BioexperimentComponent.defaultProps = { +// cartControls: false, +// }; + +// BioexperimentComponent.contextTypes = { +// session: PropTypes.object, // Login information from +// }; + +// const Bioexperiment = auditDecor(BioexperimentComponent); + +// globals.listingViews.register(Bioexperiment, 'Bioexperiment'); + +// const BiodatasetComponent = (props, reactContext) => { +// const result = props.context; +// let biosampleTerm; + +// // Determine whether the dataset is a series or not +// const seriesDataset = result['@type'].indexOf('Bioseries') >= 0; +// // Get the biosample info for Series types if any. Can be string or array. If array, only use iff 1 term name exists +// if (seriesDataset) { +// biosampleTerm = (result.assay_term_name) ? result.assay_term_name : ''; +// // biosampleTerm = (result.biospecimen && Array.isArray(result.biospecimen) && result.biospecimen.length === 1 && result.biospecimen[0].sample_type) ? result.biospecimen[0].sample_type : ((result.biospecimen && result.biospecimen.sample_type) ? result.biospecimen.sample_type : ''); + + +// } + +// const haveSeries = result['@type'].indexOf('Bioseries') >= 0; +// const haveFileSet = result['@type'].indexOf('BiofileSet') >= 0; + +// return ( +//
  • +//
    +// +//
    +//
    {haveSeries ? 'Bioseries' : (haveFileSet ? 'BiofileSet' : 'Biodataset')}
    +//
    {` ${result.accession}`}
    +// +// {props.auditIndicators(result.audit, result['@id'], { session: reactContext.session, search: true })} +//
    +// +//
    +// {props.auditDetail(result.audit, result['@id'], { session: reactContext.session, except: result['@id'], forcedEditLink: true })} +//
  • +// ); +// }; + +// BiodatasetComponent.propTypes = { +// context: PropTypes.object.isRequired, // Dataset search results +// auditIndicators: PropTypes.func.isRequired, // Audit decorator function +// auditDetail: PropTypes.func.isRequired, // Audit decorator function +// }; + +// BiodatasetComponent.contextTypes = { +// session: PropTypes.object, // Login information from +// }; + +// const Biodataset = auditDecor(BiodatasetComponent); + +// globals.listingViews.register(Biodataset, 'Biodataset'); /** * Entry field for filtering the results list when search results appear in edit forms. @@ -1093,6 +1082,8 @@ export class ResultTable extends React.Component { const total = context.total; const columns = context.columns; const filters = context.filters; + const clear_filters = context.clear_filters; + const isPatient = clear_filters.toLowerCase().includes('type=Patient'.toLowerCase()); const label = 'results'; const visualizeDisabledTitle = context.total > VISUALIZE_LIMIT ? `Filter to ${VISUALIZE_LIMIT} to visualize` : ''; @@ -1107,12 +1098,18 @@ export class ResultTable extends React.Component { /> {context.notification === 'Success' ?
    -

    Showing {results.length} of {total} {label}

    - - {!(actions && actions.length > 0) ? - - : null} - + {isPatient && total <= 1 ? +

    Patient list is restricted for specified query. Please expand your query.

    + : +
    +

    Showing {results.length} of {total} {label}

    + + {!(actions && actions.length > 0) ? + + : null} + +
    + }
    :

    {context.notification}

    diff --git a/src/encoded/static/components/status.js b/src/encoded/static/components/status.js index dc92be1b0e..62d1336f05 100644 --- a/src/encoded/static/components/status.js +++ b/src/encoded/static/components/status.js @@ -351,4 +351,4 @@ Status.defaultProps = { inline: false, }; -export default Status; +export default Status; \ No newline at end of file diff --git a/src/encoded/static/components/summary.js b/src/encoded/static/components/summary.js index 0d95be6ea2..ec3ff070c8 100644 --- a/src/encoded/static/components/summary.js +++ b/src/encoded/static/components/summary.js @@ -4,33 +4,12 @@ import { Panel, PanelBody } from '../libs/ui/panel'; import * as globals from './globals'; import { FacetList } from './search'; import { ViewControls } from './view_controls'; - - -/** - * Generate an array of data from one facet bucket for displaying in a chart, with one array entry - * per experiment status. The order of the entries in the resulting array correspond to the order - * of the statuses in `labels`. - * - * @param {array} buckets - Buckets for one facet returned in summary search results. - * @param {array} labels - Experiment status labels. - * @return {array} - Data extracted from buckets with an order of values corresponding to `labels`. - */ -function generateStatusData(buckets, labels) { - // Fill the array to the proper length with zeroes to start with. Actual non-zero data will - // overwrite the appropriate entries. - const statusData = Array.from({ length: labels.length }, (() => 0)); - - // Convert statusData to a form createBarChart understands. - if (buckets && buckets.length > 0) { - buckets.forEach((bucketItem) => { - const statusIndex = labels.indexOf(bucketItem.key); - if (statusIndex !== -1) { - statusData[statusIndex] = bucketItem.doc_count; - } - }); - } - return statusData; -} +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { faHospitalUser } from "@fortawesome/free-solid-svg-icons"; +import { faVial } from "@fortawesome/free-solid-svg-icons"; +import { faDna } from "@fortawesome/free-solid-svg-icons"; +import { faDisease } from "@fortawesome/free-solid-svg-icons"; +import SummaryChart from './summaryChart'; @@ -46,20 +25,22 @@ class SummaryBody extends React.Component { const { context } = this.props; let numOfKidneySamples = 0; let numOfTumorgraftSample = 0 + let numOfHumanSample = 0 let facets = context.facets; let filters = context.filters; - let isKidneySampleIncluded = this.getIsIncluded(filters, "biospecimen.anatomic_site", "Kidney, NOS"); + let isKidneySampleIncluded = this.getIsIncluded(filters, "biospecimen.anatomic_site_display", "Kidney"); let isMouseSampleIncluded = this.getIsIncluded(filters, "biospecimen.species", "Mouse"); - + let isHumanSampleIncluded = this.getIsIncluded(filters, "biospecimen.species", "Human"); + let anatomic_site = facets.filter(obj => { - return obj.field === "biospecimen.anatomic_site" + return obj.field === "biospecimen.anatomic_site_display" }) if (anatomic_site && anatomic_site.length > 0){ let terms = anatomic_site[0].terms; let result = terms.filter(obj => { - return obj.key === "Kidney, NOS" + return obj.key === "Kidney" }) if (result && result.length > 0) { if (isKidneySampleIncluded) { @@ -67,7 +48,7 @@ class SummaryBody extends React.Component { } else { numOfKidneySamples = 0; } - + } } let species = facets.filter(obj => { @@ -75,19 +56,30 @@ class SummaryBody extends React.Component { }) if (species && species.length > 0){ let terms = species[0].terms; - let result = terms.filter(obj => { + let result_mouse = terms.filter(obj => { return obj.key === "Mouse" }) - if (result && result.length > 0) { + let result_human = terms.filter(obj => { + return obj.key === "Human" + }) + if (result_mouse && result_mouse.length > 0) { if (isMouseSampleIncluded) { - numOfTumorgraftSample = result[0].doc_count; + numOfTumorgraftSample = result_mouse[0].doc_count; } else { numOfTumorgraftSample = 0; } - + + } + if (result_human && result_human.length > 0) { + if (isMouseSampleIncluded) { + numOfHumanSample = result_human[0].doc_count; + } else { + numOfHumanSample = 0; + } + } } - + let totalContainerStyle = { display: "flex", justifyContent: "space-between" @@ -104,6 +96,8 @@ class SummaryBody extends React.Component { } const selectedStageTerms = this.getSelectedTerms(facets, filters, "dominant_tumor.stage") const stageData = this.getPieChartData(facets, "dominant_tumor.stage", selectedStageTerms) + const selectedAssayTerms = this.getSelectedTerms(facets, filters, "biospecimen.biofile.assay_term_name") + const assayData = this.getBarChartData(facets, "biospecimen.biofile.assay_term_name", selectedAssayTerms) const selectedsubtypeTerms = this.getSelectedTerms(facets, filters, "dominant_tumor.histology_filter") const subtypeData = this.getPieChartData(facets, "dominant_tumor.histology_filter", selectedsubtypeTerms) const selectedSpecimenTerms = this.getSelectedTerms(facets, filters, "biospecimen.tissue_derivatives") @@ -123,7 +117,7 @@ class SummaryBody extends React.Component {
    - + -

    @@ -159,21 +147,22 @@ class SummaryBody extends React.Component {
    - +
    - +
    +
    - +
    - +
    - +
    @@ -197,7 +186,7 @@ class SummaryBody extends React.Component { values.push(result.doc_count); labels.push(result.key); } - + } @@ -236,7 +225,10 @@ class SummaryBody extends React.Component { data = [{ x: x, y: y, - type: 'bar' + type: 'bar', + text: y.map(String), + textposition: 'auto', + hoverinfo: 'none' } ] @@ -262,7 +254,7 @@ class SummaryBody extends React.Component { results = filters.filter(obj => { return obj.field === field; }) - + if (results && results.length > 0){ let hasTerm = false; for (let i = 0; i < results.length; i++) { @@ -274,7 +266,7 @@ class SummaryBody extends React.Component { if (!hasTerm){ return false } - + } return isIncluded; @@ -284,13 +276,13 @@ class SummaryBody extends React.Component { let allterms = []; let selectedTerms = []; let excludeField = field + "!"; - + let results = filters.filter(obj => { return obj.field === field; }) if (results && results.length > 0){ - for (let i = 0; i < results.length; i++) { - selectedTerms.push(results[i].term); + for (let i = 0; i < results.length; i++) { + selectedTerms.push(results[i].term); } } @@ -304,7 +296,7 @@ class SummaryBody extends React.Component { let i; for (i = 0; i < terms.length; i++) { let result = terms[i]; - + allterms.push(result.key); } @@ -314,91 +306,22 @@ class SummaryBody extends React.Component { return obj.field === excludeField; }) if (results && results.length > 0){ - for (let i = 0; i < results.length; i++) { - allterms = allterms.filter(x=>x!=results[i].term); - + for (let i = 0; i < results.length; i++) { + allterms = allterms.filter(x=>x!=results[i].term); + } } if (selectedTerms.length > 0) { - + return selectedTerms; - + } else { return allterms; } } - chooseOrganism(e) { - this.setState({ - selectedOrganism: e.currentTarget.id, - }); - const parsedUrl = url.parse(this.props.context['@id']); - const query = new QueryString(parsedUrl.query); - - - query.replaceKeyValue(organismField, e.currentTarget.id, ''); - const href = `?${query.format()}`; - this.context.navigate(href); - } - render() { - const searchQuery = url.parse(this.props.context['@id']).search; - const query = new QueryString(searchQuery); - const nonPersistentQuery = query.clone(); - nonPersistentQuery.deleteKeyValue('?type'); - const clearButton = nonPersistentQuery.queryCount() > 0 && query.queryCount('?type') > 0; - return ( -
    -
    -
    -

    {this.props.context.title}

    -
    - -
    -
    -
    Choose an organism:
    -
    - {organismTerms.map(term => - - )} -
    -
    0 ? `${this.state.selectedOrganism.replace(' ', '-')}` : ''}`}> -
    There {this.props.context.total > 1 ? 'are' : 'is'} {this.props.context.total} result{this.props.context.total > 1 ? 's' : ''}.
    -
    - -
    -
    - {(this.state.selectedOrganism === 'Homo sapiens') ? - -
    - - -
    -
    - -
    -
    - : - - -
    - -
    -
    - } -
    -
    - ); - } } SummaryBody.propTypes = { @@ -433,7 +356,7 @@ const Summary = (props) => {
    -
    +
    @@ -454,6 +377,3 @@ Summary.propTypes = { globals.contentViews.register(Summary, 'Summary'); - - - diff --git a/src/encoded/static/components/summaryChart.js b/src/encoded/static/components/summaryChart.js index 335cec0a13..78e83010a8 100644 --- a/src/encoded/static/components/summaryChart.js +++ b/src/encoded/static/components/summaryChart.js @@ -42,6 +42,9 @@ class SummaryChart extends React.Component { xref: 'paper', x: 0.05, }, + yaxis: { + showticklabels: false + }, height: 500, width: 500, margin: { @@ -78,3 +81,4 @@ export default SummaryChart; + diff --git a/src/encoded/static/components/surgery.js b/src/encoded/static/components/surgery.js index 5175608509..5d28beaf20 100644 --- a/src/encoded/static/components/surgery.js +++ b/src/encoded/static/components/surgery.js @@ -28,12 +28,25 @@ class Surgery extends React.Component { let hasPathology=false; let hasProcedure = false; + let pathData = [] - if (Object.keys(this.props.context.pathology_report).length > 0) { - hasPathology = true; - } - if (Object.keys(this.props.context.surgery_procedure).length > 0) { + + if (context.surgery_procedure.length > 0) { hasProcedure = true; + for(let i = 0; i < context.surgery_procedure.length; i++) { + if (context.surgery_procedure[i].pathology_report.length > 0) { + hasPathology = true; + break; + } + } + } + if (hasPathology) { + for(let i = 0; i < context.surgery_procedure.length; i++){ + if (context.surgery_procedure[i].pathology_report.length > 0) { + Array.prototype.push.apply(pathData,context.surgery_procedure[i].pathology_report) + + } + } } return (
    @@ -72,7 +85,7 @@ class Surgery extends React.Component { {hasProcedure && } - {hasPathology && } + {hasPathology && }
    diff --git a/src/encoded/static/components/surgeryChart.js b/src/encoded/static/components/surgeryChart.js index daf551edc9..e2fbdb0f81 100644 --- a/src/encoded/static/components/surgeryChart.js +++ b/src/encoded/static/components/surgeryChart.js @@ -28,17 +28,17 @@ class SurgeryChart extends React.Component { console.log(this.props.data); this.props.data.forEach((i) => { i.surgery_procedure.forEach((surgery_procedure) => { - if (surgery_procedure.procedure_type === "Nephrectomy") { - nephDataPoints.push({ "date": Date.parse(i.date), "Date": i.date, "procedure_type": surgery_procedure.procedure_type, "hospital_location": i.hospital_location, "nephrectomy_details": surgery_procedure.nephrectomy_details}) + if (surgery_procedure.surgery_treatment === "Kidney (Nephrectomy)") { + nephDataPoints.push({ "date": Date.parse(i.date), "Date": i.date, "procedure_type": surgery_procedure.surgery_treatment, "hospital_location": i.hospital_location, "nephrectomy_details": surgery_procedure.nephrectomy_details}) } - else if (surgery_procedure.procedure_type === "Ablation") { - ablaDataPoints.push({ "date": Date.parse(i.date), "Date": i.date, "procedure_type": surgery_procedure.procedure_type, "hospital_location": i.hospital_location}) + else if (surgery_procedure.surgery_treatment === "Ablation") { + ablaDataPoints.push({ "date": Date.parse(i.date), "Date": i.date, "procedure_type": surgery_procedure.surgery_treatment, "hospital_location": i.hospital_location}) } - else if (surgery_procedure.procedure_type === "Metastectomy") { - metDataPoints.push({ "date": Date.parse(i.date), "Date": i.date, "procedure_type": surgery_procedure.procedure_type, "hospital_location": i.hospital_location}) + else if (surgery_procedure.surgery_treatment === "Metastasis (Excision)") { + metDataPoints.push({ "date": Date.parse(i.date), "Date": i.date, "procedure_type": surgery_procedure.surgery_treatment, "hospital_location": i.hospital_location}) } - else { - biopsyDataPoints.push({ "date": Date.parse(i.date), "Date": i.date, "procedure_type": surgery_procedure.procedure_type, "hospital_location": i.hospital_location}) + else if (surgery_procedure.surgery_diagnosis === "Kidney (Biopsy)") { + biopsyDataPoints.push({ "date": Date.parse(i.date), "Date": i.date, "procedure_type": surgery_procedure.surgery_diagnosis, "hospital_location": i.hospital_location}) } }) }); @@ -54,9 +54,6 @@ class SurgeryChart extends React.Component { //metDataPoints = this.props.data.filter(i => { return i.surgery_procedure.procedure_type === "Metastectomy" }).map(i => { return [Date.parse(i.date), i.date, i.surgery_procedure.procedure_type, i.hospital_location] }); metDataPoints.sort((a, b) => a[0] - b[0]); - console.log(nephDataPoints); - console.log(ablaDataPoints); - console.log(metDataPoints); let sortedDateUnix = []; sortedDateUnix = this.props.data.map(i => { return Date.parse(i.date) }); @@ -94,7 +91,7 @@ class SurgeryChart extends React.Component { family: 'Raleway, sans-serif', size: 15 }, - marker: { + marker: { color: '#D31E1E', size: 15 } @@ -114,15 +111,15 @@ class SurgeryChart extends React.Component { family: 'Raleway, sans-serif', size: 15 }, - marker: { + marker: { color: '#D31E1E', size: 15 } }; data.push(trace2); } - - + + if (nephDataPoints.length > 0) { for (let i = 0; i < nephDataPoints.length; i++) { traceNeph = { @@ -208,7 +205,7 @@ class SurgeryChart extends React.Component { let diagnosisDate; if (this.props.diagnosis_date != "Not available") { diagnosisDate = new Date(this.props.diagnosis_date + ' 00:00:00' ); - + } if (diagnosisDate != null) { trace1 = { @@ -224,7 +221,7 @@ class SurgeryChart extends React.Component { family: 'Raleway, sans-serif', size: 15 }, - marker: { + marker: { color: '#D31E1E', size: 15 } @@ -245,11 +242,12 @@ class SurgeryChart extends React.Component { showline: true, showgrid: true, fixedrange: true + }, margin: { - l: 120, + l: 150, r: 20, - b: 30, + b: 25, t: 60, pad: 4 }, @@ -280,5 +278,3 @@ class SurgeryChart extends React.Component { } export default SurgeryChart; - - diff --git a/src/encoded/static/components/surgeryProcedureTable.js b/src/encoded/static/components/surgeryProcedureTable.js index 821e160219..b03441b183 100644 --- a/src/encoded/static/components/surgeryProcedureTable.js +++ b/src/encoded/static/components/surgeryProcedureTable.js @@ -11,8 +11,18 @@ class surgeryProcedureTable extends React.Component { let surgeryProceduresData = []; let index = 0; for (let i = 0; i < data.length; i++) { + var procedure_type + if (data[i].surgery_treatment) { + procedure_type = data[i].surgery_treatment + } + else if (data[i].surgery_diagnosis) { + procedure_type = data[i].surgery_diagnosis + } + else { + procedure_type = data[i].procedure_type + } let obj1 = { - procedure_type: data[i].procedure_type, + procedure_type: procedure_type, } if (data[i].procedure_type == "Nephrectomy") { let robotic = ""; @@ -20,14 +30,14 @@ class surgeryProcedureTable extends React.Component { robotic = 'Yes'; } else if (data[i].nephrectomy_details.robotic_assist === false) { robotic = 'No'; - } + } let obj2 = { - procedure_type: "Nephrectomy", + procedure_type: data[i].surgery_diagnosis , type: data[i].nephrectomy_details.type, approach: data[i].nephrectomy_details.approach, robotic_assist: robotic, } - surgeryProceduresData[index] = obj2; + surgeryProceduresData[index] = obj2; } else { surgeryProceduresData[index] = obj1; } @@ -38,10 +48,10 @@ class surgeryProcedureTable extends React.Component { } renderData() { - + const tableColumns = { procedure_type: { - title: 'Procedure Type', + title: 'Surgery Procedure', }, type: { title: 'Nephrectomy Type', @@ -54,15 +64,15 @@ class surgeryProcedureTable extends React.Component { }, - + }; return ( ); - - + + } render() { @@ -72,14 +82,10 @@ class surgeryProcedureTable extends React.Component { } componentDidMount() { - + this.renderData(); } } export default surgeryProcedureTable; - - - - diff --git a/src/encoded/static/components/tooltips.js b/src/encoded/static/components/tooltips.js index 9cac30e8b4..faec728678 100644 --- a/src/encoded/static/components/tooltips.js +++ b/src/encoded/static/components/tooltips.js @@ -33,9 +33,50 @@ export let tooltips = { "Tumor Grade": " Highest Fuhrman or ISUP grade seen in tumor, 1-4. Benign tumors and ChRCC are recorded as not applicable. Tumors for which grade was not reported in pathology are considered not available. Some of the cases have been reviewed centrally, and the centrally reviewed grade has been depicted in KCE for these cases.", "Margin Status": "Tumor transected at the surgical margins are considered positive/involved.", "Lymphvascular invasion(LVI)": "Lymphovascular invasion in non-muscle containing vessels.", + + // AJCC Version "6th edition": "TNM Stage composite stage based on 6th edition rules.", "7th edition": "TNM Stage composite stage based on 7th edition rules.", - "8th edition": "TNM Stage composite stage based on 7th edition rules.", + "8th edition": "TNM Stage composite stage based on 8th edition rules.", + + + "pT Stage (at presentation)": "T stands for tumor, it refers to the size of the primary tumor and if it has invaded surrounding tissue.", + "pN Stage (at presentation)": "N stands for lymph nodes, it is used to identify how far the cancer has spread to lymph nodes.", + "pM Stage (at presentation)": "M stands for metastasis, it indicates whether the cancer has metastasized, or spread into other organs or more distant lymph nodes.", + + "pTX": "The primary tumor cannot be evaluated.", + + "pT1": "The tumor is found only in the kidney and is 7 cm or smaller at its largest area. There has been much discussion among doctors about whether this classification should only include a tumor that is 5 cm or smaller.", + + "pT1a": "The tumor is found only in the kidney and is 4 cm or smaller at its largest area.", + + "pT1b": "The tumor is found only in the kidney and is between 4 cm and 7 cm at its largest area.", + + "pT2": "The tumor is found only in the kidney and is larger than 7 cm at its largest area.", + + "pT2a": "The tumor is only in the kidney and is more than 7 cm but not more than 10 cm at its largest area.", + + "pT2b": "The tumor is only in the kidney and is more than 10 cm at its largest area.", + + "pT3": "The tumor has grown into major veins within the kidney or perinephric tissue, which is the connective, fatty tissue around the kidneys. However, it has not grown into the adrenal gland on the same side of the body as the tumor. The adrenal glands are located on top of each kidney and produce hormones and adrenaline to help control heart rate, blood pressure, and other bodily functions. In addition, the tumor has not spread beyond Gerota's fascia, an envelope of tissue that surrounds the kidney.", + + "pT3a": "The tumor has spread to the large vein leading out of the kidney, called the renal vein, or the branches of the renal vein; the fat surrounding and/or inside the kidney; or the pelvis and calyces of the kidney, which collect urine before sending it to the bladder. The tumor has not grown beyond Gerota's fascia.", + + "pT3b": "The tumor has grown into the large vein that drains into the heart, called the inferior vena cava, below the diaphragm. The diaphragm is the muscle under the lungs that helps breathing.", + + "pT3c": "The tumor has spread to the vena cava above the diaphragm and into the right atrium of the heart or to the walls of the vena cava.", + + "pT4": "The tumor has spread to areas beyond Gerota's fascia and extends into the adrenal gland on the same side of the body as the tumor.", + + + "pNX": "The regional lymph nodes cannot be evaluated.", + + "pN0": "The cancer has not spread to the regional lymph nodes.", + + "pN1": "The cancer has spread to single regional lymph node.", + "pN2": "The cancer has spread to more than one lymph nodes.", + + "pM1": "The cancer has spread to other parts of the body beyond the kidney area.", //patient page facets "Metastatic Site": "This is recorded either from pathology report using natural language search or from clinical and radiotherapy notes. These may not be all inclusive.", @@ -53,18 +94,19 @@ export let tooltips = { "Dominant Tumor": "The patient's dominant tumor based on current data availability ( stage, histology and size)", // Surgery - "Hospital Location": "The location procedure was conducted For patients with surgery at an outside institution, the surgery hospital location is recorded as “Outside”.", - "Surgery Treatment Summary": "The surgery treatment status. For patients that did not undergo surgery, their status is recorded as “No” (management at UTSW for active surveillance or metastasis without surgical treatment).", - "Procedure": "The surgical procedure conducted as recorded in the EMR.", + "Surgery Hospital Location": "The location procedure was conducted For patients with surgery at an outside institution, the surgery hospital location is recorded as “Outside”.", + "Surgical Managment": "The surgery management status. For patients that did not undergo surgery, their status is recorded as “No” (management at UTSW for active surveillance or metastasis without surgical treatment).", + "Surgery Procedure": "The surgical procedure conducted as recorded in the EMR.", "Nephrectomy Details": "The Nephrectomy type, and the method (Nephrectomy approach and nephrectomy robotic assist) of nephrectomy for patients that underwent surgery.", + // Pathology Report "Laterality": "Laterality of the tumor is recorded when available in the pathology report.", "Size": "The greatest dimension of the tumor was recorded in cm.", "Focality": "Single or multiple foci of tumors in that specimen is recorded when available.", "Sarcomatoid": "The presence of sarcomatoid dedifferentiation when reported. The percentage is reported if available.", "Necrosis": "The presence of tumor necrosis (this is available only after 2012).", - "Grade": "highest Fuhrman or ISUP grade seen in tumor, 1-4. ChRCC are recorded as “Not applicable”. Tumors for which grade was not reported in pathology are considered “Not available”.", + "Grade": "Highest Fuhrman or ISUP grade seen in tumor, 1-4. ChRCC are recorded as “Not applicable”. Tumors for which grade was not reported in pathology are considered “Not available”.", "Margins": "Tumor transected at the surgical margins are considered positive.", "LVI": "Lymphovascular invasion in non-muscle containing vessels.", "Perinephric Infiltration": "Tumor extension into perinephric tissues, identified microscopically.", @@ -84,12 +126,12 @@ export let tooltips = { // Summary definitions : "Metastasis Status": "Patients that had histologic proven metastasis either at the time of nephrectomy or subsequently (FNA, core biopsy or metastasectomy), or patients started on systemic cancer drug, or received radiotherapy in non-renal site (including thrombus) or stated to have metastasis in the clinical notes are categorized as “Yes”.", - "Metastasis Site": "This is recorded either from pathology report using natural language search or from clinical and radiotherapy notes. These may not be all-inclusive.", "Histology Proven": "Record of metastatic RCC in pathology reports and nephrectomy specimens are considered histologically proven.", "Biometric Parameters and Basic Blood Workup ": "Biometric parameters (Blood Pressure (BP_Systolic and BP_Diastolic) and Body Mass Index (BMI)) and laboratory values (serum albumin, creatinine, corrected calcium, hemoglobin, lactate dehydrogenase (LDH), neutrophils, platelets, sodium and WBC count) recorded in the patient's EMR within 30 days prior to first nephrectomy. If there are multiple entries of the same parameter within 30 days, the closest to surgery are displayed.", "Medical Imaging": "Types of medical imaging (CT abdomen and pelvis (with or without contrast), MRI abdomen (with or without contrast), and PET done within 90 days prior to Nephrectomy. If there are multiple entries of the same imaging modality within 90 days, only the closest to Nephrectomy is displayed.", "Germline Mutation": "Mutation of clinical significance or a variant of uncertain clinical significance in any of the genes from 76 cancer genes tested at the UTSW Genetics lab for these patients when available.", + // bioexperiment, biodataset, bioreference, bioproject : "Biological replicate": "Replication on two distinct biosamples on which the same experimental protocol was performed. For example, on different growths, two different knockdowns, etc.", "Technical replicate": "Two replicates from the same biosample, treated identically for each replicate (e.g. same growth, same knockdown).", diff --git a/src/encoded/static/components/typeutils.js b/src/encoded/static/components/typeutils.js index 0cd93a50b6..9b71c726fc 100644 --- a/src/encoded/static/components/typeutils.js +++ b/src/encoded/static/components/typeutils.js @@ -217,7 +217,7 @@ BiospecimenTable.columns = { }, anatomic_site: { title: 'Anatomic site', - getValue: biospecimen => biospecimen.anatomic_site, + getValue: biospecimen => biospecimen.anatomic_site_display, } }; diff --git a/src/encoded/tests/data/inserts/award.json b/src/encoded/tests/data/inserts/award.json index c3209c1721..0307e42452 100644 --- a/src/encoded/tests/data/inserts/award.json +++ b/src/encoded/tests/data/inserts/award.json @@ -297,5 +297,24 @@ "title": "A DATA COORDINATING CENTER FOR ENCODE", "url": "https://projectreporter.nih.gov/project_info_description.cfm?aid=9247374&icde=32923597&ddparam=&ddvalue=&ddsub=&cr=1&csb=default&cs=ASC&pball=", "viewing_group": "ENCODE4" + }, + { + "name": "Double-Mutants", + "project": "Double Mutants", + "rfa": "Double Mutants", + "status": "current", + "title": "Double Mutants", + "uuid": "2342f44a-30d4-41ff-8865-d1827d39d65d", + "viewing_group": "Kidney SPORE" + }, + { + "name": "T-Th", + "project": "T_Th", + "rfa": "T_Th", + "status": "current", + "title": "T_Th", + "uuid": "08c90ec8-65ac-4dec-89e9-8c3c4e9e63c4", + "viewing_group": "Kidney SPORE" } ] + diff --git a/src/encoded/tests/data/inserts/bioexperiment.json b/src/encoded/tests/data/inserts/bioexperiment.json index 376387d80f..2569ad2ee7 100644 --- a/src/encoded/tests/data/inserts/bioexperiment.json +++ b/src/encoded/tests/data/inserts/bioexperiment.json @@ -1,121 +1,19 @@ [ + { - "accession": "KCEBE000AER", - "assay_term_name": "RNA-seq", + "accession": "KCEBE000UIY", + "assay_term_name": "whole exome sequencing", + "lab": "james-brugarolas", "award": "Kidney-SPORE", - "lab": "thomas-gingeras", - "experiment_description": "RNA Evaluation K562 Long Total RAMPAGE from Gingeras", - "date_released": "2015-01-10", "status": "released", - "date_submitted": "2015-01-08", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "6f70fc67-8589-4366-bd69-7e2007dd2901", - "documents": [ - "kce:Chip-seq protocol-general" - ], - "references": [ - "d6eec3a0-ffa7-4d71-b07e-7004bc2787bd" - ], - "dbxrefs": [ - "GEO:GSM935375" - ], - "aliases": [ - "james-brugarolas:experiment_RB884_680_1" - ], - "possible_controls":["KCEBE000AES"], - "submitter_comment": "The lab tissue was FFPE fixed and be put in room temperature for 30min." + "uuid": "11fed14e-ba79-4ca2-a8c8-374dd11f9b5b" }, { - "accession": "KCEBE000AES", + "accession": "KCEBE765UIY", "assay_term_name": "RNA-seq", + "lab": "james-brugarolas", "award": "Kidney-SPORE", - "lab": "thomas-gingeras", - "experiment_description": "RNA Evaluation K562 Small Total RNA-seq from Gingeras", - "date_submitted": "2015-01-08", - "date_released": "2015-01-10", - "status": "released", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "8351b819-40ef-4254-9bd9-43ec7e285ea8", - "documents": [ - "kce:RNA extraction protocol from Qiagen", - "kce:ChIPSeq_protocol-Abcam" - ], - "references": [ - "d6eec3a0-ffa7-4d71-b07e-7004bc2787bd", - "caa8db45-32e3-4fb5-8cc0-885325fb7fc8" - ], - "dbxrefs": [ - "GEO:GSM1010811" - ], - "aliases": [ - "payal-kapur:experiment_RB884_880_1" - ], - "submitter_comment": "There may have been additional \"treatment\" stemming from the tech's constant sneezing." - }, - { - "accession": "KCEBE000ADH", - "assay_term_name": "RNA-seq", - "award": "Kidney-SPORE", - "lab": "sherman-weissman", - "experiment_description": "CH12 Control Histone Mods by ChIP-seq performed by Yale", - "date_submitted": "2015-01-02", - "date_released": "2015-01-10", - "status": "released", - "submitted_by": "amet.fusce@est.fermentum", - "uuid": "6cda9c90-9a41-47f3-bf20-665f57c92f07", - "dbxrefs": [ - "GEO:GSM798327", - "GEO:GSE32218" - ], - "references": [ - "5a4ffbb9-2a6f-4620-8196-7bfb1b441051" - ], - "aliases": [ - "james-brugarolas:experiment_RB884_681_1" - ] - }, - { - "accession": "KCEBE000BJW", - "assay_term_name": "whole genome sequencing assay", - "award": "Kidney-SPORE", - "lab": "sherman-weissman", - "experiment_description": "CH12 Control Histone Mods by ChIP-seq performed by Yale", - "date_submitted": "2015-01-02", - "date_released": "2015-01-10", - "status": "released", - "submitted_by": "amet.fusce@est.fermentum", - "uuid": "0607bd54-3beb-4b40-93a3-048e886be4f1", - "dbxrefs": [ - "GEO:GSM798327", - "GEO:GSE32218" - ], - "references": [ - "5a4ffbb9-2a6f-4620-8196-7bfb1b441051" - ], - "aliases": [ - "james-brugarolas:experiment_RB884_681_2" - ] - }, - { - "accession": "KCEBE000BJX", - "assay_term_name": "whole genome sequencing assay", - "award": "Kidney-SPORE", - "lab": "sherman-weissman", - "experiment_description": "CH12 Control Histone Mods by ChIP-seq performed by Yale", - "date_submitted": "2015-01-02", - "date_released": "2015-01-10", "status": "released", - "submitted_by": "amet.fusce@est.fermentum", - "uuid": "aa16f84d-281e-4247-9d9e-31ce8c2ef9d4", - "dbxrefs": [ - "GEO:GSM798327", - "GEO:GSE32218" - ], - "references": [ - "5a4ffbb9-2a6f-4620-8196-7bfb1b441051" - ], - "aliases": [ - "james-brugarolas:experiment_RB884_681_3" - ] + "uuid": "49441b19-b4a5-4a0f-a7cc-97b657c0c19c" } ] diff --git a/src/encoded/tests/data/inserts/bioexperiment_series.json b/src/encoded/tests/data/inserts/bioexperiment_series.json deleted file mode 100644 index ba521c0f51..0000000000 --- a/src/encoded/tests/data/inserts/bioexperiment_series.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "uuid": "9549ec8e-0ead-4b66-b97b-3997e46c68b2", - "accession": "KCESE513DKU", - "award": "U24HG009397", - "lab": "j-michael-cherry", - "status": "released", - "date_released": "2019-06-03", - "related_datasets": ["KCEBE000ADH", "KCEBE000AES"] - } -] diff --git a/src/encoded/tests/data/inserts/biofile.json b/src/encoded/tests/data/inserts/biofile.json index 34e9f2cdd8..064987dff2 100644 --- a/src/encoded/tests/data/inserts/biofile.json +++ b/src/encoded/tests/data/inserts/biofile.json @@ -1,85 +1,93 @@ [ + + { - "accession": "KCEFF398MYM", - "bioreplicate": "18a45454-8f13-4bf2-842b-64a75613136a", - "biodataset": "KCEBE000AES", - "run_type": "single-ended", - "file_format": "fastq", - "md5sum": "95be74b6e11515393507f4ebfa66d78d", - "output_type": "reads", - "file_size": 20, - "read_length": 50, + "accession": "KCEFF365GYT", + "award": "Double-Mutants", + "biodataset": "KCEBE000UIY", + "bioreplicate":"454c26c2-4252-49d7-a904-4ae479eb6743", + "biospecimen": "KCEBS087RNA", "platform": "171f8a03-650b-4f7f-9c2f-0970348ee95f", - "status": "released", - "sequencing_replicate_number": 1, - "uuid": "f6c125ca-2cc3-4c63-a62a-d326ccfa2f30" - }, - { - "accession": "KCEFF287RDC", - "bioreplicate": "454c26c2-4252-49d7-a904-4ae479eb6743", - "biodataset": "KCEBE000ADH", + "library_type": "DNA", "file_format": "fastq", - "file_size": 20, - "md5sum": "97b452ae74c7d279706c88141155a00c", - "output_type": "reads", - "read_length": 50, + "md5sum": "35042bf1404f32dcb5879015cd57fbe2", "run_type": "paired-ended", "paired_end": "1", - "platform": "171f8a03-650b-4f7f-9c2f-0970348ee95f", + "submitted_file_name": "1620XD-14-15V1_S0_L001_R1_001.fastq.gz", + "file_path":"/project/BICF/shared/Kidney/Projects/DoubleMutant/Exome/1620XD-14-15V1_S0_L001_R1_001.fastq.gz", "status": "released", - "sequencing_replicate_number": 1, - "submitted_file_name": "set2/fastq/K562-A-6-1_pool6_AGTCAA_L006_R1_001.fastq.gz", - "uuid": "6713196b-8bda-42db-b676-8c7a6ad07e23" + "output_type": "reads", + "file_size": 20, + "read_length": 50, + "uuid": "3ac55830-bf9e-435d-9952-434a3a76396a" }, + { - "accession": "KCEFF365RCT", - "bioreplicate": "1d8d4a65-1db6-4400-ba95-6db3d98fb55f", - "biodataset": "KCEBE000ADH", - "file_size": 20, + "accession": "KCEFF745GYT", + "award": "Double-Mutants", + "biodataset": "KCEBE000UIY", + "bioreplicate":"1d8d4a65-1db6-4400-ba95-6db3d98fb55f", + "platform": "171f8a03-650b-4f7f-9c2f-0970348ee95f", + "biospecimen": "KCEBS087RNA", + "library_type": "DNA", "file_format": "fastq", - "md5sum": "3ced82e44cea82a4784493c2f640ba12", - "output_type": "reads", - "read_length": 50, + "md5sum": "9c8a24ee73e74c5c18e17f83b50a0eaf", "run_type": "paired-ended", "paired_end": "2", - "paired_with": "KCEFF287RDC", - "platform": "171f8a03-650b-4f7f-9c2f-0970348ee95f", + "paired_with": "KCEFF365GYT", + "submitted_file_name": "1620XD-14-15V1_S0_L001_R2_001.fastq.gz", + "file_path":"/project/BICF/shared/Kidney/Projects/DoubleMutant/Exome/1620XD-14-15V1_S0_L001_R2_001.fastq.gz", "status": "released", - "sequencing_replicate_number": 1, - "uuid": "6869a7b9-260d-4aa9-9cd2-74e056f6eded" + "output_type": "reads", + "file_size": 20, + "read_length": 50, + "uuid": "47bf6887-91c4-4d8e-a758-7e36b78f734f" }, { - "accession": "KCEFF365SCT", - "bioreplicate": "d667fe93-c86a-4293-86ca-feba95176d0c", - - "biodataset": "KCEBE000BJW", - "file_size": 20, + "accession": "KCEFF586YYT", + "award": "T-Th", + "biodataset": "KCEBE765UIY", + "bioreplicate":"ceb403d7-a51b-45eb-a220-643b2d12ecbf", + "platform": "171f8a03-650b-4f7f-9c2f-0970348ee95f", + "biospecimen": "KCEBS087RNA", + "library_type": "DNA", "file_format": "fastq", - "md5sum": "3ced82e44cea82a4784493c2f640ba12", - "output_type": "reads", - "read_length": 50, + "md5sum": "5f1c697e9842f8170f7fdb50ef2c8dd8", "run_type": "paired-ended", - "paired_end": "2", - "platform": "171f8a03-650b-4f7f-9c2f-0970348ee95f", + "paired_end": "1", + "submitted_file_name": "SAM24296975_1_1.gne.fastq.gz", + "file_path":"/project/BICF/shared/Kidney/exome/RAW/SAM24296975_1_1.gne.fastq.gz", "status": "released", - "sequencing_replicate_number": 1, - "uuid": "dfcb82a7-67be-47a6-af6f-fa4e2e23b9f1" + "output_type": "reads", + "file_size": 20, + "read_length": 50, + "uuid": "d42d45b3-89b6-406b-bc1c-05f36e6b880e" }, - { - "accession": "KCEFF365SCU", - "bioreplicate": "71c692e5-3161-4f38-acb7-fc3d1f64003f", - "biodataset": "KCEBE000BJX", - "file_size": 20, + { + "accession": "KCEFF307UYT", + "award": "T-Th", + "biodataset": "KCEBE765UIY", + "bioreplicate":"2fd08d63-cb83-421a-8454-a9505da559c4", + "platform": "171f8a03-650b-4f7f-9c2f-0970348ee95f", + "biospecimen": "KCEBS044ANI", + "library_type": "DNA", "file_format": "fastq", - "md5sum": "3ced82e44cea82a4784493c2f640ba12", - "output_type": "reads", - "read_length": 50, + "md5sum": "befc88129d683f7ab55a0c0a5c20f5ca", "run_type": "paired-ended", "paired_end": "2", - "platform": "171f8a03-650b-4f7f-9c2f-0970348ee95f", + "paired_with": "KCEFF586YYT", + "submitted_file_name": "SAM24296975_1_2.gne.fastq.gz", + "file_path":"/project/BICF/shared/Kidney/exome/RAW/SAM24296975_1_2.gne.fastq.gz", "status": "released", - "sequencing_replicate_number": 1, - "uuid": "0fb8b069-dd0a-46a5-b198-53854295dd32" + "output_type": "reads", + "file_size": 20, + "read_length": 50, + "uuid": "c93f4225-b65e-44c5-85a8-45132430be06" } + + ] + + + diff --git a/src/encoded/tests/data/inserts/biolibrary.json b/src/encoded/tests/data/inserts/biolibrary.json index 6434629c2f..6ed463c4e4 100644 --- a/src/encoded/tests/data/inserts/biolibrary.json +++ b/src/encoded/tests/data/inserts/biolibrary.json @@ -5,7 +5,7 @@ "status": "released", "uuid": "e6f6c49d-89d4-4adb-baa4-38c103b1583c", "documents": [ - "kce:Myers_Methyl450_protocol" + "kce:RNA extraction protocol from Qiagen" ], "accession": "KCELB012FAA", "submitter_comment":"One sample was failed when sequencing, and have to repeat and combine the half of the failed sample" @@ -24,8 +24,8 @@ "status": "released", "uuid": "873440f2-13a2-4564-a127-3c88c9a33c8e", "documents": [ - "kce:Ambion-NIST_Spikes_Sequences_Concentrations", - "kce:Ambion-NIST_Spikes_Corrected" + "kce:ChIPSeq_protocol-Abcam", + "kce:Kidney biopsy collection from patient" ], "accession": "KCELB038EAA", "submitter_comment":"This is a test for submitter_comment" @@ -54,4 +54,4 @@ "accession": "KCELB987GAA", "submitter_comment":"This is a test for submitter_comment" } -] +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/bioproject.json b/src/encoded/tests/data/inserts/bioproject.json deleted file mode 100644 index ec42fb17ca..0000000000 --- a/src/encoded/tests/data/inserts/bioproject.json +++ /dev/null @@ -1,82 +0,0 @@ -[ - { - "_test": "ec3 dataset", - "accession": "KCEBE000AJW", - "award": "ENCODE2", - "project_type": "evaluation", - "description": "RNA Working Group Evaluation Dataset", - "lab": "john-stamatoyannopoulos", - "status": "released", - "documents": [ - "kce:ChIPSeq_protocol-Abcam", - "kce:RNA extraction protocol from Qiagen", - "kce:K562_BAC_transfection_White_protocol", - "kce:Example of high resolution pathology image in SVS format" - - ], - "references": [ - "d6eec3a0-ffa7-4d71-b07e-7004bc2787bd" - ], - "dbxrefs": [ - "GEO:GSM1010811" - ], - "submitted_by": "facilisi.tristique@potenti.vivamus", - "uuid": "1e55c9e0-a785-4783-938b-82f116eefa91", - "date_released": "2016-01-01" - }, - { - "_test": "slushie dataset", - "project_type": "evaluation", - "award": "U54HG007004", - "description": "Uniformly processed ENCODE3 eCLIP October 2015", - "submitted_by": "facilisi.tristique@potenti.vivamus", - "lab": "j-michael-cherry", - "accession": "KCEBE636JNF", - "dbxrefs": [ - "GEO:GSM798327", - "GEO:GSE32218" - ], - "status": "in progress", - "uuid": "22cc1fe0-7da8-4f59-9386-00558fe35eb0" - }, - { - "_test": "validation dataset", - "project_type": "validation", - "uuid": "65ad5b6e-37a9-4b9f-bc6d-bab73e0fd8f3", - "status": "released", - "dbxrefs": [ - "GEO:GSM798327", - "GEO:GSE32218" - ], - "documents": [ - "kce:ChIPSeq_protocol-Abcam", - "kce:RNA extraction protocol from Qiagen", - "kce:K562_BAC_transfection_White_protocol" - ], - "award": "U54HG007004", - "lab": "j-michael-cherry", - "description": "Enhancer Validations for ENCODE3", - "submitted_by": "facilisi.tristique@potenti.vivamus", - "accession": "KCEBE554OJS", - "date_released": "1994-04-05" - }, - { - "_test": "evaluation dataset", - "project_type": "evaluation", - "accession": "KCEBE860CMY", - "dbxrefs": [ - "GEO:GSM798327", - "GEO:GSE32218" - ], - "documents": [ - "kce:K562_BAC_transfection_White_protocol" - ], - "submitted_by": "facilisi.tristique@potenti.vivamus", - "status": "released", - "description": "The ENCODE3 TF ChIP-seq peak calling evaluation dataset. This dataset was used by members of the Binding Working Group to evaluate candiate TF peak callers for the defined processing pipeline.", - "award": "U54HG007004", - "lab": "j-michael-cherry", - "uuid": "4b088d63-26ac-4679-ac15-60129156064b", - "date_released": "2001-10-21" - } -] diff --git a/src/encoded/tests/data/inserts/bioreference.json b/src/encoded/tests/data/inserts/bioreference.json deleted file mode 100644 index 0349c4a008..0000000000 --- a/src/encoded/tests/data/inserts/bioreference.json +++ /dev/null @@ -1,71 +0,0 @@ -[ - { - "accession": "KCEBE000REF", - "lab": "thomas-gingeras", - "award": "U54HG006998", - "organism": "Human", - "documents": [ - "kce:ChIPSeq_protocol-Abcam", - "kce:RNA extraction protocol from Qiagen", - "kce:K562_BAC_transfection_White_protocol", - "kce:Example of high resolution pathology image in SVS format" - - ], - "references": [ - "d6eec3a0-ffa7-4d71-b07e-7004bc2787bd" - ], - "reference_type": "spike-in", - "description": "RNA Working Group Spike-ins Dataset", - "status": "released", - "dbxrefs": [ - "GEO:GSM798327", - "GEO:GSE32218" - ], - "aliases": [ - "kce:experiment_RB884_80_1" - ], - "submitted_by": "facilisi.tristique@potenti.vivamus", - "uuid": "b21ab921-03e0-436d-9aff-08f587cb632e", - "date_released": "2016-01-01" - }, - { - "accession": "KCEBE001AES", - "lab": "thomas-gingeras", - - "award": "ENCODE2", - "organism": "Human", - "documents": [ - "kce:ChIPSeq_protocol-Abcam", - "kce:RNA extraction protocol from Qiagen", - "kce:K562_BAC_transfection_White_protocol" - ], - "reference_type": "spike-in", - "description": "RNA Working Group Spike-ins Dataset 2", - "status": "released", - "dbxrefs": [ - "GEO:GSM1010811" - ], - "submitted_by": "facilisi.tristique@potenti.vivamus", - "uuid": "e8bad3e4-3126-4e30-8179-a8a22bf5ad82", - "date_released": "2016-01-01" - }, - { - "accession": "KCEBE001ADH", - "lab": "thomas-gingeras", - - "award": "U54HG007005", - "organism": "Mouse", - "documents": [ - "kce:ChIPSeq_protocol-Abcam" - ], - "reference_type": "spike-in", - "description": "Spike-ins used in RAMPAGE experiments from CSHL", - "status": "released", - "dbxrefs": [ - "GEO:GSM935375" - ], - "submitted_by": "facilisi.tristique@potenti.vivamus", - "uuid": "206094ab-66e8-42c8-9c19-9e4a694eaa7d", - "date_released": "2015-04-21" - } -] diff --git a/src/encoded/tests/data/inserts/bioreplicate.json b/src/encoded/tests/data/inserts/bioreplicate.json index 8990c58653..2952722cdc 100644 --- a/src/encoded/tests/data/inserts/bioreplicate.json +++ b/src/encoded/tests/data/inserts/bioreplicate.json @@ -1,6 +1,8 @@ + + [ { - "bioexperiment": "KCEBE000ADH", + "bioexperiment": "KCEBE000UIY", "biological_replicate_number": 1, "biolibrary": "KCELB987EAA", "status": "released", @@ -8,23 +10,16 @@ "uuid": "454c26c2-4252-49d7-a904-4ae479eb6743" }, { - "bioexperiment": "KCEBE000ADH", - "biological_replicate_number": 1, - "biolibrary": "KCELB987EAA", - "technical_replicate_number": 2, - "status": "released", - "uuid": "1d8d4a65-1db6-4400-ba95-6db3d98fb55f" - }, - { - "bioexperiment": "KCEBE000AES", - "biological_replicate_number": 1, - "biolibrary": "KCELB038EAA", + "bioexperiment": "KCEBE000UIY", + "biological_replicate_number": 2, + "biolibrary": "KCELB987FAA", "technical_replicate_number": 1, "status": "released", - "uuid": "18a45454-8f13-4bf2-842b-64a75613136a" + "uuid": "1d8d4a65-1db6-4400-ba95-6db3d98fb55f" }, + { - "bioexperiment": "KCEBE000AER", + "bioexperiment": "KCEBE765UIY", "biological_replicate_number": 1, "biolibrary": "KCELB012FAA", "technical_replicate_number": 1, @@ -32,26 +27,12 @@ "uuid": "ceb403d7-a51b-45eb-a220-643b2d12ecbf" }, { - "bioexperiment": "KCEBE000AER", - "biological_replicate_number": 2, - "biolibrary": "KCELB745FAA", - "technical_replicate_number": 1, - "status": "released", - "uuid": "2fd08d63-cb83-421a-8454-a9505da559c4" - }, - { - "bioexperiment": "KCEBE000BJW", + "bioexperiment": "KCEBE765UIY", "biological_replicate_number": 1, - "biolibrary": "KCELB987FAA", - "technical_replicate_number": 1, - "status": "released", - "uuid": "d667fe93-c86a-4293-86ca-feba95176d0c" - },{ - "bioexperiment": "KCEBE000BJX", - "biological_replicate_number": 2, - "biolibrary": "KCELB987GAA", - "technical_replicate_number": 1, + "biolibrary": "KCELB012FAA", + "technical_replicate_number": 2, "status": "released", - "uuid": "71c692e5-3161-4f38-acb7-fc3d1f64003f" + "uuid": "2fd08d63-cb83-421a-8454-a9505da559c4" } -] + +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/biospecimen.json b/src/encoded/tests/data/inserts/biospecimen.json index 8e95298b94..8b41e68e5f 100644 --- a/src/encoded/tests/data/inserts/biospecimen.json +++ b/src/encoded/tests/data/inserts/biospecimen.json @@ -31,13 +31,10 @@ "tissue_type":"Non-Malignant", "anatomic_site":"Kidney, NOS", "uuid": "170be0f2-6b5c-4b93-ba65-bedadbfe917f", - "status": "released", + "status": "deleted", "specimen_lineage": "New", "activity_status": "Active", "species": "Human", - "documents": [ - "kce:K562_BAC_transfection_White_protocol" - ], "surgery": "KCESX708FIJ" }, { @@ -53,9 +50,6 @@ "tissue_type":"Malignant", "anatomic_site":"Liver", "uuid": "c58dd4d7-418a-4482-84c8-4d5ee6f29ea5", - "documents": [ - "kce:EPC_Stam_protocol" - ], "status": "released", "species": "Human", "specimen_lineage": "New", @@ -93,7 +87,7 @@ "tissue_type":"Malignant", "anatomic_site":"Kidney, NOS", "uuid": "b1cf3723-2791-4ac7-bb02-e5d49f66819c", - "status": "released", + "status": "revoked", "species": "Human", "specimen_lineage": "New", "activity_status": "Active" diff --git a/src/encoded/tests/data/inserts/cart.json b/src/encoded/tests/data/inserts/cart.json index b12079cd8e..5375758190 100644 --- a/src/encoded/tests/data/inserts/cart.json +++ b/src/encoded/tests/data/inserts/cart.json @@ -2,13 +2,14 @@ { "name": "First cohort", "elements": [ - "/patients/KCEPT359MHZ/", - "/patients/KCEPT873QVK/", - "/patients/KCEPT802XRB/", - "/patients/KCEPT186NZW/" + "/patients/000000/", + "/patients/000001/", + "/patients/000015/", + "/patients/000010/", + "/patients/000013/" ], "identifier": "venkat-malladi-first-cohort", - "submitted_by": "vsmalladi@gmail.com", + "submitted_by": "venkat.malladi@utsouthwestern.edu", "status": "current", "uuid": "d8850d88-946b-43e0-9199-efee2c8f5303" } diff --git a/src/encoded/tests/data/inserts/concussion_history.json b/src/encoded/tests/data/inserts/concussion_history.json new file mode 100644 index 0000000000..9e15595efa --- /dev/null +++ b/src/encoded/tests/data/inserts/concussion_history.json @@ -0,0 +1,51 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "concuss": "1 Yes", + "q1_if_yes": { + "concuss_number": "2 2", + "concuss_age1": 8, + "concuss_age2": 18 + }, + "multiple_hits": "1 Yes", + "q2_if_yes": { + "multiple_hits_begin": 30, + "multiple_hits_end": 32, + "multiple_hits_ctx": "football" + }, + "loc": "1 Yes", + "q3_if_yes": { + "num_times_loc": 1, + "loc_age": 18, + "loc_dur": "1 <5 min" + }, + "q4": { + "sitfall": true, + "sitcar": true + }, + "concuss_doc": "1 Yes", + "q5_if_yes": { + "concuss_er": "1 Yes", + "concuss_ovrnght": "1 Yes", + "concuss_dx": "1 Yes" + }, + "concuss_new_prob": "0 No", + "concuss_sympt_recov": "2 1-6 days", + "q8": { + "dxadhd": true, + "dxldis": true, + "dxanx": true + }, + "concuss_hist_demen": "9 Don't know", + "concuss_clin_sig": "DT", + "form_status": "Complete", + "status": "released", + "uuid": "817aaf41-dad0-4eb2-ba83-cab830bfc041" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/concussion_history_follow_up.json b/src/encoded/tests/data/inserts/concussion_history_follow_up.json new file mode 100644 index 0000000000..9cdb40cdfa --- /dev/null +++ b/src/encoded/tests/data/inserts/concussion_history_follow_up.json @@ -0,0 +1,120 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "concuss_v2": "1 Yes", + "concuss_v3": "1 Yes", + "fu_q2_if_yes": { + "concuss_v2_date": "1987-09-09" + }, + "loc_v2": "1 Yes", + "fu_q3_if_yes": { + "num_times_loc_v2": 1, + "loc_date_v2": "1987-09-09", + "loc_dur_v2": "2 5-10 min" + }, + "fu_q4": { + "sitfall_v2": true, + "sitcar_v2": true + }, + "concuss_new_prob_v2": "1 Yes", + "fu_q5_if_yes": { + "phyprob_v2": "1 Yes", + "fu_physical": { + "phyhead_v2": true, + "phydizzy_v2": true, + "phynaus_v2": true, + "phybal_v2": true + }, + "behprob_v2": "1 Yes", + "fu_behavioral": { + "title": "Check all that apply.", + "type": "object", + "behdep_v2": true, + "behanx_v2": true, + "behselfcare_v2": true, + "behrelate_v2": true + }, + "cogprob_v2": "1 Yes", + "fu_cognitive": { + "cogconcen_v2": true, + "cogmemnew_v2": true + } + }, + "concuss_sympt_recov_v2": "1 Yes", + "concuss_sympt_recov_dur_v2": "3 7-14 days", + "fu_q7": { + "dxldis_v2": false, + "dxdep_v2": true, + "dxanx_v2": true + }, + "concuss_hist_demen_v2": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "bd67f04a-c393-4351-94c8-c78f9d762336" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "concuss_v2": "1 Yes", + "concuss_v3": "1 Yes", + "fu_q2_if_yes": { + "concuss_v2_date": "1987-09-09" + }, + "loc_v2": "1 Yes", + "fu_q3_if_yes": { + "num_times_loc_v2": 1, + "loc_date_v2": "1987-09-09", + "loc_dur_v2": "2 5-10 min" + }, + "fu_q4": { + "sitfall_v2": true, + "sitcar_v2": true + }, + "concuss_new_prob_v2": "1 Yes", + "fu_q5_if_yes": { + "phyprob_v2": "1 Yes", + "fu_physical": { + "phyhead_v2": true, + "phydizzy_v2": true, + "phynaus_v2": true, + "phybal_v2": true + }, + "behprob_v2": "1 Yes", + "fu_behavioral": { + "title": "Check all that apply.", + "type": "object", + "behdep_v2": true, + "behanx_v2": true, + "behselfcare_v2": true, + "behrelate_v2": true + }, + "cogprob_v2": "1 Yes", + "fu_cognitive": { + "cogconcen_v2": true, + "cogmemnew_v2": true + } + }, + "concuss_sympt_recov_v2": "1 Yes", + "concuss_sympt_recov_dur_v2": "3 7-14 days", + "fu_q7": { + "dxldis_v2": false, + "dxdep_v2": true, + "dxanx_v2": true + }, + "concuss_hist_demen_v2": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "548bcbaf-d243-4f23-b7f7-b229fb716830" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/consent.json b/src/encoded/tests/data/inserts/consent.json index 9189f3b6e6..7e5953befd 100644 --- a/src/encoded/tests/data/inserts/consent.json +++ b/src/encoded/tests/data/inserts/consent.json @@ -1,187 +1,66 @@ [ { - "future_contact": "Agree", - "future_research": "Agree", - "genetic_information_release": "Agree", - "information_release": "Agree", - "overall": "Agree", "patient": "KCEPT708IJT", - "status": "current", - "uuid": "5b5e70c7-2c04-473e-9f16-c3a0cd73a029", - "date": "1872-06-16", - "consent_version": "version2" + "date_signed": "2008-10-10", + "consent_type": "1", + "future_contact": "Y", + "future_research": "N", + "info_release": "Y", + "final_cons_sign": "Y", + "scanned_consent": "Y", + "status": "released", + "uuid": "6b99d6bf-18a1-42b6-b066-fbc04bc2478b" }, { - "future_contact": "Agree", - "future_research": "Agree", - "genetic_information_release": "Refuse", - "hippa": "Agree", - "information_release": "Agree", - "overall": "Agree", "patient": "KCEPT708IJT", - "status": "current", - "uuid": "02a36882-c990-4340-83ee-4f77a5d43406", - "date": "1870-03-16", - "consent_version": "version1" + "date_signed": "2011-10-10", + "consent_type": "2", + "future_contact": "Y", + "future_research": "N", + "info_release": "Y", + "genetic_release": "Y", + "final_cons_sign": "Y", + "scanned_consent": "Y", + "status": "released", + "uuid": "cf3bf135-bd8c-4d42-b22d-42aacae4f7b8" }, { - "biopsyForResearch": "Agree", - "overall": "Agree", "patient": "KCEPT026PGS", - "status": "current", - "uuid": "060cfb0d-334c-446b-8af6-f92d9accf499", - "date": "1880-06-09", - "consent_version": "version3" + "date_signed": "2014-10-10", + "consent_type": "3", + "final_cons_sign": "Y", + "full_limited_part": "Full", + "scanned_consent": "Y", + "status": "released", + "uuid": "b4b48461-e4cd-40ac-9df1-9a506ac57f3c" }, { - "biopsyForResearch": "Refuse", - "overall": "Agree", - "patient": "KCEPT925TMI", - "status": "current", - "uuid": "90508437-ff87-478f-98fa-e3f5d5071f50", - "date": "1883-11-05", - "consent_version": "version3" - }, - { - "future_contact": "Agree", - "future_research": "Refuse", - "genetic_information_release": "Refuse", - "hippa": "Agree", - "information_release": "Refuse", - "overall": "Agree", - "patient": "KCEPT480NBU", - "status": "current", - "uuid": "823a9c07-fe92-44e5-ba99-ddc71466c9b7", - "date": "1870-03-16", - "consent_version": "version1" - }, - { - "future_contact": "Agree", - "future_research": "Refuse", - "genetic_information_release": "Agree", - "information_release": "Agree", - "overall": "Agree", - "patient": "KCEPT873QVK", - "status": "current", - "uuid": "9d038791-ffe0-4f0b-a5e2-9de6770c8b59", - "date": "1874-07-11", - "consent_version": "version2" - }, - { - "future_contact": "Agree", - "future_research": "Refuse", - "genetic_information_release": "Refuse", - "hippa": "Agree", - "information_release": "Agree", - "overall": "Agree", - "patient": "KCEPT802XRB", - "status": "current", - "uuid": "ebf9eb20-56ff-41fe-8b8b-b195e3f24565", - "date": "1870-03-16", - "consent_version": "version1" - }, - { - "future_contact": "Agree", - "future_research": "Refuse", - "genetic_information_release": "Agree", - "hippa": "Agree", - "information_release": "Refuse", - "overall": "Agree", - "patient": "KCEPT802XRB", - "status": "current", - "uuid": "9c453714-67ab-4090-8f5c-bec5c64e24b4", - "date": "1870-09-19", - "consent_version": "version1" - }, - { - "future_contact": "Refuse", - "future_research": "Agree", - "genetic_information_release": "Agree", - "hippa": "Agree", - "information_release": "Agree", - "overall": "Agree", - "patient": "KCEPT186NZW", - "status": "current", - "uuid": "08d4b613-0376-4070-8ef2-2ea97f247e14", - "date": "1870-03-16", - "consent_version": "version1" - }, - { - "future_contact": "Agree", - "future_research": "Agree", - "genetic_information_release": "Refuse", - "hippa": "Agree", - "information_release": "Refuse", - "overall": "Agree", - "patient": "KCEPT139SOR", - "status": "current", - "uuid": "fc4cd663-c93f-41c8-b221-86083621bd3a", - "date": "1870-03-16", - "consent_version": "version1" - }, - { - "future_contact": "Refuse", - "future_research": "Refuse", - "genetic_information_release": "Agree", - "hippa": "Agree", - "information_release": "Refuse", - "overall": "Agree", - "patient": "KCEPT604LAK", - "status": "current", - "uuid": "d6aae2c4-1ccb-44db-8395-be6a694f8054", - "date": "1870-03-16", - "consent_version": "version1" - }, - { - "future_contact": "Refuse", - "future_research": "Refuse", - "genetic_information_release": "Refuse", - "hippa": "Refuse", - "information_release": "Refuse", - "overall": "Refuse", - "patient": "KCEPT692UHR", - "status": "current", - "uuid": "cfcd20f1-8771-4ce4-a95a-e5a18f49b038", - "date": "1870-03-16", - "consent_version": "version1" - }, - { - "future_contact": "Refuse", - "future_research": "Agree", - "genetic_information_release": "Refuse", - "hippa": "Agree", - "information_release": "Agree", - "overall": "Agree", - "patient": "KCEPT294KIZ", - "status": "current", - "uuid": "5d4e174d-b00b-4dfa-81c3-9b1de459cd32", - "date": "1870-03-16", - "consent_version": "version1" + "patient": "KCEPT026PGS", + "date_signed": "2015-10-10", + "consent_type": "4", + "final_cons_sign": "Y", + "full_limited_part": "Full", + "status": "released", + "scanned_consent": "Y", + "uuid": "4f49c8dc-4594-4a6e-bdd0-027c9cdcab8d" }, { - "future_contact": "Refuse", - "future_research": "Refuse", - "genetic_information_release": "Agree", - "hippa": "Agree", - "information_release": "Agree", - "overall": "Agree", - "patient": "KCEPT398JLK", - "status": "current", - "uuid": "4d1e1355-c783-455e-adc9-fdef6cca40a4", - "date": "1870-03-16", - "consent_version": "version1" + "patient": "KCEPT026PGS", + "date_signed": "2019-10-10", + "consent_type": "5", + "final_cons_sign": "Y", + "opti_biopsy_sign": "Y", + "status": "revoked", + "scanned_consent": "Y", + "uuid": "4073f46b-cd84-4281-abbc-ae33e4f1dfae" }, { - "future_contact": "Agree", - "future_research": "Agree", - "genetic_information_release": "Agree", - "hippa": "Agree", - "information_release": "Refuse", - "overall": "Agree", - "patient": "KCEPT756AEN", - "status": "current", - "uuid": "21a2ed04-4d86-4fe4-8618-906b29ea59c1", - "date": "1870-03-16", - "consent_version": "version1" + "patient": "KCEPT708IJT", + "date_signed": "2017-10-10", + "consent_type": "6", + "final_cons_sign": "Y", + "status": "released", + "scanned_consent": "Y", + "uuid": "156c8a40-9d3a-4cbe-a761-f1a2a0db31ec" } -] +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/document.json b/src/encoded/tests/data/inserts/document.json index 06c8cd0812..11c2a4db24 100644 --- a/src/encoded/tests/data/inserts/document.json +++ b/src/encoded/tests/data/inserts/document.json @@ -50,444 +50,6 @@ "status": "released", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "f8599a9f-4095-4b9a-b11a-ea022e2af1f7" - }, - { - "attachment": "PathologyImage_CMU-1.svs", - "aliases": [ - "kce:Example of high resolution pathology image in SVS format" - ], - "award": "ENCODE2", - "description": "Example of high resolution pathology image in SVS format", - "document_type": "high resolution pathology slide image", - "lab": "thomas-gingeras", - "status": "released", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "2d306180-915d-43b8-a87e-a94c4fa86d7e" - }, - { - "aliases": [ - "kce:HAoSMC_PC_8121902.2P_certificate_of_analysis" - ], - "attachment": "8121902.2P.pdf", - "award": "ENCODE2", - "description": "PromoCell Normal Human Aortic Smooth Muscle Cells certificate of analysis", - "document_type": "certificate of analysis", - "lab": "thomas-gingeras", - "status": "released", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "11e2d7d3-d43a-4b5a-bf3e-136948efc023" - }, - { - "aliases": [ - "kce:K562_BAC_transfection_White_protocol" - ], - "attachment": "BACTransfectionProtocolK562Cells.pdf", - "award": "U54HG006996", - "description": "UChicago IGSB ENCODE K562 Transfection Protocol March 5, 2013", - "document_type": "transfection protocol", - "lab": "kevin-white", - "submitted_by": "eni.lectus@nullam.sed", - "status": "released", - "uuid": "048d1185-2502-4f0e-a043-bbc75b9dd915" - }, - { - "aliases": [ - "kce:bedMethyl.as" - ], - "attachment": "bedMethyl.txt", - "award": "ENCODE2", - "document_type": "file format specification", - "lab": "richard-myers", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "c9b6be80-2266-4af2-abbc-f5fc5e8ae5d8" - }, - { - "aliases": [ - "kce:C2C12_Wold_differentiation_protocol" - ], - "attachment": "C2C12_Wold_protocol.pdf", - "award": "ENCODE2-Mouse", - "document_type": "differentiation protocol", - "lab": "barbara-wold", - "submitted_by": "vitae.quis@mauris.aptent", - "uuid": "a5f5c35a-cdda-4a45-9742-22e69ff50c9c" - }, - { - "aliases": [ - "kce:C2C12_Wold_growth_protocol" - ], - "attachment": "C2C12_Wold_protocol.pdf", - "award": "ENCODE2-Mouse", - "document_type": "growth protocol", - "lab": "barbara-wold", - "submitted_by": "vitae.quis@mauris.aptent", - "uuid": "b42974fd-1490-4d51-bdcf-7db97a3e8fe0" - }, - { - "aliases": [ - "kce:pBACGK1.1_BAC_vector" - ], - "attachment": "CH17_pBACGK1.1n.png", - "award": "U54HG006996", - "description": "Vector pBACGK1.1 information and map retrieved from http://bacpac.chori.org/pbacgk11.htm on May 23, 2013.", - "document_type": "construct image", - "lab": "kevin-white", - "submitted_by": "eni.lectus@nullam.sed", - "urls": [ - "http://bacpac.chori.org/library.php?id=231", - "http://bacpac.chori.org/pbacgk11.htm" - ], - "uuid": "dcf15d5e-40aa-43bc-b81c-32c70c9afb01", - "status": "released" - }, - { - "aliases": [ - "kce:diffProtB_6hr_protocol" - ], - "attachment": "diffProtB_6hr_protocol.txt", - "award": "ENCODE2", - "document_type": "treatment protocol", - "lab": "encode2-project", - "submitted_by": "elementum.mus@dictumst.nostra", - "uuid": "e95b8f25-7b5b-4ce3-a351-b09d0c1eda8d" - }, - { - "aliases": [ - "kce:EPC_Stam_protocol" - ], - "attachment": "EPC_Stam_protocol.pdf", - "award": "ENCODE2-Mouse", - "description": "Isolation of mouse fetal liver cell subsets", - "document_type": "cell isolation protocol", - "lab": "john-stamatoyannopoulos", - "submitted_by": "blandit.orci@conubia.magna", - "uuid": "cd9aab06-e0cb-42fb-b47d-2a7dd8116e99" - }, - { - "aliases": [ - "kce:Heart_STL003_excision_protocol" - ], - "attachment": "Heart_STL003_excision_protocol.txt", - "award": "ENCODE2", - "description": "Heart_STL003 excision protocol", - "document_type": "excision protocol", - "lab": "thomas-gingeras", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "0b7105ae-a3f8-476c-a163-3821eb3da3da" - }, - { - "aliases": [ - "kce:Myers_Methyl450_protocol" - ], - "attachment": "human.wgEncodeHaibMethyl450.txt", - "award": "ENCODE2", - "description": "Generalized methods for the HAIB Methyl450 experiments from ENCODE2. Isolation of mouse fetal liver cell subsets. Heart_STL003 general protocol.", - "document_type": "general protocol", - "lab": "richard-myers", - "status": "released", - "submitted_by": "facilisi.tristique@potenti.vivamus", - "uuid": "71da87e2-92d0-418b-960b-0a30800172a0" - }, - { - "aliases": [ - "kce:K562_protocol" - ], - "attachment": "K562_protocol.pdf", - "award": "ENCODE2", - "document_type": "growth protocol", - "lab": "encode2-project", - "submitted_by": "elementum.mus@dictumst.nostra", - "uuid": "40792158-1613-47f4-ae3f-dc3400c097d3" - }, - { - "aliases": [ - "kce:Heart_STL003_general_protocol" - ], - "attachment": "LID48879.pdf", - "award": "ENCODE2", - "description": "Heart_STL003 general protocol", - "document_type": "general protocol", - "lab": "thomas-gingeras", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "bc505a2d-4afb-48f0-b8dd-77af9006c675" - }, - { - "aliases": [ - "kce:MCF-7_Crawford_growth_protocol" - ], - "attachment": "MCF-7_Crawford_protocol.pdf", - "award": "ENCODE2", - "description": "MCF-7 Cell Culture and +/- estrogen treatment", - "document_type": "growth protocol", - "lab": "gregory-crawford", - "submitted_by": "metus.donec@nisl.montes", - "uuid": "8f1a6855-0312-4027-8869-330e42a0b04a" - }, - { - "aliases": [ - "kce:MCF-7_Farnham_growth_protocol" - ], - "attachment": "MCF-7_Farnham_protocol.pdf", - "award": "ENCODE2", - "description": "MCF-7 Cell Culture and 4-hydroxytamoxifen treatment", - "document_type": "growth protocol", - "lab": "peggy-farnham", - "submitted_by": "taciti.vehicula@vitae.vivamus", - "uuid": "984071d4-9149-476a-b353-93592c6f48f3" - }, - { - "aliases": [ - "kce:MCF-7_Farnham_treatment_protocol" - ], - "attachment": "MCF-7_Farnham_protocol.pdf", - "award": "ENCODE2", - "description": "MCF-7 Cell Culture and 4-hydroxytamoxifen treatment", - "document_type": "treatment protocol", - "lab": "peggy-farnham", - "submitted_by": "taciti.vehicula@vitae.vivamus", - "uuid": "2897e1e0-a322-4579-86dd-d5e8cf4e6c24" - }, - { - "aliases": [ - "kce:Snyder_Histone_Mouse_protocol" - ], - "attachment": "mouse.wgEncodeSydhHist.txt", - "award": "ENCODE2-Mouse", - "description": "Generalized Methods for the SYDH Histone experiments in mouse.", - "document_type": "general protocol", - "lab": "michael-snyder", - "submitted_by": "amet.fusce@est.fermentum", - "uuid": "302689be-b110-40b6-8912-cc9d934b002e" - }, - { - "aliases": [ - "kce:Myers_Lab_ChIP-seq_Protocol_v042211" - ], - "attachment": "Myers_Lab_ChIP-seq_Protocol_v042211.pdf", - "award": "ENCODE2", - "document_type": "general protocol", - "lab": "richard-myers", - "submitted_by": "facilisi.tristique@potenti.vivamus", - "uuid": "df9dd0ec-c1cf-4391-a745-a933ab1af7a7" - }, - { - "aliases": [ - "kce:PanIsletD_Crawford_protocol" - ], - "attachment": "PanIsletD_Crawford_protocol.pdf", - "award": "ENCODE2", - "document_type": "other", - "lab": "gregory-crawford", - "submitted_by": "metus.donec@nisl.montes", - "uuid": "87a97c62-08b7-43a8-a277-7aa51eb33bce" - }, - { - "aliases": [ - "kce:SAEC_Stam_protocol" - ], - "attachment": "SAEC_Stam_protocol.pdf", - "award": "ENCODE2", - "document_type": "growth protocol", - "lab": "john-stamatoyannopoulos", - "submitted_by": "blandit.orci@conubia.magna", - "uuid": "19d5277e-b6b0-49dd-9349-146783bd0082" - }, - { - "aliases": [ - "kce:HAoSMC_PC_8121902.2P_general_protocol" - ], - "attachment": "SID38242.pdf", - "award": "ENCODE2", - "description": "PromoCell Normal Human Aortic Smooth Muscle Cells general protocol", - "document_type": "general protocol", - "lab": "thomas-gingeras", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "7aa32299-cc11-4f07-bdaa-a55de6f51a99" - }, - { - "aliases": [ - "kce:Gingeras_K562_long_polyA_RNA_evaluation_protocol_SID38806" - ], - "attachment": "SID38806.pdf", - "award": "U54HG007004", - "document_type": "general protocol", - "lab": "thomas-gingeras", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "e23a0ea7-a490-4d00-9e4f-876bea90b1f7" - }, - { - "aliases": [ - "kce:Gingeras_K562_long_polyA_RNA_evaluation_protocol_SID38807" - ], - "attachment": "SID38807.pdf", - "award": "U54HG007004", - "document_type": "general protocol", - "lab": "thomas-gingeras", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "197f27b2-76b8-4bc2-928f-0b33c3dfb7c7" - }, - { - "aliases": [ - "kce:Gingeras_K562_small_total_RNA_evaluation_protocol_SID38822" - ], - "attachment": "SID38822.pdf", - "award": "U54HG007004", - "description": "Specific library protocol from CSHL for RNA-seq on less than 200 base pairs, total RNA from K562 biosample ENCBS087RNA", - "document_type": "general protocol", - "lab": "thomas-gingeras", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "4fdeaa98-a4c7-4f44-9414-c55977f8369b" - }, - { - "aliases": [ - "kce:Gingeras_K562_small_total_RNA_evaluation_protocol_SID38823" - ], - "attachment": "SID38823.pdf", - "award": "U54HG007004", - "description": "Specific library protocol from CSHL for RNA-seq on less than 200 base pairs, total RNA from K562 biosample ENCBS088RNA", - "document_type": "general protocol", - "lab": "thomas-gingeras", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "f39f4b6e-cc13-45cf-993b-8d74781ba6d0" - }, - { - "aliases": [ - "kce:Ambion-NIST_Spikes_Corrected" - ], - "attachment": "Spikes.fixed.fasta.txt", - "award": "U54HG007004", - "document_type": "other", - "lab": "thomas-gingeras", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "f4974402-65a6-47fd-862e-9b226659d041" - }, - { - "aliases": [ - "kce:Stam_15_protocols" - ], - "attachment": "Stam_15_protocols.pdf", - "award": "ENCODE2", - "document_type": "growth protocol", - "lab": "john-stamatoyannopoulos", - "submitted_by": "blandit.orci@conubia.magna", - "uuid": "f704939d-1784-4856-9abd-434ca9336feb" - }, - { - "aliases": [ - "kce:Ambion-NIST_Spikes_Sequences_Concentrations" - ], - "attachment": "wgEncodeCshlSpikeinsConcentrations.txt", - "award": "ENCODE2", - "document_type": "other", - "lab": "thomas-gingeras", - "status": "released", - "submitted_by": "dignissim.euismod@amet.habitant", - "uuid": "34e684ee-8e9a-4b4e-9708-4a0bc5ae9811" - }, - { - "aliases": [ - "kce:ZhBTc4_Stam_protocol" - ], - "attachment": "ZhBTc4_Stam_protocol.pdf", - "award": "ENCODE2-Mouse", - "document_type": "growth protocol", - "lab": "john-stamatoyannopoulos", - "submitted_by": "blandit.orci@conubia.magna", - "uuid": "113719b2-929f-4fb9-b073-e6483b2edd40" - }, - { - "aliases": [ - "kce:pLKO1" - ], - "attachment": "pLKO1_vector.png", - "award": "ENCODE2", - "document_type": "construct image", - "lab": "gregory-crawford", - "submitted_by": "metus.donec@nisl.montes", - "uuid": "33d51ad0-62ba-11e3-949a-0800200c9a66" - }, - { - "aliases": [ - "kce:Antibody_characterization_standards_February_2014" - ], - "attachment": "Antibody_Characterization_ENCODE3_February2014.pdf", - "award": "U41HG006992", - "document_type": "standards document", - "lab": "j-michael-cherry", - "submitted_by": "duis.pede@nonummy.scelerisque", - "uuid": "bcb5f3c8-d5e9-40d2-805f-4274f940c36d" - }, - { - "aliases": [ - "kce:sample_strain_generation_protocol" - ], - "attachment": "sample_strain_generation_protocol.pdf", - "award": "U41HG007355", - "document_type": "strain generation protocol", - "lab": "robert-waterston", - "submitted_by": "uskuf.shyec@doton.danona", - "uuid": "30705939-d234-4aca-8379-cd355686fd48" - }, - { - "aliases": [ - "kce:Graveley_Group_RNA-Seq_Pipeline_02042013" - ], - "attachment": "Graveley_Group_RNA-Seq_Pipeline_02042013.pdf", - "award": "U41HG006992", - "document_type": "pipeline protocol", - "lab": "brenton-graveley", - "status": "released", - "submitted_by": "platea.a@volutpat.viverra", - "uuid": "6ab18a00-50aa-11e4-916c-0800200c9a66" - }, - { - "aliases": [ - "kce:GeneQuantificationPipeline" - ], - "attachment": "GeneQuantificationPipeline.pdf", - "award": "U41HG006992", - "document_type": "pipeline protocol", - "lab": "roderic-guigo", - "status": "released", - "submitted_by": "platea.a@volutpat.viverra", - "uuid": "d64ef6a0-5ae4-11e4-8ed6-0800200c9a66" - }, - { - "aliases": [ - "kce:ENCODE2_ChIP_seq_pipeline_diagram" - ], - "attachment": "ENCODE2_ChIP_seq_pipeline_diagram.pdf", - "award": "ENCODE2", - "document_type": "pipeline protocol", - "description": "ENCODE2 ChIP-seq pipeline", - "lab": "encode2-project", - "status": "released", - "submitted_by": "platea.a@volutpat.viverra", - "uuid": "c256d912-be84-4463-8e95-cef789e8d6ba" - }, - { - "aliases": [ - "kce:ENCODE2ChIP-seqpipelinespecifications" - ], - "attachment": "ENCODE2ChIP-seqpipelinespecifications.pdf", - "award": "ENCODE2", - "document_type": "pipeline protocol", - "lab": "encode2-project", - "status": "released", - "submitted_by": "platea.a@volutpat.viverra", - "uuid": "0f2f78fc-4675-4534-af7a-1c77e03c0cd3" - }, - { - "aliases": [ - "kce:iCLIP_pipeline_ENCODE.pdf" - ], - "attachment": "iCLIP_pipeline_ENCODE.pdf", - "award": "U54HG007005", - "document_type": "pipeline protocol", - "description": "iCLIP pipeline protocol", - "lab": "gene-yeo", - "status": "released", - "submitted_by": "platea.a@volutpat.viverra", - "uuid": "b87f5cec-882e-42a5-be82-5932a8ea6166" } + ] diff --git a/src/encoded/tests/data/inserts/fvp_a1v1.json b/src/encoded/tests/data/inserts/fvp_a1v1.json new file mode 100644 index 0000000000..61bf6c9f21 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a1v1.json @@ -0,0 +1,46 @@ +[{ + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "birthday": { + "BIRTHMO": 1, + "BIRTHYR": 1956 + }, + "SEX": "1 Male", + "LIVSIT": "1 Lives alone", + "LIVSITX": "test", + "INDEPEND": "1 Able to live independently", + "RESIDENC": "1 Single family residence", + "RESIDENX": "test", + "ZIP": "75000", + "MARISTAT": "1 Married", + "MARISTAX": "test", + "status": "released", + "uuid": "7661c152-b4a3-4765-b265-e648ae1b1390" +}, +{ + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "initials": "OK", + "birthday": { + "BIRTHMO": 1, + "BIRTHYR": 1956 + }, + "SEX": "1 Male", + "LIVSIT": "1 Lives alone", + "LIVSITX": "test", + "INDEPEND": "1 Able to live independently", + "RESIDENC": "1 Single family residence", + "RESIDENX": "test", + "ZIP": "75000", + "MARISTAT": "1 Married", + "MARISTAX": "test", + "status": "released", + "uuid": "9257f0d1-888f-4a9f-9550-2142c00fe47f" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a1v2.json b/src/encoded/tests/data/inserts/fvp_a1v2.json new file mode 100644 index 0000000000..df7ca2e3d2 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a1v2.json @@ -0,0 +1,46 @@ +[{ + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "birthday": { + "BIRTHMO": 1, + "BIRTHYR": 1956 + }, + "SEX": "1 Male", + "LIVSIT": "1 Lives alone", + "LIVSITX": "test", + "INDEPEND": "1 Able to live independently", + "RESIDENC": "1 Single family residence", + "RESIDENX": "test", + "ZIP": "75000", + "MARISTAT": "1 Married", + "MARISTAX": "test", + "status": "released", + "uuid": "aafbfa0d-6822-4a26-966d-52fc0b3d76c4" +}, +{ + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "initials": "OK", + "birthday": { + "BIRTHMO": 1, + "BIRTHYR": 1956 + }, + "SEX": "1 Male", + "LIVSIT": "1 Lives alone", + "LIVSITX": "test", + "INDEPEND": "1 Able to live independently", + "RESIDENC": "1 Single family residence", + "RESIDENX": "test", + "ZIP": "75000", + "MARISTAT": "1 Married", + "MARISTAX": "test", + "status": "released", + "uuid": "1d9ad0de-d072-464b-9197-e4502ca9223d" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a1v3.json b/src/encoded/tests/data/inserts/fvp_a1v3.json new file mode 100644 index 0000000000..00754f8e1e --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a1v3.json @@ -0,0 +1,230 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1980-05-23", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "fu_birthmo": 8, + "fu_birthyr": 1928, + "fu_maristat": "2 Widowed", + "fu_sex": "2 Female", + "fu_livsitua": "1 Lives alone", + "fu_independ": "1 Able to live independently", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "752", + "form_status": "Complete", + "status": "released", + "uuid": "4ccbb5c2-2230-484b-be1e-d87f6b98ff10" + }, + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1981-05-24", + "visitnum": "2", + "initials": "JAR", + "header_complete": "Complete", + "fu_birthmo": 8, + "fu_birthyr": 1928, + "fu_maristat": "2 Widowed", + "fu_sex": "2 Female", + "fu_livsitua": "1 Lives alone", + "fu_independ": "1 Able to live independently", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "751", + "form_status": "Complete", + "status": "released", + "uuid": "91efc204-aec6-4bcf-be71-c85fea325ee6" + }, + { + "patient": "000001", + "adcid": "25 University of Texas Southwestern", + "visdate": "1982-05-20", + "visitnum": "3", + "initials": "JAR", + "header_complete": "Complete", + "fu_birthmo": 8, + "fu_birthyr": 1928, + "fu_maristat": "2 Widowed", + "fu_sex": "2 Female", + "fu_livsitua": "1 Lives alone", + "fu_independ": "1 Able to live independently", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "751", + "form_status": "Complete", + "status": "released", + "uuid": "f82da448-79d7-4e0d-a45d-5221dd82bc70" + }, + { + "patient": "000001", + "adcid": "25 University of Texas Southwestern", + "visdate": "1983-05-20", + "visitnum": "4", + "initials": "JAR", + "header_complete": "Complete", + "fu_birthmo": 8, + "fu_birthyr": 1928, + "fu_maristat": "2 Widowed", + "fu_sex": "2 Female", + "fu_livsitua": "1 Lives alone", + "fu_independ": "1 Able to live independently", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "751", + "form_status": "Complete", + "status": "released", + "uuid": "43e6853a-b964-480b-b25c-0124d77d80ca" + }, + { + "patient": "000001", + "adcid": "25 University of Texas Southwestern", + "visdate": "1984-05-25", + "visitnum": "5", + "initials": "JAR", + "header_complete": "Complete", + "fu_birthmo": 8, + "fu_birthyr": 1928, + "fu_maristat": "2 Widowed", + "fu_sex": "2 Female", + "fu_livsitua": "1 Lives alone", + "fu_independ": "1 Able to live independently", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "751", + "status": "released", + "form_status": "Complete", + "uuid": "af63f271-b225-42d0-9eca-f93ec8d5cea7" + }, + { + "patient": "000010", + "adcid": "25 University of Texas Southwestern", + "visdate": "1987-06-25", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "fu_birthmo": 10, + "fu_birthyr": 1955, + "fu_maristat": "1 Married", + "fu_sex": "1 Male", + "fu_livsitua": "2 Lives with one other person: a spouse or partner", + "fu_independ": "1 Able to live independently", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "754", + "status": "released", + "form_status": "Complete", + "uuid": "a8654d87-951a-41db-831d-ef3c37090a72" + }, + { + "patient": "000010", + "adcid": "25 University of Texas Southwestern", + "visdate": "1988-06-28", + "visitnum": "2", + "initials": "JAR", + "header_complete": "Complete", + "fu_birthmo": 10, + "fu_birthyr": 1955, + "fu_maristat": "1 Married", + "fu_sex": "1 Male", + "fu_livsitua": "2 Lives with one other person: a spouse or partner", + "fu_independ": "1 Able to live independently", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "754", + "form_status": "Complete", + "status": "released", + "uuid": "f124b392-4e6c-493c-ab08-5fa089f7f94a" + }, + { + "patient": "000010", + "adcid": "25 University of Texas Southwestern", + "visdate": "1989-06-29", + "visitnum": "3", + "initials": "JAR", + "header_complete": "Complete", + "fu_birthmo": 10, + "fu_birthyr": 1955, + "fu_maristat": "1 Married", + "fu_sex": "1 Male", + "fu_livsitua": "2 Lives with one other person: a spouse or partner", + "fu_independ": "1 Able to live independently", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "754", + "form_status": "Complete", + "status": "released", + "uuid": "a52a9659-fe56-4d2f-a653-fb6f63dd9500" + }, + { + "patient": "000010", + "adcid": "25 University of Texas Southwestern", + "visdate": "1990-07-06", + "visitnum": "4", + "initials": "JAR", + "header_complete": "Complete", + "fu_birthmo": 10, + "fu_birthyr": 1955, + "fu_maristat": "1 Married", + "fu_sex": "1 Male", + "fu_livsitua": "2 Lives with one other person: a spouse or partner", + "fu_independ": "1 Able to live independently", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "754", + "form_status": "Complete", + "status": "released", + "uuid": "a3705d63-ba74-4113-8a68-f798f609615f" + }, + { + "patient": "000013", + "adcid": "25 University of Texas Southwestern", + "visdate": "1993-02-16", + "visitnum": "1", + "initials": "KMC", + "header_complete": "Complete", + "fu_birthmo": 6, + "fu_birthyr": 1930, + "fu_maristat": "2 Widowed", + "fu_sex": "1 Male", + "fu_livsitua": "3 Lives with one other person: a relative, friend, or roomate", + "fu_independ": "3 Requires some assistance with basic activities", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "766", + "form_status": "Complete", + "status": "released", + "uuid": "75fd609a-8275-40de-981f-36ed684eb249" + }, + { + "patient": "000013", + "adcid": "25 University of Texas Southwestern", + "visdate": "1994-02-18", + "visitnum": "2", + "initials": "KMC", + "header_complete": "Complete", + "fu_birthmo": 6, + "fu_birthyr": 1930, + "fu_maristat": "2 Widowed", + "fu_sex": "1 Male", + "fu_livsitua": "3 Lives with one other person: a relative, friend, or roomate", + "fu_independ": "3 Requires some assistance with basic activities", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "766", + "form_status": "Complete", + "status": "released", + "uuid": "6b9a390c-6a23-4cba-964c-8f6535bc34e7" + }, + { + "patient": "000013", + "adcid": "25 University of Texas Southwestern", + "visdate": "1995-02-25", + "visitnum": "3", + "initials": "KMC", + "header_complete": "Complete", + "fu_birthmo": 6, + "fu_birthyr": 1930, + "fu_maristat": "2 Widowed", + "fu_sex": "1 Male", + "fu_livsitua": "3 Lives with one other person: a relative, friend, or roomate", + "fu_independ": "3 Requires some assistance with basic activities", + "fu_residenc": "1 Single-, or multi-family private residence (apartment, condo, house)", + "fu_zip": "766", + "form_status": "Complete", + "status": "released", + "uuid": "151a18aa-dc30-4cf3-aaf2-efa6c2298e60" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a2v1.json b/src/encoded/tests/data/inserts/fvp_a2v1.json new file mode 100644 index 0000000000..dbc928ff1d --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a2v1.json @@ -0,0 +1,48 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2005-02-01", + "visitnum": "1", + "initials": "OK", + "fu_inbirmo": "1", + "fu_inbiryr": "1956", + "fu_insex": "1 Male", + "fu_newinf": "0 No (If No, SKIP TO QUESTION 9)", + "fu_inhisp": "0 No (If No, SKIP TO QUESTION 5)", + "fu_inrace": "1 White", + "fu_inracex": "test", + "fu_ineduc": 1, + "fu_inrelto": "2 Child (by blood or through marriage or adoption)", + "fu_INRELTOX": "test", + "fu_inlivwth": "0 No", + "fu_invisits": "1 Daily", + "fu_inrely": "0 No", + "status": "released", + "uuid": "59ea2b2a-0392-4b6d-af08-9c4d01419af8" + }, + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-02-04", + "visitnum": "2", + "initials": "OK", + "fu_inbirmo": "1", + "fu_inbiryr": "1956", + "fu_insex": "1 Male", + "fu_newinf": "0 No (If No, SKIP TO QUESTION 9)", + "fu_inhisp": "0 No (If No, SKIP TO QUESTION 5)", + "fu_inrace": "1 White", + "fu_inracex": "test", + "fu_ineduc": 1, + "fu_inrelto": "2 Child (by blood or through marriage or adoption)", + "fu_INRELTOX": "test", + "fu_inlivwth": "0 No", + "fu_invisits": "1 Daily", + "fu_inrely": "0 No", + "status": "released", + "uuid": "8888dd88-3db9-4655-9b3a-fd9bd87d8230" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a2v2.json b/src/encoded/tests/data/inserts/fvp_a2v2.json new file mode 100644 index 0000000000..e563bc51f9 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a2v2.json @@ -0,0 +1,116 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_inbirmo": "2", + "fu_inbiryr": "1940", + "fu_insex": "2 Female", + "fu_newinf": "1 Yes", + "fu_inhisp": "0 No (If No, SKIP TO QUESTION 5)", + "fu_inrace": "1 White", + "fu_inrasec": "50 Other (specify)", + "fu_inrasecx": "''", + "fu_inrater": "88 None Reported", + "fu_ineduc": 18, + "fu_inrelto": "4 Other relative (by blood or through marriage or adoption)", + "fu_inlivwth": "0 No", + "fu_invisits": "3 Weekly", + "fu_incalls": "3 Weekly", + "fu_inrely": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "310c5417-d2e5-4134-8f63-a5209b72d150" + }, + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_inbirmo": "2", + "fu_inbiryr": "1940", + "fu_insex": "2 Female", + "fu_newinf": "0 No (If No, SKIP TO QUESTION 9)", + "fu_inrelto": "4 Other relative (by blood or through marriage or adoption)", + "fu_inlivwth": "1 Yes (If Yes, SKIP TO QUESTION 11)", + "fu_inrely": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "dd8dde6f-4731-4cdc-9999-8ed5795a3789" + }, + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2003-03-03", + "visitnum": "3", + "header_complete": "Complete", + "initials": "OK", + "fu_inbirmo": "02", + "fu_inbiryr": "1945", + "fu_insex": "2 Female", + "fu_newinf": "1 Yes", + "fu_inhisp": "1 Yes", + "fu_inhispor": "2 Puerto Rican", + "fu_inrace": "3 American Indian or Alaska Native", + "fu_inrasec": "50 Other (specify)", + "fu_inrasecx": "Secret", + "fu_inrater": "88 None Reported", + "fu_ineduc": 12, + "fu_inrelto": "4 Other relative (by blood or through marriage or adoption)", + "fu_inlivwth": "0 No", + "fu_invisits": "5 Monthly", + "fu_incalls": "5 Monthly", + "fu_inrely": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "dc86a27e-9c45-4218-a6c5-8ec6a0e9defd" + }, + { + "patient": "000010", + "formver": "2", + "adcid": "33 Arizona ADC", + "visdate": "2010-01-04", + "visitnum": "1", + "header_complete": "Complete", + "initials": "DT", + "fu_inbirmo": "03", + "fu_inbiryr": "1980", + "fu_insex": "1 Male", + "fu_newinf": "0 No (If No, SKIP TO QUESTION 9)", + "fu_inrelto": "2 Child (by blood or through marriage or adoption)", + "fu_inlivwth": "1 Yes (If Yes, SKIP TO QUESTION 11)", + "fu_inrely": "1 Yes", + "form_status": "Complete", + "status": "released", + "uuid": "72d61547-6b81-42e9-b290-a88645da4fcc" + }, + { + "patient": "000010", + "formver": "2", + "adcid": "32 Stanford University", + "visdate": "2011-02-01", + "visitnum": "2", + "header_complete": "Complete", + "initials": "DT", + "fu_inbirmo": "03", + "fu_inbiryr": "1980", + "fu_insex": "1 Male", + "fu_newinf": "0 No (If No, SKIP TO QUESTION 9)", + "fu_inrelto": "2 Child (by blood or through marriage or adoption)", + "fu_inlivwth": "0 No", + "fu_invisits": "5 Monthly", + "fu_incalls": "5 Monthly", + "fu_inrely": "1 Yes", + "form_status": "Complete", + "status": "released", + "uuid": "d9bc2e5c-f1d9-4b1f-b978-229505484625" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a2v3.json b/src/encoded/tests/data/inserts/fvp_a2v3.json new file mode 100644 index 0000000000..73e548f791 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a2v3.json @@ -0,0 +1,122 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_inbirmo": "2", + "fu_inbiryr": "1940", + "fu_insex": "2 Female", + "fu_newinf": "1 Yes", + "fu_inhisp": "0 No (If No, SKIP TO QUESTION 5)", + "fu_inrace": "1 White", + "fu_inrasec": "50 Other (specify)", + "fu_inrasecx": "''", + "fu_inrater": "88 None Reported", + "fu_ineduc": 18, + "fu_inrelto": "4 Other relative (by blood or through marriage or adoption)", + "fu_inknown": "999", + "fu_inlivwth": "0 No", + "fu_invisits": "3 Weekly", + "fu_incalls": "3 Weekly", + "fu_inrely": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "cd568cd1-7c3e-45fc-bb09-f9c209cd5c84" + }, + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_inbirmo": "2", + "fu_inbiryr": "1940", + "fu_insex": "2 Female", + "fu_newinf": "0 No (If No, SKIP TO QUESTION 9)", + "fu_inrelto": "4 Other relative (by blood or through marriage or adoption)", + "fu_inknown": "60", + "fu_inlivwth": "1 Yes (If Yes, SKIP TO QUESTION 11)", + "fu_inrely": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "9e72fbe5-2c24-41a0-97cf-cc35d40d3c34" + }, + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2003-03-03", + "visitnum": "3", + "header_complete": "Complete", + "initials": "OK", + "fu_inbirmo": "02", + "fu_inbiryr": "1945", + "fu_insex": "2 Female", + "fu_newinf": "1 Yes", + "fu_inhisp": "1 Yes", + "fu_inhispor": "2 Puerto Rican", + + "fu_inrace": "3 American Indian or Alaska Native", + "fu_inrasec": "50 Other (specify)", + "fu_inrasecx": "Secret", + "fu_inrater": "88 None Reported", + "fu_ineduc": 12, + "fu_inrelto": "4 Other relative (by blood or through marriage or adoption)", + "fu_inknown": "55", + "fu_inlivwth": "0 No", + "fu_invisits": "5 Monthly", + "fu_incalls": "5 Monthly", + "fu_inrely": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "b0e20adc-65ac-484e-91e3-27a137a6080a" + }, + { + "patient": "000010", + "formver": "3", + "adcid": "33 Arizona ADC", + "visdate": "2010-01-04", + "visitnum": "1", + "header_complete": "Complete", + "initials": "DT", + "fu_inbirmo": "03", + "fu_inbiryr": "1980", + "fu_insex": "1 Male", + "fu_newinf": "0 No (If No, SKIP TO QUESTION 9)", + "fu_inrelto": "2 Child (by blood or through marriage or adoption)", + "fu_inknown": "40", + "fu_inlivwth": "1 Yes (If Yes, SKIP TO QUESTION 11)", + "fu_inrely": "1 Yes", + "form_status": "Complete", + "status": "released", + "uuid": "95ea8940-c073-42d2-896b-ba2e2ed19f2a" + }, + { + "patient": "000010", + "formver": "3", + "adcid": "32 Stanford University", + "visdate": "2011-02-01", + "visitnum": "2", + "header_complete": "Complete", + "initials": "DT", + "fu_inbirmo": "03", + "fu_inbiryr": "1980", + "fu_insex": "1 Male", + "fu_newinf": "0 No (If No, SKIP TO QUESTION 9)", + "fu_inrelto": "2 Child (by blood or through marriage or adoption)", + "fu_inknown": "42", + "fu_inlivwth": "0 No", + "fu_invisits": "5 Monthly", + "fu_incalls": "5 Monthly", + "fu_inrely": "1 Yes", + "form_status": "Complete", + "status": "released", + "uuid": "c4268222-d8f4-42e1-9340-a5bcb9e208bb" + } +] diff --git a/src/encoded/tests/data/inserts/fvp_a3v1.json b/src/encoded/tests/data/inserts/fvp_a3v1.json new file mode 100644 index 0000000000..92d6413f10 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a3v1.json @@ -0,0 +1,28 @@ +[{ + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-02-01", + "visitnum": "1", + "initials": "OK", + "A3CHG":false, + "parents": { + "PARCHG":false, + "MOMDEM": "1 Yes", + "MOMONSET": "68", + "MOMAGE": "80", + "DADDEM": "0 No" + }, + "siblings": { + "SIBCHG":true + + }, + "children": { + "KIDCHG":true + }, + "other_relatives": { + "RELCHG":true + }, + "status": "released", + "uuid": "0b78bc79-b06c-4ece-81a0-edfa5f20ddd0" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a3v2.json b/src/encoded/tests/data/inserts/fvp_a3v2.json new file mode 100644 index 0000000000..807fdb32de --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a3v2.json @@ -0,0 +1,107 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "A3CHG": false, + "parents": { + "PARCHG": true, + "mother": { + "MOMYOB": "1921", + "MOMLIV": "9 Unknown", + "MOMYOD": "9999", + "MOMDEM": "1 Yes", + "MOMONSET": "999" + }, + "father": { + "DADYOB": "1920", + "DADLIV": "0 No", + "DADYOD": "2019", + "DADDEM": "0 No", + "DADONSET": "999" + } + }, + "siblings": { + "SIBCHG": false, + "sibs": "1", + "sib1": { + "sib1yob": "1923", + "sib1LIV": "0 No", + "sib1yod": "1968", + "sib1dem": "0 No", + "sib1ons": "999" + } + }, + "children": { + "KIDCHG": false, + "kids": "1", + "kid1": { + "kid1yob": "1968", + "kid1LIV": "1 Yes", + "kid1dem": "0 No" + } + }, + "other_relatives": { + "RELCHG": false, + "RELSDEM": "0" + }, + "status": "released", + "uuid": "75106d42-7c4a-4a8b-85ae-1d8b64e63a7e" + }, + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-04", + "visitnum": "2", + "initials": "OK", + "A3CHG": false, + "parents": { + "PARCHG": true, + "mother": { + "MOMYOB": "1921", + "MOMLIV": "9 Unknown", + "MOMYOD": "9999", + "MOMDEM": "1 Yes", + "MOMONSET": "999" + }, + "father": { + "DADYOB": "1920", + "DADLIV": "0 No", + "DADYOD": "2019", + "DADDEM": "0 No", + "DADONSET": "999" + } + }, + "siblings": { + "SIBCHG": false, + "sibs": "1", + "sib1": { + "sib1yob": "1923", + "sib1LIV": "0 No", + "sib1yod": "1968", + "sib1dem": "0 No", + "sib1ons": "999" + } + }, + "children": { + "KIDCHG": false, + "kids": "1", + "kid1": { + "kid1yob": "1968", + "kid1LIV": "1 Yes", + "kid1dem": "0 No" + } + }, + "other_relatives": { + "RELCHG": false, + "RELSDEM": "0" + }, + + "status": "released", + "uuid": "4f3d2541-b344-471b-9ed7-30f6667a6193" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a3v3.json b/src/encoded/tests/data/inserts/fvp_a3v3.json new file mode 100644 index 0000000000..77d9a4d780 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a3v3.json @@ -0,0 +1,78 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_nwinfmut": "1 Yes", + "fu_fadmut": "1 Yes, APP", + "fu_fadmutx": "test", + "fu_fadmuso": "2 Commercial test documentation", + "fu_fadmusox": "test", + "fu_fftdmut": "1 Yes, MAPT", + "fu_fftdmutx": "test", + "fu_fftdmuso": "2 Commercial test documentation", + "fu_fftdmusx": "test", + "fu_fothmut": "1 Yes (specify)", + "fu_fothmutx": "test", + "fu_fothmuso": "1 Family report (no test documentation available)", + "fu_fothmusx": "test", + "fu_notes_a3": { + "fu_nwinfpar": "0 No (SKIP TO QUESTION 6)" + }, + "fu_note_a3_2": { + "fu_full_siblings": { + "fu_sibs": "3", + "fu_nwinfsib": "0 No (SKIP TO QUESTION 7)" + }, + "fu_biological_children": { + "fu_kids": "3", + "fu_nwinfkid": "0 No (END FORM HERE)" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "296169ca-ab53-4f44-a12d-c8d1ce9e1529" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_nwinfmut": "1 Yes", + "fu_fadmut": "1 Yes, APP", + "fu_fadmutx": "test", + "fu_fadmuso": "2 Commercial test documentation", + "fu_fadmusox": "test", + "fu_fftdmut": "1 Yes, MAPT", + "fu_fftdmutx": "test", + "fu_fftdmuso": "2 Commercial test documentation", + "fu_fftdmusx": "test", + "fu_fothmut": "1 Yes (specify)", + "fu_fothmutx": "test", + "fu_fothmuso": "1 Family report (no test documentation available)", + "fu_fothmusx": "test", + "fu_notes_a3": { + "fu_nwinfpar": "0 No (SKIP TO QUESTION 6)" + }, + "fu_note_a3_2": { + "fu_full_siblings": { + "fu_sibs": "3", + "fu_nwinfsib": "0 No (SKIP TO QUESTION 7)" + }, + "fu_biological_children": { + "fu_kids": "3", + "fu_nwinfkid": "0 No (END FORM HERE)" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "7a630911-41be-4326-99f3-972a63c7054a" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a4v1.json b/src/encoded/tests/data/inserts/fvp_a4v1.json new file mode 100644 index 0000000000..17790cf1d6 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a4v1.json @@ -0,0 +1,31 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-02-01", + "visitnum": "1", + "initials": "OK", + "PMEDS": "1 Yes", + "PMA": "Advil", + "1a_medi_strength": { + "PMAS": 99999, + "PMASU": "1 µg" + }, + "1a_frequency": { + "PMAF": 10, + "PMAFU": "1 daily" + }, + "1a_pre_prn": { + "PMAP": "0 No" + }, + "1a_prn_frequency": { + "PMAPF": 2, + "PMAPFU": "1 daily" + }, + "NMEDS": "0 No", + "VITASUPS": "0 No", + + "status": "released", + "uuid": "91545e5a-4efd-46a6-8cad-c592b6fac26f" + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a4v2.json b/src/encoded/tests/data/inserts/fvp_a4v2.json new file mode 100644 index 0000000000..59142da417 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a4v2.json @@ -0,0 +1,52 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_anymeds": "1 Yes", + "fu_drugid_1": "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "fu_drugid_2": "d03428 acetaminophen - HYDROcodone (Vicodin)", + "fu_drugid_3": "d00051 Adalat", + "fu_drugid_4": "d00015 Advil", + "fu_not_listed_drugs": { + "fu_drugid_31": "test", + "fu_drug_name_31": "test", + "fu_drugid_32": "test-test", + "fu_drug_name_32": "test-test", + "fu_drugid_33": "test-test-test", + "fu_drug_name_33": "test-test-test" + }, + "form_status": "Complete", + "status": "released", + "uuid": "a184742c-b939-4a51-95f2-d49a18167e57" + }, + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_anymeds": "1 Yes", + "fu_drugid_1": "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "fu_drugid_2": "d03428 acetaminophen - HYDROcodone (Vicodin)", + "fu_drugid_3": "d00051 Adalat", + "fu_drugid_4": "d00015 Advil", + "fu_not_listed_drugs": { + "fu_drugid_31": "test", + "fu_drug_name_31": "test", + "fu_drugid_32": "test-test", + "fu_drug_name_32": "test-test", + "fu_drugid_33": "test-test-test", + "fu_drug_name_33": "test-test-test" + }, + "form_status": "Complete", + "status": "released", + "uuid": "c5a71acd-37b9-4d6c-96b5-8dbab787773f" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a4v3.json b/src/encoded/tests/data/inserts/fvp_a4v3.json new file mode 100644 index 0000000000..11b8694108 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a4v3.json @@ -0,0 +1,52 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_anymeds": "1 Yes", + "fu_drugid_1": "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "fu_drugid_2": "d03428 acetaminophen - HYDROcodone (Vicodin)", + "fu_drugid_3": "d00051 Adalat", + "fu_drugid_4": "d00015 Advil", + "fu_not_listed_drugs": { + "fu_drugid_31": "test", + "fu_drug_name_31": "test", + "fu_drugid_32": "test-test", + "fu_drug_name_32": "test-test", + "fu_drugid_33": "test-test-test", + "fu_drug_name_33": "test-test-test" + }, + "form_status": "Complete", + "status": "released", + "uuid": "67e5bf73-f2eb-4f04-8968-cf326d200564" + }, + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_anymeds": "1 Yes", + "fu_drugid_1": "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "fu_drugid_2": "d03428 acetaminophen - HYDROcodone (Vicodin)", + "fu_drugid_3": "d00051 Adalat", + "fu_drugid_4": "d00015 Advil", + "fu_not_listed_drugs": { + "fu_drugid_31": "test", + "fu_drug_name_31": "test", + "fu_drugid_32": "test-test", + "fu_drug_name_32": "test-test", + "fu_drugid_33": "test-test-test", + "fu_drug_name_33": "test-test-test" + }, + "form_status": "Complete", + "status": "released", + "uuid": "9f4e0198-5205-4994-9713-5f9dfd1d1757" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a5v1.json b/src/encoded/tests/data/inserts/fvp_a5v1.json new file mode 100644 index 0000000000..3cfd3fcf24 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a5v1.json @@ -0,0 +1,168 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2003-02-01", + "visitnum": "1", + "initials": "OK", + "card_dise": { + "CVHATT": "0 Absent", + "CVAFIB": "1 Recent/Active", + "CVANGIO": "2 Remote/Inactive", + "CVBYPASS": "9 Unknown", + "CVPACE": "0 Absent", + "CVCHF": "1 Recent/Active", + "CVOTHR": "2 Remote/Inactive", + "CVOTHRX": "test" + }, + "cere_dise": { + "CBSTROKE": "0 Absent", + "STROK1YR": "Test", + "STROK2YR": "Test", + "STROK3YR": "Test", + "STROK4YR": "Test", + "STROK5YR": "Test", + "STROK6YR": "Test", + "CBTIA": "1 Recent/Active", + "TIA1YR": "Test", + "TIA2YR": "Test", + "TIA3YR": "Test", + "TIA4YR": "Test", + "TIA5YR": "Test", + "TIA6YR": "Test", + "CBOTHR": "2 Remote/Inactive", + "CBOTHRX": "Test" + }, + "park_dise": { + "PD": "0 Absent", + "PDYR": "Test", + "PDOTHR": "1 Recent/Active", + "PDOTHRYR": "test" + }, + "other_neur_cond": { + "SEIZURES": "0 Absent", + "TRAUMBRF": "1 Recent/Active", + "TRAUMEXT": "2 Remote/Inactive", + "TRAUMCHR": "9 Unknown", + "NCOTHR": "0 Absent", + "NCOTHRX": "test" + }, + "medi_cond": { + "HYPERTEN": "0 Absent", + "HYPERCHO": "1 Recent/Active", + "DIABETES": "2 Remote/Inactive", + "B12DEF": "9 Unknown", + "THYROID": "0 Absent", + "INCONTU": "0 Absent", + "INCONTF": "1 Recent/Active" + }, + "depr": { + "DEP2YRS": "0 No", + "DEPOTHR": "1 Yes" + }, + "sub_abuse_and_psyc": { + "alcohol": { + "ALCOHOL": "0 Absent" + }, + "cigarette": { + "TOBAC30": "0 No", + "TOBAC100": "1 Yes", + "SMOKYRS": "test", + "PACKSPER": "1 1 cigarette – < ½ pack", + "QUITSMOK": "test" + }, + "other_subs": { + "ABUSOTHR": "0 Absent", + "ABUSX": "test" + }, + "PSYCDIS": "0 Absent", + "PSYCDISX": "test" + }, + "status": "released", + "uuid": "9de9849f-7b31-4348-a5c4-958ff20e148e" + }, + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2004-02-04", + "visitnum": "2", + "initials": "OK", + "card_dise": { + "CVHATT": "0 Absent", + "CVAFIB": "1 Recent/Active", + "CVANGIO": "2 Remote/Inactive", + "CVBYPASS": "9 Unknown", + "CVPACE": "0 Absent", + "CVCHF": "1 Recent/Active", + "CVOTHR": "2 Remote/Inactive", + "CVOTHRX": "test" + }, + "cere_dise": { + "CBSTROKE": "0 Absent", + "STROK1YR": "Test", + "STROK2YR": "Test", + "STROK3YR": "Test", + "STROK4YR": "Test", + "STROK5YR": "Test", + "STROK6YR": "Test", + "CBTIA": "1 Recent/Active", + "TIA1YR": "Test", + "TIA2YR": "Test", + "TIA3YR": "Test", + "TIA4YR": "Test", + "TIA5YR": "Test", + "TIA6YR": "Test", + "CBOTHR": "2 Remote/Inactive", + "CBOTHRX": "Test" + }, + "park_dise": { + "PD": "0 Absent", + "PDYR": "Test", + "PDOTHR": "1 Recent/Active", + "PDOTHRYR": "test" + }, + "other_neur_cond": { + "SEIZURES": "0 Absent", + "TRAUMBRF": "1 Recent/Active", + "TRAUMEXT": "2 Remote/Inactive", + "TRAUMCHR": "9 Unknown", + "NCOTHR": "0 Absent", + "NCOTHRX": "test" + }, + "medi_cond": { + "HYPERTEN": "0 Absent", + "HYPERCHO": "1 Recent/Active", + "DIABETES": "2 Remote/Inactive", + "B12DEF": "9 Unknown", + "THYROID": "0 Absent", + "INCONTU": "0 Absent", + "INCONTF": "1 Recent/Active" + }, + "depr": { + "DEP2YRS": "0 No", + "DEPOTHR": "1 Yes" + }, + "sub_abuse_and_psyc": { + "alcohol": { + "ALCOHOL": "0 Absent" + }, + "cigarette": { + "TOBAC30": "0 No", + "TOBAC100": "1 Yes", + "SMOKYRS": "test", + "PACKSPER": "1 1 cigarette – < ½ pack", + "QUITSMOK": "test" + }, + "other_subs": { + "ABUSOTHR": "0 Absent", + "ABUSX": "test" + }, + "PSYCDIS": "0 Absent", + "PSYCDISX": "test" + }, + "status": "released", + "uuid": "f5cab2fd-5e9a-437f-86c9-c0579e17fcd1" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_a5v2.json b/src/encoded/tests/data/inserts/fvp_a5v2.json new file mode 100644 index 0000000000..3fd3043884 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_a5v2.json @@ -0,0 +1,168 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2003-02-01", + "visitnum": "1", + "initials": "OK", + "card_dise": { + "CVHATT": "0 Absent", + "CVAFIB": "1 Recent/Active", + "CVANGIO": "2 Remote/Inactive", + "CVBYPASS": "9 Unknown", + "CVPACE": "0 Absent", + "CVCHF": "1 Recent/Active", + "CVOTHR": "2 Remote/Inactive", + "CVOTHRX": "test" + }, + "cere_dise": { + "CBSTROKE": "0 Absent", + "STROK1YR": "Test", + "STROK2YR": "Test", + "STROK3YR": "Test", + "STROK4YR": "Test", + "STROK5YR": "Test", + "STROK6YR": "Test", + "CBTIA": "1 Recent/Active", + "TIA1YR": "Test", + "TIA2YR": "Test", + "TIA3YR": "Test", + "TIA4YR": "Test", + "TIA5YR": "Test", + "TIA6YR": "Test", + "CBOTHR": "2 Remote/Inactive", + "CBOTHRX": "Test" + }, + "park_dise": { + "PD": "0 Absent", + "PDYR": "Test", + "PDOTHR": "1 Recent/Active", + "PDOTHRYR": "test" + }, + "other_neur_cond": { + "SEIZURES": "0 Absent", + "TRAUMBRF": "1 Recent/Active", + "TRAUMEXT": "2 Remote/Inactive", + "TRAUMCHR": "9 Unknown", + "NCOTHR": "0 Absent", + "NCOTHRX": "test" + }, + "medi_cond": { + "HYPERTEN": "0 Absent", + "HYPERCHO": "1 Recent/Active", + "DIABETES": "2 Remote/Inactive", + "B12DEF": "9 Unknown", + "THYROID": "0 Absent", + "INCONTU": "0 Absent", + "INCONTF": "1 Recent/Active" + }, + "depr": { + "DEP2YRS": "0 No", + "DEPOTHR": "1 Yes" + }, + "sub_abuse_and_psyc": { + "alcohol": { + "ALCOHOL": "0 Absent" + }, + "cigarette": { + "TOBAC30": "0 No", + "TOBAC100": "1 Yes", + "SMOKYRS": "test", + "PACKSPER": "1 1 cigarette – < ½ pack", + "QUITSMOK": "test" + }, + "other_subs": { + "ABUSOTHR": "0 Absent", + "ABUSX": "test" + }, + "PSYCDIS": "0 Absent", + "PSYCDISX": "test" + }, + "status": "released", + "uuid": "9b68ca40-dc3d-43ea-834d-4b378ac03cc4" + }, + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2004-02-04", + "visitnum": "2", + "initials": "OK", + "card_dise": { + "CVHATT": "0 Absent", + "CVAFIB": "1 Recent/Active", + "CVANGIO": "2 Remote/Inactive", + "CVBYPASS": "9 Unknown", + "CVPACE": "0 Absent", + "CVCHF": "1 Recent/Active", + "CVOTHR": "2 Remote/Inactive", + "CVOTHRX": "test" + }, + "cere_dise": { + "CBSTROKE": "0 Absent", + "STROK1YR": "Test", + "STROK2YR": "Test", + "STROK3YR": "Test", + "STROK4YR": "Test", + "STROK5YR": "Test", + "STROK6YR": "Test", + "CBTIA": "1 Recent/Active", + "TIA1YR": "Test", + "TIA2YR": "Test", + "TIA3YR": "Test", + "TIA4YR": "Test", + "TIA5YR": "Test", + "TIA6YR": "Test", + "CBOTHR": "2 Remote/Inactive", + "CBOTHRX": "Test" + }, + "park_dise": { + "PD": "0 Absent", + "PDYR": "Test", + "PDOTHR": "1 Recent/Active", + "PDOTHRYR": "test" + }, + "other_neur_cond": { + "SEIZURES": "0 Absent", + "TRAUMBRF": "1 Recent/Active", + "TRAUMEXT": "2 Remote/Inactive", + "TRAUMCHR": "9 Unknown", + "NCOTHR": "0 Absent", + "NCOTHRX": "test" + }, + "medi_cond": { + "HYPERTEN": "0 Absent", + "HYPERCHO": "1 Recent/Active", + "DIABETES": "2 Remote/Inactive", + "B12DEF": "9 Unknown", + "THYROID": "0 Absent", + "INCONTU": "0 Absent", + "INCONTF": "1 Recent/Active" + }, + "depr": { + "DEP2YRS": "0 No", + "DEPOTHR": "1 Yes" + }, + "sub_abuse_and_psyc": { + "alcohol": { + "ALCOHOL": "0 Absent" + }, + "cigarette": { + "TOBAC30": "0 No", + "TOBAC100": "1 Yes", + "SMOKYRS": "test", + "PACKSPER": "1 1 cigarette – < ½ pack", + "QUITSMOK": "test" + }, + "other_subs": { + "ABUSOTHR": "0 Absent", + "ABUSX": "test" + }, + "PSYCDIS": "0 Absent", + "PSYCDISX": "test" + }, + "status": "released", + "uuid": "ce5a9a83-3e5a-4b28-97f3-9d2ae089b932" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b1v1.json b/src/encoded/tests/data/inserts/fvp_b1v1.json new file mode 100644 index 0000000000..c52f9a0103 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b1v1.json @@ -0,0 +1,54 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1980-05-23", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "phys_measr": { + "fu_height": "36.6", + "fu_weight": "99", + "fu_bpsys": "888", + "fu_bpdias": "130", + "fu_hrate": "138" + }, + "addi_obser": { + "fu_vision": "0 No", + "fu_viscorr": "1 Yes", + "fu_viswcorr": "9 Unknown", + "fu_hearing": "0 No", + "fu_hearaid": "0 No", + "fu_hearwaid": "1 Yes" + }, + "form_status": "Complete", + "status": "released", + "uuid": "f192899b-71b0-43b6-813d-b9508727abfc" + }, + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1981-05-20", + "visitnum": "2", + "initials": "JAR", + "header_complete": "Complete", + "phys_measr": { + "fu_height": "36.6", + "fu_weight": "205", + "fu_bpsys": "888", + "fu_bpdias": "137", + "fu_hrate": "104" + }, + "addi_obser": { + "fu_vision": "0 No", + "fu_viscorr": "1 Yes", + "fu_viswcorr": "9 Unknown", + "fu_hearing": "0 No", + "fu_hearaid": "0 No", + "fu_hearwaid": "1 Yes" + }, + "form_status": "Complete", + "status": "released", + "uuid": "7bd3c28a-6717-4c0d-a81c-88f308566079" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b1v2.json b/src/encoded/tests/data/inserts/fvp_b1v2.json new file mode 100644 index 0000000000..02d8b847a3 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b1v2.json @@ -0,0 +1,54 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1980-05-23", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "phys_measr": { + "fu_height": "36.6", + "fu_weight": "99", + "fu_bpsys": "999", + "fu_bpdias": "130", + "fu_hrate": "138" + }, + "addi_obser": { + "fu_vision": "0 No", + "fu_viscorr": "1 Yes", + "fu_viswcorr": "9 Unknown", + "fu_hearing": "0 No", + "fu_hearaid": "0 No", + "fu_hearwaid": "1 Yes" + }, + "form_status": "Complete", + "status": "released", + "uuid": "7c7addb7-a457-4ac7-98a6-a96a109841da" + }, + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1981-05-20", + "visitnum": "2", + "initials": "JAR", + "header_complete": "Complete", + "phys_measr": { + "fu_height": "36.6", + "fu_weight": "205", + "fu_bpsys": "999", + "fu_bpdias": "137", + "fu_hrate": "104" + }, + "addi_obser": { + "fu_vision": "0 No", + "fu_viscorr": "1 Yes", + "fu_viswcorr": "9 Unknown", + "fu_hearing": "0 No", + "fu_hearaid": "0 No", + "fu_hearwaid": "1 Yes" + }, + "form_status": "Complete", + "status": "released", + "uuid": "5b64fa3d-7854-4091-acf5-b87cc732ee7d" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b1v3.json b/src/encoded/tests/data/inserts/fvp_b1v3.json new file mode 100644 index 0000000000..16162487e1 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b1v3.json @@ -0,0 +1,54 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1980-05-23", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "phys_measr": { + "fu_height": "36.6", + "fu_weight": "99", + "fu_bpsys": "888", + "fu_bpdias": "130", + "fu_hrate": "138" + }, + "addi_obser": { + "fu_vision": "0 No", + "fu_viscorr": "1 Yes", + "fu_viswcorr": "9 Unknown", + "fu_hearing": "0 No", + "fu_hearaid": "0 No", + "fu_hearwaid": "1 Yes" + }, + "form_status": "Complete", + "status": "released", + "uuid": "27287591-b5c0-458c-9d6c-80641a34d39d" + }, + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1981-05-20", + "visitnum": "2", + "initials": "JAR", + "header_complete": "Complete", + "phys_measr": { + "fu_height": "36.6", + "fu_weight": "205", + "fu_bpsys": "888", + "fu_bpdias": "137", + "fu_hrate": "104" + }, + "addi_obser": { + "fu_vision": "0 No", + "fu_viscorr": "1 Yes", + "fu_viswcorr": "9 Unknown", + "fu_hearing": "0 No", + "fu_hearaid": "0 No", + "fu_hearwaid": "1 Yes" + }, + "form_status": "Complete", + "status": "released", + "uuid": "d680592f-b76d-44fa-bddb-cbe1a941fe56" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b2v1.json b/src/encoded/tests/data/inserts/fvp_b2v1.json new file mode 100644 index 0000000000..b0777430f2 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b2v1.json @@ -0,0 +1,23 @@ +[{ + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-02-01", + "visitnum": "1", + "initials": "OK", + "hach_isch_score": { + "ABRUPT": "0 Absent", + "STEPWISE": "1 Present", + "SOMATIC": "0 Absent", + "EMOT": "1 Present", + "HXHYPER": "0 Absent", + "HXSTROKE": "0 Absent", + "FOCLSYM": "2 Present", + "FOCLSIGN": "0 Absent", + "HACHIN": "test" + }, + + + "status": "released", + "uuid": "8b3b92b1-5049-4838-99ef-8336aa1e6e31" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b2v2.json b/src/encoded/tests/data/inserts/fvp_b2v2.json new file mode 100644 index 0000000000..485937cda1 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b2v2.json @@ -0,0 +1,33 @@ +[{ + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-01", + "visitnum": "1", + "initials": "OK", + "hach_isch_score": { + "ABRUPT": "0 Absent", + "STEPWISE": "1 Present", + "SOMATIC": "0 Absent", + "EMOT": "1 Present", + "HXHYPER": "0 Absent", + "HXSTROKE": "0 Absent", + "FOCLSYM": "2 Present", + "FOCLSIGN": "0 Absent", + "HACHIN": "test" + }, + "cere_dise": { + "CVDCOG": "0 No", + "STROKCOG": "1 Yes", + "CVDIMAG": "1 Yes", + "if_yes": { + "CVDIMAG1": "0 No", + "CVDIMAG2": "0 No", + "CVDIMAG3": "1 Yes", + "CVDIMAG4": "1 Yes", + "CVDIMAGX": "test" + } + }, + "status": "released", + "uuid": "bef1e3ca-97d2-41b2-a675-73550f42c3e9" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b3v1.json b/src/encoded/tests/data/inserts/fvp_b3v1.json new file mode 100644 index 0000000000..2d8357c2d1 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b3v1.json @@ -0,0 +1,57 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-04-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "pdnormal": true, + "speech": "0 Normal", + "face_exp": "1 Minimal hypomimia, could be normal \"poker face\"", + "trem_at_rest": { + "fac_lip_chin": "0 Absent", + "r_hand": "1 Slight and infrequently present", + "l_hand": "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "r_foot": "3 Moderate in amplitude and present most of the time", + "l_foot": "4 Marked in amplitude and present most of the time" + }, + "action_trem_hands": { + "act_r_hand": "0 Absent", + "act_l_hand": "1 Slight; present with action" + }, + "rigidity": { + "rig_neck": "0 Absent", + "r_up": "4 Severe; range of motion achieved with difficulty", + "l_up": "0 Absent", + "r_low": "2 Mild to moderate", + "l_low": "4 Severe; range of motion achieved with difficulty", + "l_up_untest": "test" + }, + "finger_taps": { + "taps_r": "0 Normal", + "taps_l": "1 Mild slowing and/or reduction in amplitude" + }, + "hand_move": { + "movem_r": "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "movem_l": "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement" + }, + "move_of_hands": { + "rap_alt_r": "4 Can barely perform the task", + "rap_alt_l": "0 Normal" + }, + "leg_agil": { + "leg_agil_r": "1 Mild slowing and/or reduction in amplitude", + "leg_agil_l": "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement" + }, + "arise_chair": "3 Tends to fall back and may have to try more than one time, but can get up without help", + "posture": "0 Normal", + "gait": "1 Walks slowly; may shuffle with short steps, but no festination (hastening steps) or propulsion", + "post_stab": "2 Absence of postural response; would fall if not caught by examiner", + "bradykin": "3 Moderate slowness, poverty or small amplitude of movement", + "form_status": "Complete", + "status": "released", + "uuid": "28cc6020-e5f8-40e2-b49e-7e32ff9aa270" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b3v2.json b/src/encoded/tests/data/inserts/fvp_b3v2.json new file mode 100644 index 0000000000..533982337b --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b3v2.json @@ -0,0 +1,57 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2009-04-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "pdnormal": true, + "speech": "0 Normal", + "face_exp": "1 Minimal hypomimia, could be normal \"poker face\"", + "trem_at_rest": { + "fac_lip_chin": "0 Absent", + "r_hand": "1 Slight and infrequently present", + "l_hand": "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "r_foot": "3 Moderate in amplitude and present most of the time", + "l_foot": "4 Marked in amplitude and present most of the time" + }, + "action_trem_hands": { + "act_r_hand": "0 Absent", + "act_l_hand": "1 Slight; present with action" + }, + "rigidity": { + "rig_neck": "0 Absent", + "r_up": "4 Severe; range of motion achieved with difficulty", + "l_up": "8 Untestable", + "r_low": "2 Mild to moderate", + "l_low": "4 Severe; range of motion achieved with difficulty", + "l_up_untest": "test" + }, + "finger_taps": { + "taps_r": "0 Normal", + "taps_l": "1 Mild slowing and/or reduction in amplitude" + }, + "hand_move": { + "movem_r": "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "movem_l": "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement" + }, + "move_of_hands": { + "rap_alt_r": "4 Can barely perform the task", + "rap_alt_l": "0 Normal" + }, + "leg_agil": { + "leg_agil_r": "1 Mild slowing and/or reduction in amplitude", + "leg_agil_l": "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement" + }, + "arise_chair": "3 Tends to fall back and may have to try more than one time, but can get up without help", + "posture": "0 Normal", + "gait": "1 Walks slowly; may shuffle with short steps, but no festination (hastening steps) or propulsion", + "post_stab": "2 Absence of postural response; would fall if not caught by examiner", + "bradykin": "3 Moderate slowness, poverty or small amplitude of movement", + "form_status": "Complete", + "status": "released", + "uuid": "a355c1e3-ee9c-420e-8c6d-f80773580ba1" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b4v1.json b/src/encoded/tests/data/inserts/fvp_b4v1.json new file mode 100644 index 0000000000..fbf4009145 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b4v1.json @@ -0,0 +1,17 @@ +[{ + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "2020-12-02", + "visitnum": "1", + "initials": "HY", + "memory": "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "orient": "0 None - 0 Fully oriented", + "judgment": "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "commun": "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "homehobb": "3 Severe - 3 No significant function in the home.", + "perscare": "0 None / Questionable - 0Fully capable of self-care (=0).", + "cdrsum": "5.0", + "cdrglob": "0 0.0 = No Impairment", + "uuid": "a0b38a09-d57c-40dc-b0ee-5e8046586220" +} +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b4v2.json b/src/encoded/tests/data/inserts/fvp_b4v2.json new file mode 100644 index 0000000000..8b7f049e20 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b4v2.json @@ -0,0 +1,56 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1980-05-23", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "sec1": { + "fu_memory": "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "fu_orient": "0 None - 0 Fully oriented", + "fu_judgment": "0.5 Questionable - 0.5
    Slight impairment in solving problems, similarities, and differences.", + "fu_commun": "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "fu_homehobb": "3 Severe - 3 No significant function in the home.", + "fu_perscare": "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "fu_cdrsum": 679, + "fu_cdrglob": "1 1.0 = Mild impairment" + }, + "sec2": { + "fu_comport": "0 None - 0 Socially appropriate behavior.", + "fu_cdrlang": "2 Moderate - 2 Moderate to severe impairments in either speech or comprehension; has difficulty communicating thoughts; writing may be slightly more effective." + }, + "cdrsupp": 6.0, + "cdrtot": 7.5, + "form_status": "Complete", + "status": "released", + "uuid": "23cbc06d-1407-49d9-9eb1-6b13f993abd6" + }, + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1981-05-24", + "visitnum": "2", + "initials": "JAR", + "header_complete": "Complete", + "sec1": { + "fu_memory": "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "fu_orient": "0 None - 0 Fully oriented", + "fu_judgment": "0.5 Questionable - 0.5
    Slight impairment in solving problems, similarities, and differences.", + "fu_commun": "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "fu_homehobb": "3 Severe - 3 No significant function in the home.", + "fu_perscare": "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "fu_cdrsum": 789, + "fu_cdrglob": "1 1.0 = Mild impairment" + }, + "sec2": { + "fu_comport": "0 None - 0 Socially appropriate behavior.", + "fu_cdrlang": "2 Moderate - 2 Moderate to severe impairments in either speech or comprehension; has difficulty communicating thoughts; writing may be slightly more effective." + }, + "cdrsupp": 7.0, + "cdrtot": 7.5, + "form_status": "Complete", + "status": "released", + "uuid": "0a213417-8817-4055-b5c8-e1c2a587aa86" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b4v3.json b/src/encoded/tests/data/inserts/fvp_b4v3.json new file mode 100644 index 0000000000..976b120b8d --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b4v3.json @@ -0,0 +1,52 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1980-05-23", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "sec1": { + "fu_memory": "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "fu_orient": "0 None - 0 Fully oriented", + "fu_judgment": "0.5 Questionable - 0.5
    Slight impairment in solving problems, similarities, and differences.", + "fu_commun": "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "fu_homehobb": "3 Severe - 3 No significant function in the home.", + "fu_perscare": "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "fu_cdrsum": 679, + "fu_cdrglob": "1 1.0 = Mild impairment" + }, + "sec2": { + "fu_comport": "0 None - 0 Socially appropriate behavior.", + "fu_cdrlang": "2 Moderate - 2 Moderate to severe impairments in either speech or comprehension; has difficulty communicating thoughts; writing may be slightly more effective." + }, + "form_status": "Complete", + "status": "released", + "uuid": "2abb094d-2a3d-4fe3-99e9-70031351f0dc" + }, + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1981-05-24", + "visitnum": "2", + "initials": "JAR", + "header_complete": "Complete", + "sec1": { + "fu_memory": "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "fu_orient": "0 None - 0 Fully oriented", + "fu_judgment": "0.5 Questionable - 0.5
    Slight impairment in solving problems, similarities, and differences.", + "fu_commun": "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "fu_homehobb": "3 Severe - 3 No significant function in the home.", + "fu_perscare": "2 Moderate - 2 Requires assistance in dressing, hygiene, keeping of personal effects.", + "fu_cdrsum": 789, + "fu_cdrglob": "1 1.0 = Mild impairment" + }, + "sec2": { + "fu_comport": "0 None - 0 Socially appropriate behavior.", + "fu_cdrlang": "2 Moderate - 2 Moderate to severe impairments in either speech or comprehension; has difficulty communicating thoughts; writing may be slightly more effective." + }, + "form_status": "Complete", + "status": "released", + "uuid": "2178fc7a-ff3e-4eec-9943-c876b91f186e" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b5v1.json b/src/encoded/tests/data/inserts/fvp_b5v1.json new file mode 100644 index 0000000000..6b6cde18ba --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b5v1.json @@ -0,0 +1,27 @@ +[ + { + "_test": "test patient", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2016-01-01", + "visitnum": "1", + "npiqinf": "3 Other (SPECIFY)", + "npiqinfx": "STEPCHILD", + "del": "0 No", + "hall": "0 No", + "agit": "0 No", + "depd": "0 No", + "anx": "0 No", + "elat": "0 No", + "apa": "0 No", + "disn": "0 No", + "irr": "0 No", + "mot": "0 No", + "nite": "0 No", + "app": "0 No", + "status": "released", + "uuid": "41ab17f6-35a6-4bf7-a169-05c7c0511bd3", + "patient": "000000", + "initials": "DT" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b5v2.json b/src/encoded/tests/data/inserts/fvp_b5v2.json new file mode 100644 index 0000000000..efb3b9bbea --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b5v2.json @@ -0,0 +1,75 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1980-05-23", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "fu_npiqinf": "1 Spouse", + "fu_del": "1 Yes", + "fu_delsev": "1 Mild (noticeable, but not a significant change)", + "fu_hall": "0 No", + "fu_hallsev": "3 Severe (very marked or prominent, a dramatic change)", + "fu_agit": "9 Unknown", + "fu_agitsev": "1 Mild (noticeable, but not a significant change)", + "fu_depd": "9 Unknown", + "fu_depdsev": "9 Unknown", + "fu_anx": "1 Yes", + "fu_anxsev": "1 Mild (noticeable, but not a significant change)", + "fu_elat": "0 No", + "fu_elatsev": "2 Moderate (significant, but not a dramatic change)", + "fu_apa": "1 Yes", + "fu_apasev": "1 Mild (noticeable, but not a significant change)", + "fu_disn": "0 No", + "fu_disnsev": "2 Moderate (significant, but not a dramatic change)", + "fu_irr": "9 Unknown", + "fu_irrsev": "2 Moderate (significant, but not a dramatic change)", + "fu_mot": "1 Yes", + "fu_motsev": "1 Mild (noticeable, but not a significant change)", + "fu_nite": "0 No", + "fu_nitesev": "3 Severe (very marked or prominent, a dramatic change)", + "fu_app": "9 Unknown", + "fu_appsev": "3 Severe (very marked or prominent, a dramatic change)", + "form_status": "Complete", + "status": "released", + "uuid": "7fdc3535-235e-4b4e-8871-fbdd88208199" + }, + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1981-05-28", + "visitnum": "2", + "initials": "JAR", + "header_complete": "Complete", + "fu_npiqinf": "3 Other (SPECIFY)", + "fu_npiqinfx": "Friend", + "fu_del": "1 Yes", + "fu_delsev": "1 Mild (noticeable, but not a significant change)", + "fu_hall": "0 No", + "fu_hallsev": "3 Severe (very marked or prominent, a dramatic change)", + "fu_agit": "9 Unknown", + "fu_agitsev": "1 Mild (noticeable, but not a significant change)", + "fu_depd": "9 Unknown", + "fu_depdsev": "9 Unknown", + "fu_anx": "1 Yes", + "fu_anxsev": "1 Mild (noticeable, but not a significant change)", + "fu_elat": "0 No", + "fu_elatsev": "2 Moderate (significant, but not a dramatic change)", + "fu_apa": "1 Yes", + "fu_apasev": "1 Mild (noticeable, but not a significant change)", + "fu_disn": "0 No", + "fu_disnsev": "2 Moderate (significant, but not a dramatic change)", + "fu_irr": "9 Unknown", + "fu_irrsev": "2 Moderate (significant, but not a dramatic change)", + "fu_mot": "1 Yes", + "fu_motsev": "1 Mild (noticeable, but not a significant change)", + "fu_nite": "0 No", + "fu_nitesev": "3 Severe (very marked or prominent, a dramatic change)", + "fu_app": "9 Unknown", + "fu_appsev": "3 Severe (very marked or prominent, a dramatic change)", + "form_status": "Complete", + "status": "released", + "uuid": "ad15dbf2-3c95-4a13-be5f-5dc85f83e054" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b5v3.json b/src/encoded/tests/data/inserts/fvp_b5v3.json new file mode 100644 index 0000000000..802c900d93 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b5v3.json @@ -0,0 +1,75 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1980-05-23", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "fu_npiqinf": "1 Spouse", + "fu_del": "1 Yes", + "fu_delsev": "1 Mild (noticeable, but not a significant change)", + "fu_hall": "0 No", + "fu_hallsev": "3 Severe (very marked or prominent, a dramatic change)", + "fu_agit": "9 Unknown", + "fu_agitsev": "1 Mild (noticeable, but not a significant change)", + "fu_depd": "9 Unknown", + "fu_depdsev": "9 Unknown", + "fu_anx": "1 Yes", + "fu_anxsev": "1 Mild (noticeable, but not a significant change)", + "fu_elat": "0 No", + "fu_elatsev": "2 Moderate (significant, but not a dramatic change)", + "fu_apa": "1 Yes", + "fu_apasev": "1 Mild (noticeable, but not a significant change)", + "fu_disn": "0 No", + "fu_disnsev": "2 Moderate (significant, but not a dramatic change)", + "fu_irr": "9 Unknown", + "fu_irrsev": "2 Moderate (significant, but not a dramatic change)", + "fu_mot": "1 Yes", + "fu_motsev": "1 Mild (noticeable, but not a significant change)", + "fu_nite": "0 No", + "fu_nitesev": "3 Severe (very marked or prominent, a dramatic change)", + "fu_app": "9 Unknown", + "fu_appsev": "3 Severe (very marked or prominent, a dramatic change)", + "form_status": "Complete", + "status": "released", + "uuid": "ce18ce5b-1f48-41f2-a5e6-687334cab777" + }, + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1981-05-28", + "visitnum": "2", + "initials": "JAR", + "header_complete": "Complete", + "fu_npiqinf": "3 Other (SPECIFY)", + "fu_npiqinfx": "Friend", + "fu_del": "1 Yes", + "fu_delsev": "1 Mild (noticeable, but not a significant change)", + "fu_hall": "0 No", + "fu_hallsev": "3 Severe (very marked or prominent, a dramatic change)", + "fu_agit": "9 Unknown", + "fu_agitsev": "1 Mild (noticeable, but not a significant change)", + "fu_depd": "9 Unknown", + "fu_depdsev": "9 Unknown", + "fu_anx": "1 Yes", + "fu_anxsev": "1 Mild (noticeable, but not a significant change)", + "fu_elat": "0 No", + "fu_elatsev": "2 Moderate (significant, but not a dramatic change)", + "fu_apa": "1 Yes", + "fu_apasev": "1 Mild (noticeable, but not a significant change)", + "fu_disn": "0 No", + "fu_disnsev": "2 Moderate (significant, but not a dramatic change)", + "fu_irr": "9 Unknown", + "fu_irrsev": "2 Moderate (significant, but not a dramatic change)", + "fu_mot": "1 Yes", + "fu_motsev": "1 Mild (noticeable, but not a significant change)", + "fu_nite": "0 No", + "fu_nitesev": "3 Severe (very marked or prominent, a dramatic change)", + "fu_app": "9 Unknown", + "fu_appsev": "3 Severe (very marked or prominent, a dramatic change)", + "form_status": "Complete", + "status": "released", + "uuid": "e98c30a1-965c-4410-bafc-cdc7963558f7" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b6v1.json b/src/encoded/tests/data/inserts/fvp_b6v1.json new file mode 100644 index 0000000000..0d232a83df --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b6v1.json @@ -0,0 +1,30 @@ +[ + { + "_test": "test patient", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2007-03-01", + "visitnum": "1", + "nogds": false, + "satis": "0 Yes", + "dropact": "1 Yes", + "empty": "0 No", + "bored": "0 No", + "spirits": "0 Yes", + "afraid": "0 No", + "happy": "0 Yes", + "helpless": "0 No", + "stayhome": "1 Yes", + "memprob": "0 No", + "wondrful": "0 Yes", + "wrthless": "0 No", + "energy": "1 No", + "hopeless": "0 No", + "better": "0 No", + "gds": "3", + "status": "released", + "uuid": "2d108012-6f02-484f-a6d6-fd0d08793e77", + "patient": "000000", + "initials": "DT" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b6v2.json b/src/encoded/tests/data/inserts/fvp_b6v2.json new file mode 100644 index 0000000000..6538d3ba81 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b6v2.json @@ -0,0 +1,63 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2000-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_nogds": true, + "fu_note_b6": { + "fu_satis": "0 Yes", + "fu_dropact": "1 No ", + "fu_empty": "0 Yes", + "fu_bored": "0 Yes", + "fu_spirits": "0 Yes", + "fu_afraid": "1 No ", + "fu_happy": "9 Did not answer", + "fu_helpless": "0 Yes", + "fu_stayhome": "1 No ", + "fu_memprob": "9 Did not answer", + "fu_wondrful": "1 No ", + "fu_wrthless": "1 No ", + "fu_energy": "9 Did not answer", + "fu_hopeless": "0 Yes", + "fu_better": "0 Yes", + "fu_gds": "10" + }, + "form_status": "Complete", + "status": "released", + "uuid": "14e010a3-ccf4-4e9a-9b8b-ba469bd87420" + }, + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_nogds": true, + "fu_note_b6": { + "fu_satis": "0 Yes", + "fu_dropact": "1 No ", + "fu_empty": "0 Yes", + "fu_bored": "0 Yes", + "fu_spirits": "0 Yes", + "fu_afraid": "1 No ", + "fu_happy": "9 Did not answer", + "fu_helpless": "0 Yes", + "fu_stayhome": "1 No ", + "fu_memprob": "9 Did not answer", + "fu_wondrful": "1 No ", + "fu_wrthless": "1 No ", + "fu_energy": "9 Did not answer", + "fu_hopeless": "0 Yes", + "fu_better": "0 Yes", + "fu_gds": "88" + }, + "form_status": "Complete", + "status": "released", + "uuid": "a9395fd7-4512-4010-b341-80800b153fc1" + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b6v3.json b/src/encoded/tests/data/inserts/fvp_b6v3.json new file mode 100644 index 0000000000..6578d276fa --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b6v3.json @@ -0,0 +1,63 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_nogds": true, + "fu_note_b6": { + "fu_satis": "0 Yes", + "fu_dropact": "1 No ", + "fu_empty": "0 Yes", + "fu_bored": "0 Yes", + "fu_spirits": "0 Yes", + "fu_afraid": "1 No ", + "fu_happy": "9 Did not answer", + "fu_helpless": "0 Yes", + "fu_stayhome": "1 No ", + "fu_memprob": "9 Did not answer", + "fu_wondrful": "1 No ", + "fu_wrthless": "1 No ", + "fu_energy": "9 Did not answer", + "fu_hopeless": "0 Yes", + "fu_better": "0 Yes", + "fu_gds": "10" + }, + "form_status": "Complete", + "status": "released", + "uuid": "07131d2c-3eb4-4660-8376-e079b4f0a699" + }, + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_nogds": true, + "fu_note_b6": { + "fu_satis": "0 Yes", + "fu_dropact": "1 No ", + "fu_empty": "0 Yes", + "fu_bored": "0 Yes", + "fu_spirits": "0 Yes", + "fu_afraid": "1 No ", + "fu_happy": "9 Did not answer", + "fu_helpless": "0 Yes", + "fu_stayhome": "1 No ", + "fu_memprob": "9 Did not answer", + "fu_wondrful": "1 No ", + "fu_wrthless": "1 No ", + "fu_energy": "9 Did not answer", + "fu_hopeless": "0 Yes", + "fu_better": "0 Yes", + "fu_gds": "88" + }, + "form_status": "Complete", + "status": "released", + "uuid": "d8edfcca-7ed6-4c64-883d-f46f1720e000" + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b7v1.json b/src/encoded/tests/data/inserts/fvp_b7v1.json new file mode 100644 index 0000000000..00d25c8e89 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b7v1.json @@ -0,0 +1,25 @@ +[ + { + "_test": "test patient", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2007-01-01", + "visitnum": "1", + "status": "released", + "uuid": "97818eec-9b84-4e84-b0c8-8dc3beb81282", + "patient": "000000", + "initials": "DT", + "form_description": { + "bills": "0 Normal", + "taxes": "0 Normal", + "shopping": "0 Normal", + "games": "0 Normal", + "stove": "0 Normal", + "mealprep": "0 Normal", + "events": "0 Normal", + "payattn": "0 Normal", + "remdates": "0 Normal", + "travel": "0 Normal" + } + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b7v2.json b/src/encoded/tests/data/inserts/fvp_b7v2.json new file mode 100644 index 0000000000..b2a135bdeb --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b7v2.json @@ -0,0 +1,50 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "help_with": { + "fu_bills": "8 Not applicable (e.g., never did)", + "fu_taxes": "0 Normal", + "fu_shopping": "1 Has difficulty, but does by self", + "fu_games": "2 Requires assistance", + "fu_stove": "3 Dependent", + "fu_mealprep": "9 Unknown", + "fu_events": "2 Requires assistance", + "fu_payattn": "0 Normal", + "fu_remdates": "3 Dependent", + "fu_travel": "9 Unknown" + }, + "form_status": "Complete", + "status": "released", + "uuid": "bf3acf13-2a62-43aa-88af-b6c96ac79283" + }, + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "help_with": { + "fu_bills": "8 Not applicable (e.g., never did)", + "fu_taxes": "0 Normal", + "fu_shopping": "1 Has difficulty, but does by self", + "fu_games": "2 Requires assistance", + "fu_stove": "3 Dependent", + "fu_mealprep": "9 Unknown", + "fu_events": "2 Requires assistance", + "fu_payattn": "0 Normal", + "fu_remdates": "3 Dependent", + "fu_travel": "9 Unknown" + }, + "form_status": "Complete", + "status": "released", + "uuid": "e3466270-909a-4d50-a93e-3df85a4cb805" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b7v3.json b/src/encoded/tests/data/inserts/fvp_b7v3.json new file mode 100644 index 0000000000..ccc463dcf9 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b7v3.json @@ -0,0 +1,50 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "help_with": { + "fu_bills": "8 Not applicable (e.g., never did)", + "fu_taxes": "0 Normal", + "fu_shopping": "1 Has difficulty, but does by self", + "fu_games": "2 Requires assistance", + "fu_stove": "3 Dependent", + "fu_mealprep": "9 Unknown", + "fu_events": "2 Requires assistance", + "fu_payattn": "0 Normal", + "fu_remdates": "3 Dependent", + "fu_travel": "9 Unknown" + }, + "form_status": "Complete", + "status": "released", + "uuid": "5faa03ee-c44f-4989-80d7-4c05113cf458" + }, + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "help_with": { + "fu_bills": "8 Not applicable (e.g., never did)", + "fu_taxes": "0 Normal", + "fu_shopping": "1 Has difficulty, but does by self", + "fu_games": "2 Requires assistance", + "fu_stove": "3 Dependent", + "fu_mealprep": "9 Unknown", + "fu_events": "2 Requires assistance", + "fu_payattn": "0 Normal", + "fu_remdates": "3 Dependent", + "fu_travel": "9 Unknown" + }, + "form_status": "Complete", + "status": "released", + "uuid": "a2045221-a77d-4673-8cf1-d5c6e6c93e92" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b8v1.json b/src/encoded/tests/data/inserts/fvp_b8v1.json new file mode 100644 index 0000000000..2714ce894f --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b8v1.json @@ -0,0 +1,17 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2007-05-20", + "visitnum": "1", + "initials": "JAR", + "normal": "1 Yes", + "focldef": "1 Yes", + "gaitdis": "0 No", + "eyemove": "9 Unknown", + + "status": "released", + "uuid": "efad508f-6f89-41b9-84c6-72b1b2f05c17" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b8v2.json b/src/encoded/tests/data/inserts/fvp_b8v2.json new file mode 100644 index 0000000000..3b5feba4f3 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b8v2.json @@ -0,0 +1,14 @@ +[{ + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1980-05-20", + "visitnum": "1", + "initials": "JAR", + "normal": "1 Yes", + "focldef": "1 Yes", + "gaitdis": "0 No", + "eyemove": "9 Unknown", + + "status": "released", + "uuid": "24c16624-7fd2-43c7-a3fb-bb82b2f18410" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b8v3.json b/src/encoded/tests/data/inserts/fvp_b8v3.json new file mode 100644 index 0000000000..40f9a32edb --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b8v3.json @@ -0,0 +1,160 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_normexam": "1 Yes - abnormal findings were consistent with syndromes listed in Questions 2-8", + "check_questions": { + "fu_parksign": "1 Yes", + "park_left": { + "fu_resttrl": "1 Yes", + "fu_slowingl": "1 Yes", + "fu_rigidl": "8 Not assessed" + }, + "park_right": { + "fu_resttrr": "1 Yes", + "fu_slowingr": "1 Yes", + "fu_rigidr": "8 Not assessed" + }, + "park_continue": { + "fu_brady": "1 Yes", + "fu_parkgait": "1 Yes", + "fu_postinst": "8 Not assessed" + }, + "fu_cvdsigns": "1 Yes", + "consist_mark": { + "fu_cortdef": "1 Yes", + "fu_sivdfind": "1 Yes" + }, + "consist_left": { + "fu_cvdmotl": "1 Yes", + "fu_cortvisl": "8 Not assessed", + "fu_somatl": "1 Yes" + }, + "consist_right": { + "fu_cvdmotr": "1 Yes", + "fu_cortvisr": "8 Not assessed", + "fu_somatr": "8 Not assessed" + }, + "post_cort": { + "fu_postcort": "0 No" + }, + "psp": { + "fu_pspcbs": "1 Yes" + }, + "findings": { + "fu_eyepsp": "1 Yes", + "fu_dyspsp": "8 Not assessed", + "fu_axialpsp": "8 Not assessed", + "fu_gaitpsp": "8 Not assessed", + "fu_apraxsp": "8 Not assessed" + }, + "finding_left": { + "fu_apraxl": "1 Yes", + "fu_cortsenl": "1 Yes", + "fu_ataxl": "8 Not assessed", + "fu_alienlml": "8 Not assessed", + "fu_dystonl": "8 Not assessed", + "fu_myocllt": "8 Not assessed" + }, + "finding_right": { + "fu_apraxr": "1 Yes", + "fu_cortsenr": "1 Yes", + "fu_ataxr": "8 Not assessed", + "fu_alienlmr": "8 Not assessed", + "fu_dystonr": "8 Not assessed", + "fu_myoclrt": "8 Not assessed" + }, + "fu_alsfind": "0 No", + "fu_gaitnph": "0 No", + "fu_othneur": "1 Yes (SPECIFY):", + "fu_othneurx": "dfdfdf" + }, + "form_status": "Complete", + "status": "released", + "uuid": "4b8f7718-c6e5-4e3c-a286-2a216283b191" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_normexam": "1 Yes - abnormal findings were consistent with syndromes listed in Questions 2-8", + "check_questions": { + "fu_parksign": "1 Yes", + "park_left": { + "fu_resttrl": "1 Yes", + "fu_slowingl": "1 Yes", + "fu_rigidl": "8 Not assessed" + }, + "park_right": { + "fu_resttrr": "1 Yes", + "fu_slowingr": "1 Yes", + "fu_rigidr": "8 Not assessed" + }, + "park_continue": { + "fu_brady": "1 Yes", + "fu_parkgait": "1 Yes", + "fu_postinst": "8 Not assessed" + }, + "fu_cvdsigns": "1 Yes", + "consist_mark": { + "fu_cortdef": "1 Yes", + "fu_sivdfind": "1 Yes" + }, + "consist_left": { + "fu_cvdmotl": "1 Yes", + "fu_cortvisl": "8 Not assessed", + "fu_somatl": "1 Yes" + }, + "consist_right": { + "fu_cvdmotr": "1 Yes", + "fu_cortvisr": "8 Not assessed", + "fu_somatr": "8 Not assessed" + }, + "post_cort": { + "fu_postcort": "0 No" + }, + "psp": { + "fu_pspcbs": "1 Yes" + }, + "findings": { + "fu_eyepsp": "1 Yes", + "fu_dyspsp": "8 Not assessed", + "fu_axialpsp": "8 Not assessed", + "fu_gaitpsp": "8 Not assessed", + "fu_apraxsp": "8 Not assessed" + }, + "finding_left": { + "fu_apraxl": "1 Yes", + "fu_cortsenl": "1 Yes", + "fu_ataxl": "8 Not assessed", + "fu_alienlml": "8 Not assessed", + "fu_dystonl": "8 Not assessed", + "fu_myocllt": "8 Not assessed" + }, + "finding_right": { + "fu_apraxr": "1 Yes", + "fu_cortsenr": "1 Yes", + "fu_ataxr": "8 Not assessed", + "fu_alienlmr": "8 Not assessed", + "fu_dystonr": "8 Not assessed", + "fu_myoclrt": "8 Not assessed" + }, + "fu_alsfind": "0 No", + "fu_gaitnph": "0 No", + "fu_othneur": "1 Yes (SPECIFY):", + "fu_othneurx": "dfdfdf" + }, + "form_status": "Complete", + "status": "released", + "uuid": "5abbbf46-885a-4bac-a768-18659cdc1ade" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b9v1.json b/src/encoded/tests/data/inserts/fvp_b9v1.json new file mode 100644 index 0000000000..4584ce4740 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b9v1.json @@ -0,0 +1,71 @@ + + [ { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "B9CHG": "2 At the previous UDS visit, the clinician DID NOT report a decline in the subject’s memory, non-memory cognitive abilities, behavior, or motor function (i.e., question 3a = ‘0’). However, there have been meaningful changes since then. (If this box is checked, complete this entire form.)", + + "memo_comp": { + "DECSUB": "0 No", + "DECIN": "0 No", + "DECCLIN": "1 Yes", + "DECAGE": "test" + }, + "cogn_symp": { + "indicate_impair": { + "COGMEM": "0 No", + "COGJUDG": "1 Yes", + "COGLANG": "9 Unknown", + "COGVIS": "0 No", + "COGATTN": "1 Yes", + "COGOTHR": "1 Yes", + "COGOTHRX": "test" + }, + "COGFRST": "1 Memory", + "COGFRSTX": "test", + "COGMODE": "1 Gradual (> 6 months)", + "COGMODEX": "test" + }, + "beha_symp": { + "indicate_beha_symp": { + "BEAPATHY": "0 No", + "BEDEP": "1 Yes", + "psychosis": { + "BEVHALL": "9 Unknown", + "BEAHALL": "1 Yes", + "BEDEL": "9 Unknown" + }, + "BEDISIN": "0 No", + "BEIRRIT": "1 Yes", + "BEAGIT": "9 Unknown", + "BEPERCH": "0 No", + "BEOTHR": "9 Unknown", + "BEOTHRX": "test" + }, + "BEFRST": "1 Apathy/withdrawal", + "BEFRSTX": "test", + "BEMODE": "2 Subacute (< 6 months)", + "BEMODEX": "test" + }, + "motor_symp": { + "indicate_motor_symp": { + "MOGAIT": "0 No", + "MOFALLS": "1 Yes", + "MOTREM": "9 Unknown", + "MOSLOW": "0 No" + }, + "MOFRST": "1 Gait disorder", + "MOMODE": "1 Gradual (> 6 months)", + "MOMODEX": "test" + }, + "overall": { + "COURSE": "1 Gradual progressive", + "FRSTCHG": "2 Behavior" + }, + "status": "released", + "uuid": "4ce63b36-b04b-459f-afe7-6abb55d85720" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b9v2.json b/src/encoded/tests/data/inserts/fvp_b9v2.json new file mode 100644 index 0000000000..8c19f832dc --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b9v2.json @@ -0,0 +1,73 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-01", + "visitnum": "1", + "initials": "OK", + "memo_comp": { + "DECSUB": "0 No", + "DECIN": "0 No", + "DECCLIN": "1 Yes", + "DECAGE": "test" + }, + "cogn_symp": { + "indicate_impair": { + "COGMEM": "0 No", + "COGJUDG": "1 Yes", + "COGLANG": "9 Unknown", + "COGVIS": "0 No", + "COGATTN": "1 Yes", + "COGFLUC": "0 No", + "COGOTHR": "1 Yes", + "COGOTHRX": "test" + }, + "COGFRST": "1 Memory", + "COGFRSTX": "test", + "COGMODE": "1 Gradual (> 6 months)", + "COGMODEX": "test" + }, + "beha_symp": { + "indicate_beha_symp": { + "BEAPATHY": "0 No", + "BEDEP": "1 Yes", + "psychosis": { + "BEVHALL": "9 Unknown", + "BEVWELL": "0 No", + "BEAHALL": "1 Yes", + "BEDEL": "9 Unknown" + }, + "BEDISIN": "0 No", + "BEIRRIT": "1 Yes", + "BEAGIT": "9 Unknown", + "BEPERCH": "0 No", + "BEREM": "1 Yes", + "BEOTHR": "9 Unknown", + "BEOTHRX": "test" + }, + "BEFRST": "1 Apathy/withdrawal", + "BEFRSTX": "test", + "BEMODE": "2 Subacute (< 6 months)", + "BEMODEX": "test" + }, + "motor_symp": { + "indicate_motor_symp": { + "MOGAIT": "0 No", + "MOFALLS": "1 Yes", + "MOTREM": "9 Unknown", + "MOSLOW": "0 No" + }, + "MOFRST": "1 Gait disorder", + "MOMODE": "1 Gradual (> 6 months)", + "MOMODEX": "test", + "MOMOPARK": "88 NA" + }, + "overall": { + "COURSE": "1 Gradual progressive", + "FRSTCHG": "2 Behavior" + }, + "status": "released", + "uuid": "12f8627d-0f73-4459-94b8-b2c3af48e2c3" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_b9v3.json b/src/encoded/tests/data/inserts/fvp_b9v3.json new file mode 100644 index 0000000000..86dd1c7e45 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_b9v3.json @@ -0,0 +1,178 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_decl_memo": { + "fu_decsub": "1 Yes", + "fu_decin": "0 No" + }, + "fu_cogn_symp": { + "fu_decclcog": "1 Yes" + }, + "fu_meaning_impair": { + "fu_cogmem": "0 No", + "fu_cogori": "1 Yes", + "fu_cogjudg": "0 No", + "fu_coglang": "9 Unknown", + "fu_cogvis": "9 Unknown", + "fu_cogattn": "0 No", + "fu_cogfluc": "0 No", + "fu_display_cogflago": { + "fu_cogflago": "18" + }, + "fu_cogothr": "1 Yes", + "fu_cogfpred": "0 Assessed at a previous UDS visit", + "fu_cogmode": "1 Gradual", + "fu_decage": "777" + }, + "fu_bhvr_symp": { + "fu_decclbe": "1 Yes", + "fu_bhvr_change": { + "fu_beapathy": "0 No", + "fu_bedep": "1 Yes", + "fu_pcycho": { + "properties": { + "fu_bevhall": "9 Unknown", + "fu_bevwell": "0 No", + "fu_bevhago": "68", + "fu_beahall": "9 Unknown", + "fu_bedel": "0 No" + } + }, + "fu_bedisin": "0 No", + "fu_beirrit": "9 Unknown", + "fu_beagit": "1 Yes", + "fu_beperch": "9 Unknown", + "fu_berem": "1 Yes", + "fu_beremago": "72", + "fu_beanx": "0 No", + "fu_beothr": "1 Yes" + }, + "fu_befpred": "1 Apathy/withdrawal", + "fu_bemode": "1 Gradual", + "fu_beage": "15" + }, + "fu_motor_symp": { + "fu_decclmot": "1 Yes", + "fu_motor_meaning_change": { + "fu_mogait": "1 Yes", + "fu_mofalls": "0 No", + "fu_motrem": "9 Unknown", + "fu_moslow": "0 No" + }, + "fu_mofrst": "3 Tremor", + "fu_momode": "3 Abrupt", + "fu_momopark": "0 No", + "fu_parkage": "777", + "fu_momoals": "1 Yes", + "fu_alsage": "777", + "fu_moage": "68" + }, + "fu_overall_course": { + "fu_course": "4 Fluctuating", + "fu_frstchg": "2 Behavior" + }, + "fu_candidate": { + "properties": { + "fu_lbdeval": "1 Yes", + "fu_ftldeval": "0 No" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "267496cf-e864-4f39-9551-3d60c56ef82f" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_decl_memo": { + "fu_decsub": "1 Yes", + "fu_decin": "0 No" + }, + "fu_cogn_symp": { + "fu_decclcog": "1 Yes" + }, + "fu_meaning_impair": { + "fu_cogmem": "0 No", + "fu_cogori": "1 Yes", + "fu_cogjudg": "0 No", + "fu_coglang": "9 Unknown", + "fu_cogvis": "9 Unknown", + "fu_cogattn": "0 No", + "fu_cogfluc": "0 No", + "fu_display_cogflago": { + "fu_cogflago": "27" + }, + "fu_cogothr": "1 Yes", + "fu_cogfpred": "0 Assessed at a previous UDS visit", + "fu_cogmode": "1 Gradual", + "fu_decage": "777" + }, + "fu_bhvr_symp": { + "fu_decclbe": "1 Yes", + "fu_bhvr_change": { + "fu_beapathy": "0 No", + "fu_bedep": "1 Yes", + "fu_pcycho": { + "properties": { + "fu_bevhall": "9 Unknown", + "fu_bevwell": "0 No", + "fu_bevhago": "99", + "fu_beahall": "9 Unknown", + "fu_bedel": "0 No" + } + }, + "fu_bedisin": "0 No", + "fu_beirrit": "9 Unknown", + "fu_beagit": "1 Yes", + "fu_beperch": "9 Unknown", + "fu_berem": "1 Yes", + "fu_beremago": "72", + "fu_beanx": "0 No", + "fu_beothr": "1 Yes" + }, + "fu_befpred": "1 Apathy/withdrawal", + "fu_bemode": "1 Gradual", + "fu_beage": "15" + }, + "fu_motor_symp": { + "fu_decclmot": "1 Yes", + "fu_motor_meaning_change": { + "fu_mogait": "1 Yes", + "fu_mofalls": "0 No", + "fu_motrem": "9 Unknown", + "fu_moslow": "0 No" + }, + "fu_mofrst": "3 Tremor", + "fu_momode": "3 Abrupt", + "fu_momopark": "0 No", + "fu_parkage": "777", + "fu_momoals": "1 Yes", + "fu_alsage": "777", + "fu_moage": "68" + }, + "fu_overall_course": { + "fu_course": "4 Fluctuating", + "fu_frstchg": "2 Behavior" + }, + "fu_candidate": { + "properties": { + "fu_lbdeval": "1 Yes", + "fu_ftldeval": "0 No" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "f39c9fd2-c7b3-4527-8047-6643cc62b46d" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_c1v1.json b/src/encoded/tests/data/inserts/fvp_c1v1.json new file mode 100644 index 0000000000..0cc7a9056d --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_c1v1.json @@ -0,0 +1,58 @@ + + [ { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2007-02-01", + "visitnum": "1", + "initials": "OK", + "c1_1": { + "MMSELOC": "1 In ADC/clinic", + "MMSELAN": "1 English", + "MMSELANX": "test", + "MMSEORDA": "95", + "MMSEORLO": "5", + "MMSE": "95 Physical problem" + }, + "NPSYCLOC": "1 In ADC/clinic", + "NPSYLAN": "1 English", + "NPSYLANX": "test", + "c1_3": { + "LOGIMO": "1989-09-09", + "LOGIPREV": "24", + "LOGIMEM": "9" + }, + "c1_4": { + "type": "object", + "DIGIF": "98", + "DIGIFLEN": "97" + }, + "c1_5": { + "DIGIB": "12", + "DIGIBLEN": "5" + }, + "c1_6": { + "ANIMALS": "70", + "VEG": "56" + }, + "c1_7": { + "TRAILA": "149", + "TRAILB": "995" + }, + "c1_8": { + "WAIS": "0" + }, + "c1_9": { + "MEMUNITS": "25", + "MEMTIME": "85" + }, + "c1_10": { + "BOSTON": "30" + }, + "c1_11": { + "COGSTAT": "1 Better than normal for age" + }, + "status": "released", + "uuid": "629b9e1d-f1c7-401a-af3c-4cd1bc2fb058" +} +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_c1v2.json b/src/encoded/tests/data/inserts/fvp_c1v2.json new file mode 100644 index 0000000000..0bcffa37ab --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_c1v2.json @@ -0,0 +1,122 @@ +[{ + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "c1_1": { + "MMSELOC": "1 In ADC/clinic", + "MMSELAN": "1 English", + "MMSE_score": { + "MMSEORDA": "5", + "MMSEORLO": "3" + }, + "PENTAGON": "95", + "MMSE": "96" + }, + "NPSYCLOC": "1 In ADC/clinic", + "NPSYLAN": "3 Other", + "NPSYLANX": "test", + "c1_3": { + "LOGIMO": "1980-09-09", + "LOGIPREV": "20", + "LOGIMEM": "10" + }, + "c1_4": { + "DIGIF": "10", + "DIGIFLEN": "6" + }, + "c1_5": { + "DIGIB": "6", + "DIGIBLEN": "96" + }, + "c1_6": { + "ANIMALS": "60", + "VEG": "98" + }, + "c1_7": { + "TRAILA": "995", + "TRAILARR": "30", + "TRAILALI": "13", + "TRAILB": "150", + "TRAILBRR": "12", + "TRAILBLI": "14" + }, + "c1_8": { + "WAIS": "90" + }, + "c1_9": { + "MEMUNITS": "20", + "MEMTIME": "80" + }, + "c1_10": { + "BOSTON": "97" + }, + "c1_11": { + "COGSTAT": "3 One or two test scores abnormal" + }, + "status": "released", + "uuid": "f16277d7-e232-4dc9-8953-2af92d0675bd" +}, +{ + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "initials": "OK", + "c1_1": { + "MMSELOC": "1 In ADC/clinic", + "MMSELAN": "1 English", + "MMSE_score": { + "MMSEORDA": "5", + "MMSEORLO": "3" + }, + "PENTAGON": "95", + "MMSE": "96" + }, + "NPSYCLOC": "1 In ADC/clinic", + "NPSYLAN": "3 Other", + "NPSYLANX": "test", + "c1_3": { + "LOGIMO": "1980-09-09", + "LOGIPREV": "20", + "LOGIMEM": "10" + }, + "c1_4": { + "DIGIF": "10", + "DIGIFLEN": "6" + }, + "c1_5": { + "DIGIB": "6", + "DIGIBLEN": "96" + }, + "c1_6": { + "ANIMALS": "60", + "VEG": "98" + }, + "c1_7": { + "TRAILA": "995", + "TRAILARR": "30", + "TRAILALI": "13", + "TRAILB": "150", + "TRAILBRR": "12", + "TRAILBLI": "14" + }, + "c1_8": { + "WAIS": "90" + }, + "c1_9": { + "MEMUNITS": "20", + "MEMTIME": "80" + }, + "c1_10": { + "BOSTON": "97" + }, + "c1_11": { + "COGSTAT": "3 One or two test scores abnormal" + }, + "status": "released", + "uuid": "91930cfd-6198-430b-9f1d-fbbadb020bb5" +}] diff --git a/src/encoded/tests/data/inserts/fvp_c1v3.json b/src/encoded/tests/data/inserts/fvp_c1v3.json new file mode 100644 index 0000000000..97f4cc7d75 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_c1v3.json @@ -0,0 +1,166 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_1": { + "fu_mmsecomp": "1 Yes (CONTINUE TO QUESTION 1a)", + "fu_mmseloc": "1 In ADC/clinic", + "fu_mmselan": "1 English", + "fu_mmsevis": "0 No", + "fu_mmsehear": "1 Yes", + "fu_note_c": { + "fu_mmseorda": "3", + "fu_mmseorlo": "95" + }, + "fu_pentagon": "1", + "fu_mmse": "88" + }, + "fu_2": { + "fu_npsycloc": "1 In ADC/clinic", + "fu_npsylan": "1 English" + }, + "fu_3": { + "fu_logi_date": "1994-09-08", + "fu_logiprev": "13", + "fu_logimem": "22" + }, + "fu_4": { + "fu_udsbentc_c": "95" + }, + "fu_5": { + "fu_digif": "10", + "fu_digiflen": "8" + }, + "fu_6": { + "fu_digib": "9", + "fu_digiblen": "5" + }, + "fu_7": { + "fu_animals": "60", + "fu_veg": "98" + }, + "fu_8": { + "fu_traila": "150", + "fu_trailarr": "38", + "fu_trailali": "20", + "fu_trailb": "198", + "fu_trailbrr": "38", + "fu_trailbli": "22" + }, + "fu_9": { + "fu_memunits": "24", + "fu_memtime": "99" + }, + "fu_10": { + "fu_udsbentd_c": "13", + "fu_udsbenrs_c": "0 No" + }, + "fu_11": { + "fu_boston": "22" + }, + "fu_12": { + "fu_udsverfc_c": "33", + "fu_udsverfn_c": "14", + "fu_udsvernf_c": "13", + "fu_udsverlc_c": "22", + "fu_udsverlr_c": "13", + "fu_udsverln_c": "11", + "fu_udsvertn_c": "68", + "fu_udsverte_c": "29", + "fu_udsverti_c": "21" + }, + "fu_13": { + "fu_cogstat": "2 Normal for age" + }, + "form_status": "Complete", + "status": "released", + "uuid": "c74d5ef5-ef29-4a16-a474-56998591af05" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_1": { + "fu_mmsecomp": "1 Yes (CONTINUE TO QUESTION 1a)", + "fu_mmseloc": "1 In ADC/clinic", + "fu_mmselan": "1 English", + "fu_mmsevis": "0 No", + "fu_mmsehear": "1 Yes", + "fu_note_c": { + "fu_mmseorda": "3", + "fu_mmseorlo": "95" + }, + "fu_pentagon": "1", + "fu_mmse": "88" + }, + "fu_2": { + "fu_npsycloc": "1 In ADC/clinic", + "fu_npsylan": "1 English" + }, + "fu_3": { + "fu_logi_date": "1994-09-08", + "fu_logiprev": "13", + "fu_logimem": "22" + }, + "fu_4": { + "fu_udsbentc_c": "95" + }, + "fu_5": { + "fu_digif": "10", + "fu_digiflen": "8" + }, + "fu_6": { + "fu_digib": "9", + "fu_digiblen": "5" + }, + "fu_7": { + "fu_animals": "60", + "fu_veg": "98" + }, + "fu_8": { + "fu_traila": "150", + "fu_trailarr": "38", + "fu_trailali": "20", + "fu_trailb": "198", + "fu_trailbrr": "38", + "fu_trailbli": "22" + }, + "fu_9": { + "fu_memunits": "24", + "fu_memtime": "99" + }, + "fu_10": { + "fu_udsbentd_c": "13", + "fu_udsbenrs_c": "0 No" + }, + "fu_11": { + "fu_boston": "19" + }, + "fu_12": { + "fu_udsverfc_c": "30", + "fu_udsverfn_c": "14", + "fu_udsvernf_c": "13", + "fu_udsverlc_c": "20", + "fu_udsverlr_c": "13", + "fu_udsverln_c": "11", + "fu_udsvertn_c": "68", + "fu_udsverte_c": "29", + "fu_udsverti_c": "21" + }, + "fu_13": { + "fu_cogstat": "2 Normal for age" + }, + "form_status": "Complete", + "status": "released", + "uuid": "59824626-dc80-45c7-9e76-d1fbfeb8fefb" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_c2v3.json b/src/encoded/tests/data/inserts/fvp_c2v3.json new file mode 100644 index 0000000000..2f1ac2281e --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_c2v3.json @@ -0,0 +1,214 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_1": { + "fu_mocacomp": "1 Yes (CONTINUE WITH QUESTION 1b)", + "fu_mocareas": "95 = Physical problem", + "fu_mocaloc": "1 In ADC or clinic", + "fu_mocalan": "1 English", + "fu_mocavis": "1 Yes", + "fu_mocahear": "0 No", + "fu_mocatots": "88", + "fu_mocatrai": "95", + "fu_mocacube": "1", + "fu_mocacloc": "0", + "fu_mocaclon": "98", + "fu_mocacloh": "96", + "fu_mocanami": "3", + "fu_mocaregi": "8", + "fu_mocadigi": "2", + "fu_mocalett": "1", + "fu_mocaser": "3", + "fu_mocarepe": "96", + "fu_mocaflue": "97", + "fu_mocaabst": "2", + "fu_mocarecn": "4", + "fu_mocarecr": "88", + "fu_mocaordt": "98", + "fu_mocaormo": "1", + "fu_mocaoryr": "1", + "fu_mocaordy": "1", + "fu_mocaorpl": "0", + "fu_mocaorct": "0" + }, + "fu_2": { + "fu_npsycloc_c": "1 In ADC or clinic", + "fu_npsylan_c": "1 English", + "fu_npsylanx_c": "sfsfsf" + }, + "fu_3": { + "fu_craftvrs": "28", + "fu_": "23" + }, + "fu_4": { + "fu_udsbentc": "98" + }, + "fu_5": { + "fu_digforct": "8", + "fu_digforsl": "6" + }, + "fu_6": { + "fu_digbacct": "10", + "fu_digbacls": "0" + }, + "fu_7": { + "fu_animals_c": "60", + "fu_veg_c": "53" + }, + "fu_8": { + "fu_traila_c": "995", + "fu_trailarr_c": "20", + "fu_trailali_c": "13", + "fu_trailb_c": "120", + "fu_trailbrr_c": "34", + "fu_trailbli_c": "13" + }, + "fu_9": { + "fu_craftdvr": "33", + "fu_craftdre": "18", + "fu_craftdti": "49", + "fu_craftcue": "0 No" + }, + "fu_10": { + "fu_udsbentd": "17", + "fu_udsbenrs": "0 No" + }, + "fu_11": { + "fu_minttots": "97", + "fu_minttotw": "30", + "fu_mintscng": "22", + "fu_mintscnc": "88", + "fu_mintpcng": "13", + "fu_mintpcnc": "88" + }, + "fu_12": { + "fu_udsverfc": "21", + "fu_udsverfn": "13", + "fu_udsvernf": "8", + "fu_udsverlc": "97", + "fu_udsverlr": "12", + "fu_udsverln": "7", + "fu_udsvertn": "60", + "fu_udsverte": "22", + "fu_udsverti": "21" + }, + "fu_13": { + "fu_cogstat_c": "1 Better than normal for age" + }, + "form_status": "Complete", + "status": "released", + "uuid": "68af78c1-6200-4687-b58a-f693dbafd307" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_1": { + "fu_mocacomp": "1 Yes (CONTINUE WITH QUESTION 1b)", + "fu_mocareas": "95 = Physical problem", + "fu_mocaloc": "1 In ADC or clinic", + "fu_mocalan": "1 English", + "fu_mocavis": "1 Yes", + "fu_mocahear": "0 No", + "fu_mocatots": "88", + "fu_mocatrai": "97", + "fu_mocacube": "1", + "fu_mocacloc": "0", + "fu_mocaclon": "95", + "fu_mocacloh": "98", + "fu_mocanami": "3", + "fu_mocaregi": "8", + "fu_mocadigi": "2", + "fu_mocalett": "1", + "fu_mocaser": "3", + "fu_mocarepe": "96", + "fu_mocaflue": "97", + "fu_mocaabst": "2", + "fu_mocarecn": "4", + "fu_mocarecr": "88", + "fu_mocaordt": "98", + "fu_mocaormo": "1", + "fu_mocaoryr": "1", + "fu_mocaordy": "1", + "fu_mocaorpl": "0", + "fu_mocaorct": "0" + }, + "fu_2": { + "fu_npsycloc_c": "1 In ADC or clinic", + "fu_npsylan_c": "1 English", + "fu_npsylanx_c": "sfsfsf" + }, + "fu_3": { + "fu_craftvrs": "28", + "fu_crafturs": "23" + }, + "fu_4": { + "fu_udsbentc": "98" + }, + "fu_5": { + "fu_digforct": "8", + "fu_digforsl": "6" + }, + "fu_6": { + "fu_digbacct": "10", + "fu_digbacls": "4" + }, + "fu_7": { + "fu_animals_c": "60", + "fu_veg_c": "53" + }, + "fu_8": { + "fu_traila_c": "995", + "fu_trailarr_c": "20", + "fu_trailali_c": "13", + "fu_trailb_c": "120", + "fu_trailbrr_c": "34", + "fu_trailbli_c": "13" + }, + "fu_9": { + "fu_craftdvr": "33", + "fu_craftdre": "18", + "fu_craftdti": "49", + "fu_craftcue": "0 No" + }, + "fu_10": { + "fu_udsbentd": "17", + "fu_udsbenrs": "0 No" + }, + "fu_11": { + "fu_minttots": "97", + "fu_minttotw": "30", + "fu_mintscng": "22", + "fu_mintscnc": "88", + "fu_mintpcng": "13", + "fu_mintpcnc": "88" + }, + "fu_12": { + "fu_udsverfc": "21", + "fu_udsverfn": "13", + "fu_udsvernf": "8", + "fu_udsverlc": "97", + "fu_udsverlr": "12", + "fu_udsverln": "7", + "fu_udsvertn": "60", + "fu_udsverte": "22", + "fu_udsverti": "21" + }, + "fu_13": { + "fu_cogstat_c": "1 Better than normal for age" + }, + "form_status": "Complete", + "status": "released", + "uuid": "76d14e6b-1415-4dd4-902c-95fac16690fb" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_d1v1.json b/src/encoded/tests/data/inserts/fvp_d1v1.json new file mode 100644 index 0000000000..f5f769d8c1 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_d1v1.json @@ -0,0 +1,85 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2007-04-01", + "visitnum": "1", + "initials": "OK", + "WHODIDDX": "1 Diagnosis from single clinician", + "NORMCOG": "0 No", + "DEMENTED": "0 No", + "cogn_impair": { + "MCIAMEM": "0 Absent", + "MCIAPLUS": "0 Absent", + "MCIAPLAN": "0 No", + "MCIAPATT": "1 Yes", + "MCIAPEX": "0 No", + "MCIAPVIS": "0 No", + "MCINON1": "1 Present", + "MCIN1LAN": "0 No", + "MCIN1ATT": "1 Yes", + "MCIN1EX": "0 No", + "MCIN1VIS": "0 No", + "MCINON2": "0 Absent", + "MCIN2LAN": "1 Yes", + "MCIN2ATT": "0 No", + "MCIN2EX": "0 No", + "MCIN2VIS": "1 Yes", + "IMPNOMCI": "0 Absent" + }, + "PROBAD": "0 Absent", + "PROBADIF": "2 Contributing", + "POSSAD": "0 Absent", + "POSSADIF": "1 Primary", + "DLB": "0 Absent", + "DLBIF": "1 Primary", + "VASC": "1 Present", + "VASCIF": "1 Primary", + "ALCDEM": "0 Absent", + "ALCDEMIF": "1 Primary", + "DEMUN": "0 Absent", + "DEMUNIF": "2 Contributing", + "FTD": "0 Absent", + "FTDIF": "1 Primary", + "PPAPH": "1 Present", + "PPAPHIF": "1 Primary", + "PNAPH": "0 Absent", + "SEMDEMAN": "0 Absent", + "SEMDEMAG": "1 Present", + "PPAOTHR": "0 Absent", + "PSP": "1 Present", + "PSPIF": "3 Non-contributing", + "CORT": "0 Absent", + "CORTIF": "1 Primary", + "HUNT": "0 Absent", + "HUNTIF": "2 Contributing", + "PRION": "0 Absent", + "PRIONIF": "2 Contributing", + "MEDS": "0 Absent", + "MEDSIF": "3 Non-contributing", + "DYSILL": "0 Absent", + "DYSILLIF": "2 Contributing", + "DEP": "0 Absent", + "DEPIF": "1 Primary", + "OTHPSY": "0 Absent", + "OTHPSYIF": "2 Contributing", + "DOWNS": "0 Absent", + "DOWNSIF": "3 Non-contributing", + "PARK": "0 Absent", + "PARKIF": "1 Primary", + "STROKE": "0 Absent", + "STROKIF": "2 Contributing", + "HYCEPH": "1 Present", + "HYCEPHIF": "2 Contributing", + "BRNINJ": "0 Absent", + "BRNINJIF": "2 Contributing", + "NEOP": "1 Present", + "NEOPIF": "3 Non-contributing", + "COGOTH": "0 Absent", + "COGOTHIF": "2 Contributing", + "COGOTHX": "test", + "status": "released", + "uuid": "e64b6769-3c67-4dba-a2db-6d79d4c8ed1a" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_d1v2.json b/src/encoded/tests/data/inserts/fvp_d1v2.json new file mode 100644 index 0000000000..b70b457332 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_d1v2.json @@ -0,0 +1,93 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2009-04-01", + "visitnum": "1", + "initials": "OK", + "WHODIDDX": "1 Diagnosis from single clinician", + "NORMCOG": "0 No", + "DEMENTED": "0 No", + "cogn_impair": { + "MCIAMEM": "0 Absent", + "MCIAPLUS": "0 Absent", + "MCIAPLAN": "0 No", + "MCIAPATT": "1 Yes", + "MCIAPEX": "0 No", + "MCIAPVIS": "0 No", + "MCINON1": "1 Present", + "MCIN1LAN": "0 No", + "MCIN1ATT": "1 Yes", + "MCIN1EX": "0 No", + "MCIN1VIS": "0 No", + "MCINON2": "0 Absent", + "MCIN2LAN": "1 Yes", + "MCIN2ATT": "0 No", + "MCIN2EX": "0 No", + "MCIN2VIS": "1 Yes", + "IMPNOMCI": "0 Absent" + }, + "PROBAD": "0 Absent", + "PROBADIF": "2 Contributing", + "POSSAD": "0 Absent", + "POSSADIF": "1 Primary", + "DLB": "0 Absent", + "DLBIF": "1 Primary", + "VASC": "1 Present", + "VASCIF": "1 Primary", + "VASCPS": "0 Absent", + "VASCPSIF": "2 Contributing", + "ALCDEM": "0 Absent", + "ALCDEMIF": "1 Primary", + "DEMUN": "0 Absent", + "DEMUNIF": "2 Contributing", + "FTD": "0 Absent", + "FTDIF": "1 Primary", + "PPAPH": "1 Present", + "PPAPHIF": "1 Primary", + "PNAPH": "0 Absent", + "SEMDEMAN": "0 Absent", + "SEMDEMAG": "1 Present", + "PPAOTHR": "0 Absent", + "PSP": "1 Present", + "PSPIF": "3 Non-contributing", + "CORT": "0 Absent", + "CORTIF": "1 Primary", + "HUNT": "0 Absent", + "HUNTIF": "2 Contributing", + "PRION": "0 Absent", + "PRIONIF": "2 Contributing", + "MEDS": "0 Absent", + "MEDSIF": "3 Non-contributing", + "DYSILL": "0 Absent", + "DYSILLIF": "2 Contributing", + "DEP": "0 Absent", + "DEPIF": "1 Primary", + "OTHPSY": "0 Absent", + "OTHPSYIF": "2 Contributing", + "DOWNS": "0 Absent", + "DOWNSIF": "3 Non-contributing", + "PARK": "0 Absent", + "PARKIF": "1 Primary", + "STROKE": "0 Absent", + "STROKIF": "2 Contributing", + "HYCEPH": "1 Present", + "HYCEPHIF": "2 Contributing", + "BRNINJ": "0 Absent", + "BRNINJIF": "2 Contributing", + "NEOP": "1 Present", + "NEOPIF": "3 Non-contributing", + "COGOTH": "0 Absent", + "COGOTHIF": "2 Contributing", + "COGOTHX": "test", + "COGOTH2": "0 Absent", + "COGOTH2F": "2 Contributing", + "COGOTH2X": "test", + "COGOTH3": "1 Present", + "COGOTH3F": "3 Non-contributing", + "COGOTH3X": "test", + "status": "released", + "uuid": "7be44fdd-9976-438a-a9e3-812bb81cf761" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_d1v3.json b/src/encoded/tests/data/inserts/fvp_d1v3.json new file mode 100644 index 0000000000..cece5fe401 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_d1v3.json @@ -0,0 +1,342 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_dxmethod": "1 A single clinician", + "fu_sec1": { + "fu_normcog": "0 No (CONTINUE TO QUESTION 3)", + "fu_demented": "1 Yes (CONTINUE TO QUESTION 4)", + "fu_note_d1_3": { + "fu_note_d1_5": { + "fu_amndem": "1 Present", + "fu_pca": "1 Present", + "fu_ppasyn": "1 Present", + "fu_ppasynt": "1 Meets criteria for semantic PPA", + "fu_ftdsyn": "1 Present", + "fu_lbdsyn": "1 Present", + "fu_namndem": "1 Present" + } + }, + "fu_note_d1_6": { + "fu_mciamem": "1 Present", + "fu_mciaplus": "1 Present", + "fu_note_d1_8": { + "fu_mciaplan": "0 No", + "fu_mciapatt": "1 Yes", + "fu_mciapex": "1 Yes", + "fu_mciapvis": "0 No" + }, + "fu_mcinon1": "1 Present", + "fu_note_d1_9": { + "fu_mci1lan": "0 No", + "fu_mci1att": "1 Yes", + "fu_mci1ex": "0 No", + "fu_mci1vis": "0 No" + }, + "fu_mcinon2": "1 Present", + "fu_note_d1_10": { + "fu_mci2lan": "1 Yes", + "fu_mci2att": "1 Yes", + "fu_mci2ex": "0 No", + "fu_mci2vis": "0 No" + }, + "fu_impnomci": "1 Present" + } + }, + "fu_sec2": { + "fu_biomarker_findings": { + "fu_amylpet": "8 Unknown, not assessed", + "fu_amylcsf": "0 No", + "fu_fdgad": "1 Yes", + "fu_hippatr": "0 No", + "fu_taupetad": "8 Unknown, not assessed", + "fu_csftau": "0 No", + "fu_fdgftld": "0 No", + "fu_tpetftld": "1 Yes", + "fu_mrftld": "8 Unknown, not assessed", + "fu_datscan": "8 Unknown, not assessed", + "fu_othbiom": "0 No", + "fu_othbiomx": "dfdfg" + }, + "fu_image_findings": { + "fu_imaglinf": "8 Unknown/not assessed", + "fu_imaglac": "8 Unknown/not assessed", + "fu_imagmach": "0 No", + "fu_imagmich": "1 Yes", + "fu_imagmwmh": "0 No", + "fu_imagewmh": "8 Unknown/not assessed" + }, + "fu_admut": "9 Unknown/not assessed", + "fu_ftldmut": "0 No", + "fu_othmut": "0 No", + "fu_othmutx": "test" + }, + "fu_sec3": { + "fu_etio_diag": { + "fu_alzdis": "1 Present", + "fu_alzdisif": "1 Primary", + "fu_lbdis": "1 Present", + "fu_lbdif": "2 Contributing", + "fu_park": "1 Present", + "fu_msa": "1 Present", + "fu_msaif": "2 Contributing", + "fu_note_d1_13": { + "fu_psp": "1 Present", + "fu_pspif": "1 Primary", + "fu_cort": "1 Present", + "fu_cortif": "1 Primary", + "fu_ftldmo": "1 Present", + "fu_ftldmoif": "1 Primary", + "fu_ftldnos": "1 Present", + "fu_ftldnoif": "3 Non-contributin", + "fu_ftldsubt": "1 Tauopathy", + "fu_ftldsubx": "testtest" + }, + "fu_cvd": "1 Present", + "fu_cvdif": "1 Primary", + "fu_prevstk": "1 Yes", + "fu_strokedec": "0 No", + "fu_stkimag": "9 Unknown; no relevant imaging data available", + "fu_infnetw": "0 No", + "fu_infwmh": "1 Yes", + "fu_esstrem": "1 Present", + "fu_esstreif": "3 Non-contributing", + "fu_downs": "1 Present", + "fu_downsif": "3 Non-contributing", + "fu_hunt": "1 Present", + "fu_huntif": "3 Non-contributing", + "fu_prion": "1 Present", + "fu_prionif": "3 Non-contributing", + "fu_brninj": "1 Present", + "fu_brninjif": "1 Primary", + "fu_brnincte": "0 No", + "fu_hyceph": "1 Present", + "fu_hycephif": "1 Primary", + "fu_epilep": "1 Present", + "fu_epilepif": "1 Primary", + "fu_neop": "1 Present", + "fu_neopif": "1 Primary", + "fu_neopstat": "1 Benign", + "fu_hiv": "1 Present", + "fu_hivif": "3 Non-contributing", + "fu_othcog": "1 Present", + "fu_othcogif": "1 Primary", + "fu_othcogx": "test" + }, + "fu_conditions": { + "fu_dep": "1 Present", + "fu_depif": "1 Primary", + "fu_deptreat": "0 Untreated", + "fu_bipoldx": "1 Present", + "fu_bipoldif": "2 Contributing", + "fu_schizop": "1 Present", + "fu_schizoif": "2 Contributing", + "fu_anxiet": "1 Present", + "fu_anxietif": "2 Contributing", + "fu_delir": "1 Present", + "fu_delirif": "2 Contributing", + "fu_ptsddx": "1 Present", + "fu_ptsddxif": "1 Primary", + "fu_othpsy": "1 Present", + "fu_othpsyif": "3 Non-contributing", + "fu_othpsyx": "test", + "fu_alcdem": "1 Present", + "fu_alcdemif": "3 Non-contributing", + "fu_alcabuse": "0 No", + "fu_impsub": "1 Present", + "fu_impsubif": "1 Primary", + "fu_dysill": "1 Present", + "fu_dysillif": "3 Non-contributing", + "fu_meds": "1 Present", + "fu_medsif": "3 Non-contributing", + "fu_cogoth": "1 Present", + "fu_cogothif": "3 Non-contributing", + "fu_cogothx": "test", + "fu_cogoth2": "1 Present", + "fu_cogot2f": "1 Primary", + "fu_cogot2x": "test", + "fu_cogoth3": "1 Present", + "fu_cogot3f": "1 Primary", + "fu_cogot3x": "dfdfdf" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "d330df28-0ffc-484d-8354-22bec3dfb5f3" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_dxmethod": "1 A single clinician", + "fu_sec1": { + "fu_normcog": "0 No (CONTINUE TO QUESTION 3)", + "fu_demented": "1 Yes (CONTINUE TO QUESTION 4)", + "fu_note_d1_3": { + "fu_note_d1_5": { + "fu_amndem": "1 Present", + "fu_pca": "1 Present", + "fu_ppasyn": "1 Present", + "fu_ppasynt": "1 Meets criteria for semantic PPA", + "fu_ftdsyn": "1 Present", + "fu_lbdsyn": "1 Present", + "fu_namndem": "1 Present" + } + }, + "fu_note_d1_6": { + "fu_mciamem": "1 Present", + "fu_mciaplus": "1 Present", + "fu_note_d1_8": { + "fu_mciaplan": "0 No", + "fu_mciapatt": "1 Yes", + "fu_mciapex": "1 Yes", + "fu_mciapvis": "0 No" + }, + "fu_mcinon1": "1 Present", + "fu_note_d1_9": { + "fu_mci1lan": "0 No", + "fu_mci1att": "1 Yes", + "fu_mci1ex": "0 No", + "fu_mci1vis": "0 No" + }, + "fu_mcinon2": "1 Present", + "fu_note_d1_10": { + "fu_mci2lan": "1 Yes", + "fu_mci2att": "1 Yes", + "fu_mci2ex": "0 No", + "fu_mci2vis": "0 No" + }, + "fu_impnomci": "1 Present" + } + }, + "fu_sec2": { + "fu_biomarker_findings": { + "fu_amylpet": "8 Unknown, not assessed", + "fu_amylcsf": "0 No", + "fu_fdgad": "1 Yes", + "fu_hippatr": "0 No", + "fu_taupetad": "8 Unknown, not assessed", + "fu_csftau": "0 No", + "fu_fdgftld": "0 No", + "fu_tpetftld": "1 Yes", + "fu_mrftld": "8 Unknown, not assessed", + "fu_datscan": "8 Unknown, not assessed", + "fu_othbiom": "0 No", + "fu_othbiomx": "dfdfg" + }, + "fu_image_findings": { + "fu_imaglinf": "8 Unknown/not assessed", + "fu_imaglac": "8 Unknown/not assessed", + "fu_imagmach": "0 No", + "fu_imagmich": "1 Yes", + "fu_imagmwmh": "0 No", + "fu_imagewmh": "8 Unknown/not assessed" + }, + "fu_admut": "9 Unknown/not assessed", + "fu_ftldmut": "0 No", + "fu_othmut": "0 No", + "fu_othmutx": "test" + }, + "fu_sec3": { + "fu_etio_diag": { + "fu_alzdis": "1 Present", + "fu_alzdisif": "1 Primary", + "fu_lbdis": "1 Present", + "fu_lbdif": "2 Contributing", + "fu_park": "1 Present", + "fu_msa": "1 Present", + "fu_msaif": "2 Contributing", + "fu_note_d1_13": { + "fu_psp": "1 Present", + "fu_pspif": "1 Primary", + "fu_cort": "1 Present", + "fu_cortif": "1 Primary", + "fu_ftldmo": "1 Present", + "fu_ftldmoif": "1 Primary", + "fu_ftldnos": "1 Present", + "fu_ftldnoif": "3 Non-contributin", + "fu_ftldsubt": "1 Tauopathy", + "fu_ftldsubx": "testtest" + }, + "fu_cvd": "1 Present", + "fu_cvdif": "1 Primary", + "fu_prevstk": "1 Yes", + "fu_strokedec": "0 No", + "fu_stkimag": "9 Unknown; no relevant imaging data available", + "fu_infnetw": "0 No", + "fu_infwmh": "1 Yes", + "fu_esstrem": "1 Present", + "fu_esstreif": "3 Non-contributing", + "fu_downs": "1 Present", + "fu_downsif": "3 Non-contributing", + "fu_hunt": "1 Present", + "fu_huntif": "3 Non-contributing", + "fu_prion": "1 Present", + "fu_prionif": "3 Non-contributing", + "fu_brninj": "1 Present", + "fu_brninjif": "1 Primary", + "fu_brnincte": "0 No", + "fu_hyceph": "1 Present", + "fu_hycephif": "1 Primary", + "fu_epilep": "1 Present", + "fu_epilepif": "1 Primary", + "fu_neop": "1 Present", + "fu_neopif": "1 Primary", + "fu_neopstat": "1 Benign", + "fu_hiv": "1 Present", + "fu_hivif": "3 Non-contributing", + "fu_othcog": "1 Present", + "fu_othcogif": "1 Primary", + "fu_othcogx": "test" + }, + "fu_conditions": { + "fu_dep": "1 Present", + "fu_depif": "1 Primary", + "fu_deptreat": "0 Untreated", + "fu_bipoldx": "1 Present", + "fu_bipoldif": "2 Contributing", + "fu_schizop": "1 Present", + "fu_schizoif": "2 Contributing", + "fu_anxiet": "1 Present", + "fu_anxietif": "2 Contributing", + "fu_delir": "1 Present", + "fu_delirif": "2 Contributing", + "fu_ptsddx": "1 Present", + "fu_ptsddxif": "1 Primary", + "fu_othpsy": "1 Present", + "fu_othpsyif": "3 Non-contributing", + "fu_othpsyx": "test", + "fu_alcdem": "1 Present", + "fu_alcdemif": "3 Non-contributing", + "fu_alcabuse": "0 No", + "fu_impsub": "1 Present", + "fu_impsubif": "1 Primary", + "fu_dysill": "1 Present", + "fu_dysillif": "3 Non-contributing", + "fu_meds": "1 Present", + "fu_medsif": "3 Non-contributing", + "fu_cogoth": "1 Present", + "fu_cogothif": "3 Non-contributing", + "fu_cogothx": "test", + "fu_cogoth2": "1 Present", + "fu_cogot2f": "1 Primary", + "fu_cogot2x": "test", + "fu_cogoth3": "1 Present", + "fu_cogot3f": "1 Primary", + "fu_cogot3x": "dfdfdf" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "7d8f7831-f0c3-4323-9a22-466113c8b98d" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_d2v3.json b/src/encoded/tests/data/inserts/fvp_d2v3.json new file mode 100644 index 0000000000..4c0e414863 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_d2v3.json @@ -0,0 +1,86 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_cancer": "1 Yes, primary/non-metastatic", + "fu_diabet": "0 No", + "fu_myoinf": "0 No", + "fu_conghrt": "1 Yes", + "fu_afibrill": "1 Yes", + "fu_hypert": "8 Not assessed", + "fu_angina": "8 Not assessed", + "fu_hypchol": "8 Not assessed", + "fu_vb12def": "0 No", + "fu_thydis": "0 No", + "fu_arth": "0 No", + "fu_artype": "1 Rheumatoid", + "fu_note_d2_3": { + "fu_artupex": true, + "fu_artloex": true, + "fu_artspin": false, + "fu_artunkn": false + }, + "fu_urineinc": "0 No", + "fu_bowlinc": "0 No", + "fu_sleepap": "0 No", + "fu_remdis": "0 No", + "fu_hyposom": "1 Yes", + "fu_sleepoth": "1 Yes", + "fu_angiocp": "1 Yes", + "fu_angiopci": "1 Yes", + "fu_pacemake": "1 Yes", + "fu_hvalve": "8 Not assessed", + "fu_antienc": "8 Not assessed", + "fu_othcond": "1 Yes", + "form_status": "Complete", + "status": "released", + "uuid": "a684e418-957d-4519-a23d-a45411234d90" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_cancer": "1 Yes, primary/non-metastatic", + "fu_diabet": "0 No", + "fu_myoinf": "0 No", + "fu_conghrt": "1 Yes", + "fu_afibrill": "1 Yes", + "fu_hypert": "8 Not assessed", + "fu_angina": "8 Not assessed", + "fu_hypchol": "8 Not assessed", + "fu_vb12def": "0 No", + "fu_thydis": "0 No", + "fu_arth": "0 No", + "fu_artype": "1 Rheumatoid", + "fu_note_d2_3": { + "fu_artupex": false, + "fu_artloex": false, + "fu_artspin": true, + "fu_artunkn": true + }, + "fu_urineinc": "0 No", + "fu_bowlinc": "0 No", + "fu_sleepap": "0 No", + "fu_remdis": "0 No", + "fu_hyposom": "1 Yes", + "fu_sleepoth": "1 Yes", + "fu_angiocp": "1 Yes", + "fu_angiopci": "1 Yes", + "fu_pacemake": "1 Yes", + "fu_hvalve": "8 Not assessed", + "fu_antienc": "8 Not assessed", + "fu_othcond": "1 Yes", + "form_status": "Complete", + "status": "released", + "uuid": "f5cb871b-a35e-4036-9dd3-7eb819a14c99" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_e1v1.json b/src/encoded/tests/data/inserts/fvp_e1v1.json new file mode 100644 index 0000000000..b192cb3cb2 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_e1v1.json @@ -0,0 +1,49 @@ + +[{ + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2007-02-01", + "visitnum": "1", + "initials": "OK", + "neur_image": { + "comp_tomo": { + "CTFLM": "0 No", + "CTDIG": "0 No" + }, + "magn_clinic": { + "MRI1FLM": "0 No", + "MRI1DIG": "0 No" + }, + "magn_research_stru": { + "MRI2FLM": "1 Yes", + "MRI2DIG": "0 No" + }, + "magn_research_func": { + "MRI3FLM": "0 No", + "MRI3DIG": "1 Yes" + }, + "magn_spec": { + "MRISPFLM": "0 No", + "MRISPDIG": "1 Yes" + }, + "spect": { + "SPECTFLM": "0 No", + "SPECTDIG": "1 Yes" + }, + "pet": { + "PETFLM": "0 No", + "PETDIG": "1 Yes" + } + }, + "specimen": { + "DNA": "0 No", + "CSFANTEM": "1 Yes", + "SERUM": "0 No" + }, + "genotyping": { + "APOE": "0 No" + }, + "status": "released", + "uuid": "d5212cc4-979b-4e89-99ef-f4d7ed99166d" + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_e1v2.json b/src/encoded/tests/data/inserts/fvp_e1v2.json new file mode 100644 index 0000000000..d435c350a0 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_e1v2.json @@ -0,0 +1,96 @@ +[{ + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-01", + "visitnum": "1", + "initials": "OK", + "neur_image": { + "comp_tomo": { + "CTFLM": "0 No", + "CTDIG": "0 No" + }, + "magn_clinic": { + "MRI1FLM": "0 No", + "MRI1DIG": "1 Yes" + }, + "magn_research_stru": { + "MRI2FLM": "0 No", + "MRI2DIG": "0 No" + }, + "magn_research_func": { + "MRI3FLM": "0 No", + "MRI3DIG": "0 No" + }, + "magn_spec": { + "MRISPFLM": "0 No", + "MRISPDIG": "1 Yes" + }, + "spect": { + "SPECTFLM": "0 No", + "SPECTDIG": "0 No" + }, + "pet": { + "PETFLM": "0 No", + "PETDIG": "1 Yes" + } + }, + "specimen": { + "DNA": "0 No", + "CSFANTEM": "0 No", + "SERUM": "1 Yes" + }, + "genotyping": { + "APOE": "0 No" + }, + "status": "released", + "uuid": "a3e9b22a-f4a6-4c62-93e5-2822c612639a" +}, +{ + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2003-02-04", + "visitnum": "2", + "initials": "OK", + "neur_image": { + "comp_tomo": { + "CTFLM": "0 No", + "CTDIG": "0 No" + }, + "magn_clinic": { + "MRI1FLM": "0 No", + "MRI1DIG": "1 Yes" + }, + "magn_research_stru": { + "MRI2FLM": "0 No", + "MRI2DIG": "0 No" + }, + "magn_research_func": { + "MRI3FLM": "0 No", + "MRI3DIG": "0 No" + }, + "magn_spec": { + "MRISPFLM": "0 No", + "MRISPDIG": "1 Yes" + }, + "spect": { + "SPECTFLM": "0 No", + "SPECTDIG": "0 No" + }, + "pet": { + "PETFLM": "0 No", + "PETDIG": "1 Yes" + } + }, + "specimen": { + "DNA": "0 No", + "CSFANTEM": "0 No", + "SERUM": "1 Yes" + }, + "genotyping": { + "APOE": "0 No" + }, + "status": "released", + "uuid": "1f9e1c2c-c94a-45bf-8dae-459ea683d5ca" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_z1v1.json b/src/encoded/tests/data/inserts/fvp_z1v1.json new file mode 100644 index 0000000000..0063d7b9d1 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_z1v1.json @@ -0,0 +1,42 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2007-02-01", + "visitnum": "1", + "initials": "OK", + "A2SUB": "0 No", + "A2NOT": "95 Physical problem", + "A2COMM": "test", + "A3SUB": "0 No", + "A3NOT": "96 Cognitive/behavior problem", + "A3COMM": "test", + "A4SUB": "1 Yes", + "A4NOT": "97 Other problem", + "A4COMM": "test", + "B1SUB": "1 Yes", + "B1NOT": "97 Other problem", + "B1COMM": "test", + "B2SUB": "1 Yes", + "B2NOT": "98 Verbal refusal", + "B2COMM": "test", + "B3SUB": "0 No", + "B3NOT": "95 Physical problem", + "B3COMM": "test", + "B5SUB": "0 No", + "B5NOT": "97 Other problem", + "B5COMM": "test", + "B6SUB": "1 Yes", + "B6NOT": "98 Verbal refusal", + "B6COMM": "test", + "B7SUB": "0 No", + "B7NOT": "95 Physical problem", + "B7COMM": "test", + "B8SUB": "1 Yes", + "B8NOT": "98 Verbal refusal", + "B8COMM": "test", + "status": "released", + "uuid": "434b3cec-7b0b-4e25-bab4-954467fbb6b4" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_z1v2.json b/src/encoded/tests/data/inserts/fvp_z1v2.json new file mode 100644 index 0000000000..63571de2fb --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_z1v2.json @@ -0,0 +1,80 @@ +[{ + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-01", + "visitnum": "1", + "initials": "OK", + "A2SUB": "0 No", + "A2NOT": "95 Physical problem", + "A2COMM": "test", + "A3SUB": "0 No", + "A3NOT": "96 Cognitive/behavior problem", + "A3COMM": "test", + "A4SUB": "0 No", + "A4NOT": "97 Other problem", + "A4COMM": "test", + "B1SUB": "1 Yes", + "B1NOT": "95 Physical problem", + "B1COMM": "test", + "B2SUB": "0 No", + "B2NOT": "96 Cognitive/behavior problem", + "B2COMM": "test", + "B3SUB": "0 No", + "B3NOT": "97 Other problem", + "B3COMM": "test", + "B5SUB": "1 Yes", + "B5NOT": "98 Verbal refusal", + "B5COMM": "test", + "B6SUB": "0 No", + "B6NOT": "95 Physical problem", + "B6COMM": "test", + "B7SUB": "0 No", + "B7NOT": "96 Cognitive/behavior problem", + "B7COMM": "test", + "B8SUB": "1 Yes", + "B8NOT": "97 Other problem", + "B8COMM": "test", + "status": "released", + "uuid": "20539855-10bd-498d-b3fa-8b8ba39cd11c" +}, +{ + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2003-02-04", + "visitnum": "2", + "initials": "OK", + "A2SUB": "0 No", + "A2NOT": "95 Physical problem", + "A2COMM": "test", + "A3SUB": "0 No", + "A3NOT": "96 Cognitive/behavior problem", + "A3COMM": "test", + "A4SUB": "0 No", + "A4NOT": "97 Other problem", + "A4COMM": "test", + "B1SUB": "1 Yes", + "B1NOT": "95 Physical problem", + "B1COMM": "test", + "B2SUB": "0 No", + "B2NOT": "96 Cognitive/behavior problem", + "B2COMM": "test", + "B3SUB": "0 No", + "B3NOT": "97 Other problem", + "B3COMM": "test", + "B5SUB": "1 Yes", + "B5NOT": "98 Verbal refusal", + "B5COMM": "test", + "B6SUB": "0 No", + "B6NOT": "95 Physical problem", + "B6COMM": "test", + "B7SUB": "0 No", + "B7NOT": "96 Cognitive/behavior problem", + "B7COMM": "test", + "B8SUB": "1 Yes", + "B8NOT": "97 Other problem", + "B8COMM": "test", + "status": "released", + "uuid": "04e3ea54-129c-4f08-8276-7bed0d8e6b8b" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/fvp_z1xv3.json b/src/encoded/tests/data/inserts/fvp_z1xv3.json new file mode 100644 index 0000000000..5b9e2a6c16 --- /dev/null +++ b/src/encoded/tests/data/inserts/fvp_z1xv3.json @@ -0,0 +1,152 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "fu_note_z1x_1": { + "fu_langa1": "2 Spanish" + }, + "fu_note_z1x_2": { + "fu_a2sub": "1 Yes", + "fu_a2not": "96 - Cognitive/behavior problem", + "fu_langa2": "1 English" + }, + "fu_note_z1x_3": { + "fu_a3sub": "0 No", + "fu_a3not": "95 - Physical problem", + "fu_langa3": "2 Spanish" + }, + "fu_note_z1x_4": { + "fu_a4sub": "1 Yes", + "fu_a4not": "97 - Other problem", + "fu_langa4": "1 English" + }, + "fu_note_z1x_5": { + "fu_b1sub": "1 Yes", + "fu_b1not": "97 - Other problem", + "fu_langb1": "1 English" + }, + "fu_note_z1x_6": { + "fu_langb4": "1 English" + }, + "fu_note_z1x_7": { + "fu_b5sub": "0 No", + "fu_b5not": "98 - Verbal refusal", + "fu_langb5": "1 English" + }, + "fu_note_z1x_8": { + "fu_b6sub": "1 Yes", + "fu_b6not": "95 - Physical problem", + "fu_langb6": "1 English" + }, + "fu_note_z1x_9": { + "fu_b7sub": "1 Yes", + "fu_b7not": "96 - Cognitive/behavior problem", + "fu_langb7": "1 English" + }, + "fu_note_z1x_10": { + "fu_langb8": "1 English" + }, + "fu_note_z1x_11": { + "fu_langb9": "2 Spanish" + }, + "fu_note_z1x_12": { + "fu_langc1": "1 English" + }, + "fu_note_z1x_13": { + "fu_langc2": "1 English" + }, + "fu_note_z1x_14": { + "fu_langd": "2 Spanish" + }, + "fu_note_z1x_15": { + "fu_langd2": "1 English" + }, + "fu_cls_form": { + "fu_clssub": "1 Yes", + "fu_langcls": "2 Spanish" + }, + "form_status": "Complete", + "status": "released", + "uuid": "bf3c87bd-4548-4deb-81c9-79a9f6ecdba3" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "fu_note_z1x_1": { + "fu_langa1": "1 English" + }, + "fu_note_z1x_2": { + "fu_a2sub": "1 Yes", + "fu_a2not": "95 - Physical problem", + "fu_langa2": "1 English" + }, + "fu_note_z1x_3": { + "fu_a3sub": "0 No", + "fu_a3not": "96 - Cognitive/behavior problem", + "fu_langa3": "2 Spanish" + }, + "fu_note_z1x_4": { + "fu_a4sub": "1 Yes", + "fu_a4not": "97 - Other problem", + "fu_langa4": "1 English" + }, + "fu_note_z1x_5": { + "fu_b1sub": "1 Yes", + "fu_b1not": "97 - Other problem", + "fu_langb1": "1 English" + }, + "fu_note_z1x_6": { + "fu_langb4": "1 English" + }, + "fu_note_z1x_7": { + "fu_b5sub": "0 No", + "fu_b5not": "98 - Verbal refusal", + "fu_langb5": "1 English" + }, + "fu_note_z1x_8": { + "fu_b6sub": "1 Yes", + "fu_b6not": "95 - Physical problem", + "fu_langb6": "1 English" + }, + "fu_note_z1x_9": { + "fu_b7sub": "1 Yes", + "fu_b7not": "96 - Cognitive/behavior problem", + "fu_langb7": "1 English" + }, + "fu_note_z1x_10": { + "fu_langb8": "1 English" + }, + "fu_note_z1x_11": { + "fu_langb9": "2 Spanish" + }, + "fu_note_z1x_12": { + "fu_langc1": "1 English" + }, + "fu_note_z1x_13": { + "fu_langc2": "1 English" + }, + "fu_note_z1x_14": { + "fu_langd": "2 Spanish" + }, + "fu_note_z1x_15": { + "fu_langd2": "1 English" + }, + "fu_cls_form": { + "fu_clssub": "1 Yes", + "fu_langcls": "2 Spanish" + }, + "form_status": "Complete", + "status": "released", + "uuid": "8bb572e6-0ea3-4647-971d-d0d89a99bb8e" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/image.json b/src/encoded/tests/data/inserts/image.json index f9f2520be9..110ae618e7 100644 --- a/src/encoded/tests/data/inserts/image.json +++ b/src/encoded/tests/data/inserts/image.json @@ -38,7 +38,7 @@ { "caption": "Search page", "attachment": "search-page.jpg", - "submitted_by": "vsmalladi@gmail.com", + "submitted_by": "venkat.malladi@utsouthwestern.edu", "uuid": "2f2ef3dd-0d45-44fc-befa-c851cd04ecd7" }, { @@ -50,13 +50,13 @@ { "caption": "JSON Example", "attachment": "json.jpg", - "submitted_by": "vsmalladi@gmail.com", + "submitted_by": "venkat.malladi@utsouthwestern.edu", "uuid": "0f9eadae-95e7-49d9-b796-38925a995d0d" }, { "caption": "JSON Browser", "attachment": "json_browser_hires.jpg", - "submitted_by": "vsmalladi@gmail.com", + "submitted_by": "venkat.malladi@utsouthwestern.edu", "uuid": "7aaac70e-de90-4546-ae7f-60be5e376512" } ] diff --git a/src/encoded/tests/data/inserts/ivp_a1v1.json b/src/encoded/tests/data/inserts/ivp_a1v1.json new file mode 100644 index 0000000000..d486c5a686 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a1v1.json @@ -0,0 +1,42 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-05-20", + "visitnum": "1", + "initials": "JAR", + "formver": "1", + "inmds": "1 Yes", + "reason": "3 Other", + "reasonx": "test", + "refer": "7 Non-ADC media appeal (e.g. Alzheimer’s Association)", + "referx": "test", + "prestat": "1 Case/patient/proband", + "prespart": "2 Longitudinal follow-up planned", + "source": "1 Clinical Core", + "birthmo": 8, + "birthyr": 1939, + "sex": "1 Male", + "hispanic": "1 Yes", + "hispor": "50 Other, (specify)", + "hisporx": "test", + "race": "50 Other (specify)", + "racex": "test", + "racesec": "50 Other (specify)", + "racesecx": "test", + "raceter": "2 Black or African American", + "primlang": "1 English", + "educ": "16", + "livsit": "5 Other", + "livsitx": "test", + "independ": "1 Able to live independently", + "residenc": "5 Other", + "residenx": "test", + "zip": "750", + "maristat": "8 Other", + "maristax": "test", + "handed": "1 Left-handed", + "status": "released", + "uuid": "6907f83f-556c-49e9-ae34-590a27e7c390" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a1v2.json b/src/encoded/tests/data/inserts/ivp_a1v2.json new file mode 100644 index 0000000000..d5686b25bb --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a1v2.json @@ -0,0 +1,42 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1974-05-20", + "visitnum": "1", + "initials": "JAR", + "formver": "2", + "inmds": "1 Yes", + "reason": "3 Other", + "reasonx": "test", + "refer": "7 Non-ADC media appeal (e.g. Alzheimer's Association)", + "referx": "test", + "prestat": "1 Case/patient/proband", + "prespart": "2 Longitudinal follow-up planned", + "source": "1 Clinical Core", + "birthmo": 8, + "birthyr": 1939, + "sex": "1 Male", + "hispanic": "1 Yes", + "hispor": "50 Other, (specify)", + "hisporx": "test", + "race": "50 Other (specify)", + "racex": "test", + "racesec": "50 Other (specify)", + "racesecx": "test", + "raceter": "2 Black or African American", + "primlang": "1 English", + "educ": "16", + "livsit": "5 Other", + "livsitx": "test", + "independ": "1 Able to live independently", + "residenc": "5 Other", + "residenx": "test", + "zip": "750", + "maristat": "8 Other", + "maristax": "test", + "handed": "1 Left-handed", + "status": "released", + "uuid": "1da034cd-f4ee-4a20-bb0d-f1f5c14c276a" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a1v3.json b/src/encoded/tests/data/inserts/ivp_a1v3.json new file mode 100644 index 0000000000..15a9ad115b --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a1v3.json @@ -0,0 +1,28 @@ +[ + { + "prestat": "1 Case, patient, or proband", + "prespart": "2 Longitudinal follow-up planned", + "source": "1 Primarily ADC-funded (Clinical Core, Satellite Core, or other ADC Core or project)", + "birthmo": 1, + "birthyr": 1938, + "sex": "2 Female", + "hispanic": "0 No (If No, SKIP TO QUESTION 9)", + "race": "1 White", + "racesec": "88 None Reported", + "raceter": "88 None Reported", + "primlang": "1 English", + "educ": "12", + "livsitua": "3 Lives with one other person: a relative, friend, or roommate", + "independ": "4 Completely dependent", + "zip": "757", + "handed": "2 Right-handed", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "91d384c2-255a-4b33-aee4-c277f355ec55", + "patient": "000000", + "initials": "DT" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a2v1.json b/src/encoded/tests/data/inserts/ivp_a2v1.json new file mode 100644 index 0000000000..845018469b --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a2v1.json @@ -0,0 +1,24 @@ +[ + { + "inbirmo": "6", + "inbiryr": "1961", + "insex": "2 Female", + "inhisp": "0 No (If No, SKIP TO QUESTION 4)", + "inrace": "1 White", + "inrasec": "88 None Reported", + "inrater": "88 None Reported", + "ineduc": "20", + "inrelto": "7 Other", + "INRELTOX":"test", + "inlivwth": "1 Yes (If Yes, SKIP TO QUESTION 10)", + "inrely": "0 No", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-01-01", + "visitnum": "1", + "status": "released", + "uuid": "3f6e7298-911e-4fbc-8a00-2f539789df27", + "patient": "000000", + "initials": "DT" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a2v2.json b/src/encoded/tests/data/inserts/ivp_a2v2.json new file mode 100644 index 0000000000..1444f0d6ac --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a2v2.json @@ -0,0 +1,24 @@ +[ + { + "inbirmo": "6", + "inbiryr": "1961", + "insex": "2 Female", + "inhisp": "0 No (If No, SKIP TO QUESTION 4)", + "inrace": "1 White", + "inrasec": "88 None Reported", + "inrater": "88 None Reported", + "ineduc": "20", + "inrelto": "7 Other", + "INRELTOX":"test", + "inlivwth": "1 Yes (If Yes, SKIP TO QUESTION 10)", + "inrely": "0 No", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "0e0382aa-5600-4696-ae32-523da2bb29da", + "patient": "000000", + "initials": "DT" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a2v3.json b/src/encoded/tests/data/inserts/ivp_a2v3.json new file mode 100644 index 0000000000..1179396799 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a2v3.json @@ -0,0 +1,24 @@ +[ + { + "inbirmo": "6", + "inbiryr": "1961", + "insex": "2 Female", + "inhisp": "0 No (If No, SKIP TO QUESTION 4)", + "inrace": "1 White", + "inrasec": "88 None Reported", + "inrater": "88 None Reported", + "ineduc": "14 14", + "inrelto": "2 Child (by blood or through marriage or adoption)", + "inknown": "54", + "inlivwth": "1 Yes (If Yes, SKIP TO QUESTION 10)", + "inrely": "0 No", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "fbbfaedb-b34f-40cf-ad21-3097fba419dc", + "patient": "000000", + "initials": "DT" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a3v1.json b/src/encoded/tests/data/inserts/ivp_a3v1.json new file mode 100644 index 0000000000..fc47103da2 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a3v1.json @@ -0,0 +1,28 @@ +[{ + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2005-02-01", + "visitnum": "1", + "initials": "OK", + "parents": { + "MOMDEM": "1 Yes", + "MOMONSET": "68", + "MOMAGE": "80", + "DADDEM": "0 No" + }, + "siblings": { + "TWIN": "0 No", + "SIBS": "1", + "SIBSDEM": "0" + }, + "children": { + "KIDS": "1", + "KIDSDEM": "0" + }, + "other_relatives": { + "RELSDEM": "0" + }, + "status": "released", + "uuid": "77fe5c3a-4403-4157-9ca5-da561bda7635" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a3v2.json b/src/encoded/tests/data/inserts/ivp_a3v2.json new file mode 100644 index 0000000000..86adb61bb4 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a3v2.json @@ -0,0 +1,50 @@ + + [{ + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "parent": { + "mother": { + "momyob": "9999", + "MOMLIV": "0 No", + "momyod": "9999", + "momdem": "0 No", + "momonset": "999" + }, + "father": { + "dadyob": "9999", + "dadLIV": "0 No", + "dadyod": "9999", + "daddem": "0 No", + "dadonset": "999" + } + }, + "siblings": { + "TWIN": "0 No", + "TWINTYPE": "9 Unknown", + "sibs": "1", + "sib1": { + "sib1yob": "1923", + "sib1LIV": "0 No", + "sib1yod": "1968", + "sib1dem": "0 No", + "sib1ons": "999" + } + }, + "children": { + "kids": "1", + "kid1": { + "kid1yob": "1968", + "kid1LIV": "1 Yes", + "kid1dem": "0 No" + } + }, + "other_relatives": { + "RELSDEM": "0" + }, + "status": "released", + "uuid": "7c117582-4a9b-4d7e-9435-64197bc347bc" + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a3v3.json b/src/encoded/tests/data/inserts/ivp_a3v3.json new file mode 100644 index 0000000000..9423ab7a9e --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a3v3.json @@ -0,0 +1,82 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "DT", + "afffamm": "1 Yes", + "fadmut": "1 Yes, APP", + "fadmutx": "test", + "fadmuso": "1 Family report (no test documentation available)", + "fadmusox": "test", + "fftdmut": "2 Yes, PGRN", + "fftdmutx": "test", + "fftdmuso": "3 Research lab test documentation", + "fftdmusx": "test", + "fothmut": "1 Yes (SPECIFY)", + "fothmutx": "test", + "fothmuso": "9 Unknown", + "fothmusx": "test", + "note_a3_1": { + "mother": { + "mommob": "1", + "momyob": "1900", + "momdage": "80", + "momneur": "1 Cognitive impairment/behavior change", + "momprdx": "41 MCI - amnestic, single domain", + "mommoe": "1 Autopsy", + "momageo": "50" + }, + "father": { + "dadmob": "5", + "dadyob": "1901", + "daddage": "76", + "dadneur": "2 Parkinsonism", + "dadprdx": "42 MCI - multiple domain with amnesia", + "dadmoe": "2 Examination", + "dadageo": "60" + } + }, + "note_a3_2": { + "full_siblings": { + "sibs": "2", + "sib1": { + "sib1mob": "2", + "sib1yob": "1925", + "sib1agd": "96", + "sib1neu": "3 ALS", + "sib1pdx": "43 MCI - single domain nonamnestic", + "sib1moe": "3 Medical record review from formal dementia evaluation", + "sib1ago": "58" + }, + "sib2": { + "sib2mob": "9", + "sib2yob": "1930", + "sib2agd": "91", + "sib2neu": "3 ALS", + "sib2pdx": "43 MCI - single domain nonamnestic", + "sib2moe": "3 Medical record review from formal dementia evaluation", + "sib2ago": "62" + } + }, + "biological_children": { + "kids": "1", + "child1": { + "kid1mob": "06", + "kid1yob": "1950", + "kid1agd": "888", + "kid1neu": "8 N/A, no neurological problem or psychiatric condition", + "kid1pdx": "490 Other neuropathologic diagnosis not listed above", + "kid1moe": "2 Examination", + "kid1ago": "999" + } + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "519db490-651a-4ce5-ab2b-1925cb51bd43" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a4v1.json b/src/encoded/tests/data/inserts/ivp_a4v1.json new file mode 100644 index 0000000000..af1fa694fe --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a4v1.json @@ -0,0 +1,31 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2005-02-01", + "visitnum": "1", + "initials": "OK", + "PMEDS": "1 Yes", + "PMA": "Advil", + "1a_medi_strength": { + "PMAS": 99999, + "PMASU": "1 µg" + }, + "1a_frequency": { + "PMAF": 10, + "PMAFU": "1 daily" + }, + "1a_pre_prn": { + "PMAP": "0 No" + }, + "1a_prn_frequency": { + "PMAPF": 2, + "PMAPFU": "1 daily" + }, + "NMEDS": "0 No", + "VITASUPS": "0 No", + + "status": "released", + "uuid": "5b7c67ac-fce8-4bb2-8106-1099c3410de8" + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a4v2.json b/src/encoded/tests/data/inserts/ivp_a4v2.json new file mode 100644 index 0000000000..56bb3d0e66 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a4v2.json @@ -0,0 +1,27 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "anymeds": "1 Yes", + "drugid_1": "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "drugid_2": "d03181 Effexor", + "drugid_3": "d00051 Adalat", + "drugid_4": "d00253 Esidrix", + "not_listed_drugs": { + "drugid_31": "test", + "drug_name_31": "test", + "drugid_32": "test-test", + "drug_name_32": "test-test", + "drugid_33": "test-test-test", + "drug_name_33": "test-test-test" + }, + "form_status": "Complete", + "status": "released", + "uuid": "843aeadc-7738-42e3-a8cb-c7599eea6360" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a4v3.json b/src/encoded/tests/data/inserts/ivp_a4v3.json new file mode 100644 index 0000000000..8d2d1f7345 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a4v3.json @@ -0,0 +1,26 @@ +[{ + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "anymeds": "1 Yes", + "drugid_1": "d00049 acetaminophen (Anacin, Tempra, Tylenol)", + "drugid_2": "d03181 Effexor", + "drugid_3": "d00051 Adalat", + "drugid_4": "d00253 Esidrix", + "not_listed_drugs": { + "drugid_31": "test", + "drug_name_31": "test", + "drugid_32": "test-test", + "drug_name_32": "test-test", + "drugid_33": "test-test-test", + "drug_name_33": "test-test-test" + }, + "form_status": "Complete", + "status": "released", + "uuid": "d1d6a218-b0e8-4b42-a529-a04fdf4f9c4e" +} +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a5v1.json b/src/encoded/tests/data/inserts/ivp_a5v1.json new file mode 100644 index 0000000000..b9a92460fc --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a5v1.json @@ -0,0 +1,89 @@ + +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2003-02-01", + "visitnum": "1", + "initials": "OK", + "card_dise": { + "CVHATT": "0 Absent", + "CVAFIB": "1 Recent/Active", + "CVANGIO": "2 Remote/Inactive", + "CVBYPASS": "9 Unknown", + "CVPACE": "0 Absent", + "CVCHF": "1 Recent/Active", + "CVOTHR": "2 Remote/Inactive", + "CVOTHRX": "test" + }, + "cere_dise": { + "CBSTROKE": "0 Absent", + "STROK1YR": "Test", + "STROK2YR": "Test", + "STROK3YR": "Test", + "STROK4YR": "Test", + "STROK5YR": "Test", + "STROK6YR": "Test", + "CBTIA": "1 Recent/Active", + "TIA1YR": "Test", + "TIA2YR": "Test", + "TIA3YR": "Test", + "TIA4YR": "Test", + "TIA5YR": "Test", + "TIA6YR": "Test", + "CBOTHR": "2 Remote/Inactive", + "CBOTHRX": "Test" + }, + "park_dise": { + "PD": "0 Absent", + "PDYR": "Test", + "PDOTHR": "1 Recent/Active", + "PDOTHRYR": "test" + }, + "other_neur_cond": { + "SEIZURES": "0 Absent", + "TRAUMBRF": "1 Recent/Active", + "TRAUMEXT": "2 Remote/Inactive", + "TRAUMCHR": "9 Unknown", + "NCOTHR": "0 Absent", + "NCOTHRX": "test" + }, + "medi_cond": { + "HYPERTEN": "0 Absent", + "HYPERCHO": "1 Recent/Active", + "DIABETES": "2 Remote/Inactive", + "B12DEF": "9 Unknown", + "THYROID": "0 Absent", + "INCONTU": "0 Absent", + "INCONTF": "1 Recent/Active" + }, + "depr": { + "DEP2YRS": "0 No", + "DEPOTHR": "1 Yes" + }, + "sub_abuse_and_psyc": { + "alcohol": { + "ALCOHOL": "0 Absent" + }, + "cigarette": { + "TOBAC30": "0 No", + "TOBAC100": "1 Yes", + "SMOKYRS": "test", + "PACKSPER": "1 1 cigarette – < ½ pack", + "QUITSMOK": "test" + }, + "other_subs": { + "ABUSOTHR": "0 Absent", + "ABUSX": "test" + }, + "PSYCDIS": "0 Absent", + "PSYCDISX": "test" + }, + "status": "released", + "uuid": "e6bb64a6-a26a-49cb-b871-868b37c250a4" + } + +] + + \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a5v2.json b/src/encoded/tests/data/inserts/ivp_a5v2.json new file mode 100644 index 0000000000..decf8e53ce --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a5v2.json @@ -0,0 +1,85 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "card_dise": { + "CVHATT": "0 Absent", + "CVAFIB": "1 Recent/Active", + "CVANGIO": "2 Remote/Inactive", + "CVBYPASS": "9 Unknown", + "CVPACE": "0 Absent", + "CVCHF": "1 Recent/Active", + "CVOTHR": "2 Remote/Inactive", + "CVOTHRX": "test" + }, + "cere_dise": { + "CBSTROKE": "0 Absent", + "STROK1YR": "Test", + "STROK2YR": "Test", + "STROK3YR": "Test", + "STROK4YR": "Test", + "STROK5YR": "Test", + "STROK6YR": "Test", + "CBTIA": "1 Recent/Active", + "TIA1YR": "Test", + "TIA2YR": "Test", + "TIA3YR": "Test", + "TIA4YR": "Test", + "TIA5YR": "Test", + "TIA6YR": "Test", + "CBOTHR": "2 Remote/Inactive", + "CBOTHRX": "Test" + }, + "park_dise": { + "PD": "0 Absent", + "PDYR": "Test", + "PDOTHR": "1 Recent/Active", + "PDOTHRYR": "test" + }, + "other_neur_cond": { + "SEIZURES": "0 Absent", + "TRAUMBRF": "1 Recent/Active", + "TRAUMEXT": "2 Remote/Inactive", + "TRAUMCHR": "9 Unknown", + "NCOTHR": "0 Absent", + "NCOTHRX": "test" + }, + "medi_cond": { + "HYPERTEN": "0 Absent", + "HYPERCHO": "1 Recent/Active", + "DIABETES": "2 Remote/Inactive", + "B12DEF": "9 Unknown", + "THYROID": "0 Absent", + "INCONTU": "0 Absent", + "INCONTF": "1 Recent/Active" + }, + "depr": { + "DEP2YRS": "0 No", + "DEPOTHR": "1 Yes" + }, + "sub_abuse_and_psyc": { + "alcohol": { + "ALCOHOL": "0 Absent" + }, + "cigarette": { + "TOBAC30": "0 No", + "TOBAC100": "1 Yes", + "SMOKYRS": "test", + "PACKSPER": "1 1 cigarette – < ½ pack", + "QUITSMOK": "test" + }, + "other_subs": { + "ABUSOTHR": "0 Absent", + "ABUSX": "test" + }, + "PSYCDIS": "0 Absent", + "PSYCDISX": "test" + }, + "status": "released", + "uuid": "4e3bdb71-508d-4b51-8de3-2efd39f6e541" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_a5v3.json b/src/encoded/tests/data/inserts/ivp_a5v3.json new file mode 100644 index 0000000000..ca2adaa28a --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_a5v3.json @@ -0,0 +1,91 @@ +[ + { + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "DT", + "His_of_cig_alc": { + "cig_smok": { + "tobac30": "9 Unknown", + "tobac100": "9 Unknown", + "smokyrs": "87", + "quitsmok": "999" + }, + "alc_use": { + "alcoccas": "1 Yes", + "alcfreq": "4 Daily or almost daily" + } + }, + "cardi_dise": { + "cvhatt": "0 Absent", + "hattmult": "1 Yes", + "hattyear": "2003", + "cvafib": "0 Absent", + "cvangio": "0 Absent", + "cvbypass": "0 Absent", + "cvpacdef": "0 Absent", + "cvchf": "0 Absent", + "cvangina": "0 Absent", + "cvhvalve": "0 Absent", + "cvothr": "0 Absent" + }, + "cere_dise": { + "cbstroke": "0 Absent", + "strokmul": "0 No", + "strokyr": "2003", + "cbtia": "0 Absent", + "tiamult": "0 No", + "tiayear": "2003" + }, + "neuro_cond": { + "pd": "0 Absent", + "pdyr": "2003", + "pdothr": "0 Absent", + "pdothryr": "2000", + "seizures": "0 Absent", + "tbi": "0 Absent", + "tbibrief": "1 Single", + "tbiexten": "1 Single", + "tbiwolos": "1 Single", + "tbiyear": "2000" + }, + "medi_cond": { + "diabetes": "0 Absent", + "diabtype": "1 Type 1", + "hyperten": "1 Recent/Active", + "hypercho": "0 Absent", + "b12def": "0 Absent", + "thyroid": "0 Absent", + "arthrit": "0 Absent", + "arthtype": "1 Rheumatoid", + + "incontu": "0 Absent", + "incontf": "0 Absent", + "apnea": "0 Absent", + "rbd": "0 Absent", + "insomn": "0 Absent", + "othsleep": "0 Absent" + }, + "sub_abus": { + "alcohol": "0 Absent", + "abusothr": "0 Absent" + }, + "psych_cond": { + "ptsd": "0 Absent", + "bipolar": "0 Absent", + "schiz": "0 Absent", + "dep2yrs": "0 No", + "depothr": "9 Unknown", + "anxiety": "0 Absent", + "ocd": "0 Absent", + "npsydev": "0 Absent", + "psycdis": "0 Absent" + }, + "form_status": "Complete", + "status": "released", + "uuid": "15d77e66-883b-4f20-ad0c-246e20075f65" + } + +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b1v1.json b/src/encoded/tests/data/inserts/ivp_b1v1.json new file mode 100644 index 0000000000..0c66a6bb80 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b1v1.json @@ -0,0 +1,25 @@ +[ { + "_test": "test patient", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-01-01", + "visitnum": "1", + "status": "released", + "uuid": "0ac090b7-76fc-4f36-8616-52620a5b0936", + "patient": "000000", + "initials": "DT", + "subj_phys_meas": { + "height": "62.5", + "weight": "191", + "bpsys": "107", + "bpdias": "60", + "hrate": "56" + }, + "addi_phys_obse": { + "vision": "0 No", + "viscorr": "1 Yes", + "viswcorr": "0 No", + "hearing": "1 Yes", + "hearaid": "0 No" + } + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b1v2.json b/src/encoded/tests/data/inserts/ivp_b1v2.json new file mode 100644 index 0000000000..28535536bc --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b1v2.json @@ -0,0 +1,25 @@ +[ { + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "3fe4e000-3a9e-411a-83fd-107302390cd0", + "patient": "000000", + "initials": "DT", + "subj_phys_meas": { + "height": "62.5", + "weight": "191", + "bpsys": "107", + "bpdias": "60", + "hrate": "56" + }, + "addi_phys_obse": { + "vision": "0 No", + "viscorr": "1 Yes", + "viswcorr": "0 No", + "hearing": "1 Yes", + "hearaid": "0 No" + } + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b1v3.json b/src/encoded/tests/data/inserts/ivp_b1v3.json new file mode 100644 index 0000000000..e851c2b694 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b1v3.json @@ -0,0 +1,25 @@ +[ { + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "0f96373f-d25e-47ee-8f11-1cdffb212ff1", + "patient": "000000", + "initials": "DT", + "subj_phys_meas": { + "height": "62.5", + "weight": "191", + "bpsys": "107", + "bpdias": "60", + "hrate": "56" + }, + "addi_phys_obse": { + "vision": "0 No", + "viscorr": "1 Yes", + "viswcorr": "0 No", + "hearing": "1 Yes", + "hearaid": "0 No" + } + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b2v1.json b/src/encoded/tests/data/inserts/ivp_b2v1.json new file mode 100644 index 0000000000..6624af0786 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b2v1.json @@ -0,0 +1,23 @@ +[{ + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2005-02-01", + "visitnum": "1", + "initials": "OK", + "hach_isch_score": { + "ABRUPT": "0 Absent", + "STEPWISE": "1 Present", + "SOMATIC": "0 Absent", + "EMOT": "1 Present", + "HXHYPER": "0 Absent", + "HXSTROKE": "0 Absent", + "FOCLSYM": "2 Present", + "FOCLSIGN": "0 Absent", + "HACHIN": "test" + }, + + + "status": "released", + "uuid": "f94d3276-0c41-4ffe-a21e-5752531d3839" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b2v2.json b/src/encoded/tests/data/inserts/ivp_b2v2.json new file mode 100644 index 0000000000..59cbf34689 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b2v2.json @@ -0,0 +1,33 @@ +[{ + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "hach_isch_score": { + "ABRUPT": "0 Absent", + "STEPWISE": "1 Present", + "SOMATIC": "0 Absent", + "EMOT": "1 Present", + "HXHYPER": "0 Absent", + "HXSTROKE": "0 Absent", + "FOCLSYM": "2 Present", + "FOCLSIGN": "0 Absent", + "HACHIN": "test" + }, + "cere_dise": { + "CVDCOG": "0 No", + "STROKCOG": "1 Yes", + "CVDIMAG": "1 Yes", + "if_yes": { + "CVDIMAG1": "0 No", + "CVDIMAG2": "0 No", + "CVDIMAG3": "1 Yes", + "CVDIMAG4": "1 Yes", + "CVDIMAGX": "test" + } + }, + "status": "released", + "uuid": "13e83522-98a2-4c24-9601-9465025f49d1" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b3v1.json b/src/encoded/tests/data/inserts/ivp_b3v1.json new file mode 100644 index 0000000000..51ed301b5e --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b3v1.json @@ -0,0 +1,57 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-04-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "pdnormal": true, + "speech": "0 Normal", + "face_exp": "1 Minimal hypomimia, could be normal \"poker face\"", + "trem_at_rest": { + "fac_lip_chin": "0 Absent", + "r_hand": "1 Slight and infrequently present", + "l_hand": "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "r_foot": "3 Moderate in amplitude and present most of the time", + "l_foot": "4 Marked in amplitude and present most of the time" + }, + "action_trem_hands": { + "act_r_hand": "0 Absent", + "act_l_hand": "1 Slight; present with action" + }, + "rigidity": { + "rig_neck": "0 Absent", + "r_up": "4 Severe; range of motion achieved with difficulty", + "l_up": "0 Absent", + "r_low": "2 Mild to moderate", + "l_low": "4 Severe; range of motion achieved with difficulty", + "l_up_untest": "test" + }, + "finger_taps": { + "taps_r": "0 Normal", + "taps_l": "1 Mild slowing and/or reduction in amplitude" + }, + "hand_move": { + "movem_r": "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "movem_l": "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement" + }, + "move_of_hands": { + "rap_alt_r": "4 Can barely perform the task", + "rap_alt_l": "0 Normal" + }, + "leg_agil": { + "leg_agil_r": "1 Mild slowing and/or reduction in amplitude", + "leg_agil_l": "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement" + }, + "arise_chair": "3 Tends to fall back and may have to try more than one time, but can get up without help", + "posture": "0 Normal", + "gait": "1 Walks slowly; may shuffle with short steps, but no festination (hastening steps) or propulsion", + "post_stab": "2 Absence of postural response; would fall if not caught by examiner", + "bradykin": "3 Moderate slowness, poverty or small amplitude of movement", + "form_status": "Complete", + "status": "released", + "uuid": "34fe1d13-b792-4beb-b8d9-ef97d3da290e" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b3v2.json b/src/encoded/tests/data/inserts/ivp_b3v2.json new file mode 100644 index 0000000000..fd4e444d6e --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b3v2.json @@ -0,0 +1,57 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2008-04-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "pdnormal": true, + "speech": "0 Normal", + "face_exp": "1 Minimal hypomimia, could be normal \"poker face\"", + "trem_at_rest": { + "fac_lip_chin": "0 Absent", + "r_hand": "1 Slight and infrequently present", + "l_hand": "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "r_foot": "3 Moderate in amplitude and present most of the time", + "l_foot": "4 Marked in amplitude and present most of the time" + }, + "action_trem_hands": { + "act_r_hand": "0 Absent", + "act_l_hand": "1 Slight; present with action" + }, + "rigidity": { + "rig_neck": "0 Absent", + "r_up": "4 Severe; range of motion achieved with difficulty", + "l_up": "8 Untestable", + "r_low": "2 Mild to moderate", + "l_low": "4 Severe; range of motion achieved with difficulty", + "l_up_untest": "test" + }, + "finger_taps": { + "taps_r": "0 Normal", + "taps_l": "1 Mild slowing and/or reduction in amplitude" + }, + "hand_move": { + "movem_r": "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "movem_l": "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement" + }, + "move_of_hands": { + "rap_alt_r": "4 Can barely perform the task", + "rap_alt_l": "0 Normal" + }, + "leg_agil": { + "leg_agil_r": "1 Mild slowing and/or reduction in amplitude", + "leg_agil_l": "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement" + }, + "arise_chair": "3 Tends to fall back and may have to try more than one time, but can get up without help", + "posture": "0 Normal", + "gait": "1 Walks slowly; may shuffle with short steps, but no festination (hastening steps) or propulsion", + "post_stab": "2 Absence of postural response; would fall if not caught by examiner", + "bradykin": "3 Moderate slowness, poverty or small amplitude of movement", + "form_status": "Complete", + "status": "released", + "uuid": "15781e64-36da-4d59-a0b2-a9d03a7e41df" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b4v1.json b/src/encoded/tests/data/inserts/ivp_b4v1.json new file mode 100644 index 0000000000..0a3a3d0b20 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b4v1.json @@ -0,0 +1,17 @@ +[{ + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "2019-12-02", + "visitnum": "1", + "initials": "HY", + "memory": "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "orient": "0 None - 0 Fully oriented", + "judgment": "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "commun": "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "homehobb": "3 Severe - 3 No significant function in the home.", + "perscare": "0 None / Questionable - 0Fully capable of self-care (=0).", + "cdrsum": "5.0", + "cdrglob": "0 0.0 = No Impairment", + "uuid": "92e2bfe9-4b82-4288-a59b-e34160f8f079" +} +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b4v2.json b/src/encoded/tests/data/inserts/ivp_b4v2.json new file mode 100644 index 0000000000..65731ef0e1 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b4v2.json @@ -0,0 +1,25 @@ +[{ + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "2019-12-02", + "visitnum": "1", + "initials": "HY", + "sec1": { + "memory": "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "orient": "0 None - 0 Fully oriented", + "judgment": "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "commun": "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "homehobb": "3 Severe - 3 No significant function in the home.", + "perscare": "0 None / Questionable - 0Fully capable of self-care (=0).", + "cdrsum": "5.0", + "cdrglob": "0 0.0 = No Impairment" + }, + "sec2": { + "comport": "1 Mild - 1 Mild but definite changes in behavior.", + "cdrlang": "1 Mild - 1 Moderate word finding difficulty in speech; cannot name objects in environment; reduced phrase length and/or agrammatical speech; and/or reduced comprehension in conversation and reading." + }, + "cdrsupp": 7.0, + "cdrtot": 7.5, + "status": "released", + "uuid": "24814921-614f-4208-b5fa-28fdc4b169c3" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b4v3.json b/src/encoded/tests/data/inserts/ivp_b4v3.json new file mode 100644 index 0000000000..f591517e05 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b4v3.json @@ -0,0 +1,25 @@ +[{ + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "2019-12-02", + "visitnum": "1", + "header_complete": "Complete", + "initials": "HY", + "sec1": { + "memory": "0 None - 0 No memory loss, or slight inconsistent forgetfulness.", + "orient": "0 None - 0 Fully oriented", + "judgment": "1 Mild - 1 Moderate difficulty in handling problems, similarities, and differences; social judgment usually maintained.", + "commun": "1 Mild - 1 Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "homehobb": "3 Severe - 3 No significant function in the home.", + "perscare": "0 None / Questionable - 0Fully capable of self-care (=0).", + "cdrsum": "5.0", + "cdrglob": "0 0.0 = No Impairment" + }, + "sec2": { + "comport": "1 Mild - 1 Mild but definite changes in behavior.", + "cdrlang": "1 Mild - 1 Moderate word finding difficulty in speech; cannot name objects in environment; reduced phrase length and/or agrammatical speech; and/or reduced comprehension in conversation and reading." + }, + "form_status": "Complete", + "status": "released", + "uuid": "d7629345-af88-4948-9caa-0c926200acdf" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b5v1.json b/src/encoded/tests/data/inserts/ivp_b5v1.json new file mode 100644 index 0000000000..5da8c18515 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b5v1.json @@ -0,0 +1,27 @@ +[ + { + "_test": "test patient", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "npiqinf": "3 Other (SPECIFY)", + "npiqinfx": "STEPCHILD", + "del": "0 No", + "hall": "0 No", + "agit": "0 No", + "depd": "0 No", + "anx": "0 No", + "elat": "0 No", + "apa": "0 No", + "disn": "0 No", + "irr": "0 No", + "mot": "0 No", + "nite": "0 No", + "app": "0 No", + "status": "released", + "uuid": "dd153f31-5763-4bae-a40a-6f8dad2ed701", + "patient": "000000", + "initials": "DT" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b5v2.json b/src/encoded/tests/data/inserts/ivp_b5v2.json new file mode 100644 index 0000000000..ff2a9d8c2a --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b5v2.json @@ -0,0 +1,27 @@ +[ + { + "_test": "test patient", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "npiqinf": "3 Other (SPECIFY)", + "npiqinfx": "STEPCHILD", + "del": "0 No", + "hall": "0 No", + "agit": "0 No", + "depd": "0 No", + "anx": "0 No", + "elat": "0 No", + "apa": "0 No", + "disn": "0 No", + "irr": "0 No", + "mot": "0 No", + "nite": "0 No", + "app": "0 No", + "status": "released", + "uuid": "04046f1d-481c-4ade-ae02-a71099f1b9e5", + "patient": "000000", + "initials": "DT" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b5v3.json b/src/encoded/tests/data/inserts/ivp_b5v3.json new file mode 100644 index 0000000000..3433df363d --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b5v3.json @@ -0,0 +1,27 @@ +[ + { + "_test": "test patient", + "formver": "3.10", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "npiqinf": "3 Other (SPECIFY)", + "npiqinfx": "STEPCHILD", + "del": "0 No", + "hall": "0 No", + "agit": "0 No", + "depd": "0 No", + "anx": "0 No", + "elat": "0 No", + "apa": "0 No", + "disn": "0 No", + "irr": "0 No", + "mot": "0 No", + "nite": "0 No", + "app": "0 No", + "status": "released", + "uuid": "31cf6adf-c4b3-4a6c-96d9-bfa44c6fc78c", + "patient": "000000", + "initials": "DT" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b6v1.json b/src/encoded/tests/data/inserts/ivp_b6v1.json new file mode 100644 index 0000000000..f7f8310ebb --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b6v1.json @@ -0,0 +1,30 @@ +[ + { + "_test": "test patient", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-03-01", + "visitnum": "1", + "nogds": false, + "satis": "0 Yes", + "dropact": "1 Yes", + "empty": "0 No", + "bored": "0 No", + "spirits": "0 Yes", + "afraid": "0 No", + "happy": "0 Yes", + "helpless": "0 No", + "stayhome": "1 Yes", + "memprob": "0 No", + "wondrful": "0 Yes", + "wrthless": "0 No", + "energy": "1 No", + "hopeless": "0 No", + "better": "0 No", + "gds": "3", + "status": "released", + "uuid": "728fb10d-9900-45d5-8fb2-bcc04b7ea37b", + "patient": "000000", + "initials": "DT" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b6v2.json b/src/encoded/tests/data/inserts/ivp_b6v2.json new file mode 100644 index 0000000000..99d7505b49 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b6v2.json @@ -0,0 +1,30 @@ +[ + { + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "nogds": false, + "satis": "0 Yes", + "dropact": "1 Yes", + "empty": "0 No", + "bored": "0 No", + "spirits": "0 Yes", + "afraid": "0 No", + "happy": "0 Yes", + "helpless": "0 No", + "stayhome": "1 Yes", + "memprob": "0 No", + "wondrful": "0 Yes", + "wrthless": "0 No", + "energy": "1 No", + "hopeless": "0 No", + "better": "0 No", + "gds": "3", + "status": "released", + "uuid": "6a585488-cb45-4556-a478-88cbb2a321a5", + "patient": "000000", + "initials": "DT" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b6v3.json b/src/encoded/tests/data/inserts/ivp_b6v3.json new file mode 100644 index 0000000000..2481caf4e3 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b6v3.json @@ -0,0 +1,30 @@ +[ + { + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "nogds": false, + "satis": "0 Yes", + "dropact": "1 Yes", + "empty": "0 No", + "bored": "0 No", + "spirits": "0 Yes", + "afraid": "0 No", + "happy": "0 Yes", + "helpless": "0 No", + "stayhome": "1 Yes", + "memprob": "0 No", + "wondrful": "0 Yes", + "wrthless": "0 No", + "energy": "1 No", + "hopeless": "0 No", + "better": "0 No", + "gds": "3", + "status": "released", + "uuid": "1b05eaac-2f60-4991-8a4d-ec0728080849", + "patient": "000000", + "initials": "DT" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b7v1.json b/src/encoded/tests/data/inserts/ivp_b7v1.json new file mode 100644 index 0000000000..395c09a8b4 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b7v1.json @@ -0,0 +1,25 @@ +[ + { + "_test": "test patient", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-01-01", + "visitnum": "1", + "status": "released", + "uuid": "58ff674d-7b80-4890-a1b1-c0f5d0758da2", + "patient": "000000", + "initials": "DT", + "form_description": { + "bills": "0 Normal", + "taxes": "0 Normal", + "shopping": "0 Normal", + "games": "0 Normal", + "stove": "0 Normal", + "mealprep": "0 Normal", + "events": "0 Normal", + "payattn": "0 Normal", + "remdates": "0 Normal", + "travel": "0 Normal" + } + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b7v2.json b/src/encoded/tests/data/inserts/ivp_b7v2.json new file mode 100644 index 0000000000..8affa59a42 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b7v2.json @@ -0,0 +1,25 @@ +[ + { + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "6e1269b3-8186-4d53-9740-9dda1c4ae31c", + "patient": "000000", + "initials": "DT", + "form_description": { + "bills": "0 Normal", + "taxes": "0 Normal", + "shopping": "0 Normal", + "games": "0 Normal", + "stove": "0 Normal", + "mealprep": "0 Normal", + "events": "0 Normal", + "payattn": "0 Normal", + "remdates": "0 Normal", + "travel": "0 Normal" + } + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b7v3.json b/src/encoded/tests/data/inserts/ivp_b7v3.json new file mode 100644 index 0000000000..87b3433140 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b7v3.json @@ -0,0 +1,25 @@ +[ + { + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "9b0d5ac7-249c-43f1-8bc1-5d31b6821d75", + "patient": "000000", + "initials": "DT", + "form_description": { + "bills": "0 Normal", + "taxes": "0 Normal", + "shopping": "0 Normal", + "games": "0 Normal", + "stove": "0 Normal", + "mealprep": "0 Normal", + "events": "0 Normal", + "payattn": "0 Normal", + "remdates": "0 Normal", + "travel": "0 Normal" + } + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b8v1.json b/src/encoded/tests/data/inserts/ivp_b8v1.json new file mode 100644 index 0000000000..4c1116d073 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b8v1.json @@ -0,0 +1,17 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-05-20", + "visitnum": "1", + "initials": "JAR", + "normal": "1 Yes", + "focldef": "1 Yes", + "gaitdis": "0 No", + "eyemove": "9 Unknown", + + "status": "released", + "uuid": "73b449c9-59c7-4df9-99f7-00dd4214ad7a" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b8v2.json b/src/encoded/tests/data/inserts/ivp_b8v2.json new file mode 100644 index 0000000000..2a507b3f9a --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b8v2.json @@ -0,0 +1,16 @@ +[{ + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1979-05-20", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "normal": "1 Yes", + "focldef": "1 Yes", + "gaitdis": "0 No", + "eyemove": "9 Unknown", + + "form_status": "Complete", + "status": "released", + "uuid": "66ed823f-35a6-4334-8f1c-1284b121d1e1" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b8v3.json b/src/encoded/tests/data/inserts/ivp_b8v3.json new file mode 100644 index 0000000000..fd15224794 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b8v3.json @@ -0,0 +1,38 @@ +[{ + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1979-05-20", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "normexam": "1 Yes - abnormal findings were consistent with syndromes listed in Questions 2-8", + "note_b8": { + "parksign": "1 Yes", + "parksign_left": { + "slowingl": "1 Yes", + "rigidl": "1 Yes" + }, + "parksign-right": { + "slowingr": "1 Yes" + }, + "parksign_cont": { + "brady": "1 Yes", + "postinst": "1 Yes" + }, + "cvdsigns": "0 No (SKIP TO QUESTION 4)", + "neurosign_present": {}, + "neurosign_left": {}, + "neurosign_right": {}, + "postcort": "0 No", + "pspcbs": "0 No (SKIP TO QUESTION 6)", + "find_present": {}, + "find_left": {}, + "find_right": {}, + "alsfind": "1 Yes", + "gaitnph": "0 No", + "othneur": "0 No" + }, + "form_status": "Complete", + "status": "released", + "uuid": "71c0bc16-7d2c-4035-9348-dad821e540e8" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b9v1.json b/src/encoded/tests/data/inserts/ivp_b9v1.json new file mode 100644 index 0000000000..ca4682c245 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b9v1.json @@ -0,0 +1,69 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "memo_comp": { + "DECSUB": "0 No", + "DECIN": "0 No", + "DECCLIN": "1 Yes", + "DECAGE": "test" + }, + "cogn_symp": { + "indicate_impair": { + "COGMEM": "0 No", + "COGJUDG": "1 Yes", + "COGLANG": "9 Unknown", + "COGVIS": "0 No", + "COGATTN": "1 Yes", + "COGOTHR": "1 Yes", + "COGOTHRX": "test" + }, + "COGFRST": "1 Memory", + "COGFRSTX": "test", + "COGMODE": "1 Gradual (> 6 months)", + "COGMODEX": "test" + }, + "beha_symp": { + "indicate_beha_symp": { + "BEAPATHY": "0 No", + "BEDEP": "1 Yes", + "psychosis": { + "BEVHALL": "9 Unknown", + "BEAHALL": "1 Yes", + "BEDEL": "9 Unknown" + }, + "BEDISIN": "0 No", + "BEIRRIT": "1 Yes", + "BEAGIT": "9 Unknown", + "BEPERCH": "0 No", + "BEOTHR": "9 Unknown", + "BEOTHRX": "test" + }, + "BEFRST": "1 Apathy/withdrawal", + "BEFRSTX": "test", + "BEMODE": "2 Subacute (< 6 months)", + "BEMODEX": "test" + }, + "motor_symp": { + "indicate_motor_symp": { + "MOGAIT": "0 No", + "MOFALLS": "1 Yes", + "MOTREM": "9 Unknown", + "MOSLOW": "0 No" + }, + "MOFRST": "1 Gait disorder", + "MOMODE": "1 Gradual (> 6 months)", + "MOMODEX": "test" + }, + "overall": { + "COURSE": "1 Gradual progressive", + "FRSTCHG": "2 Behavior" + }, + "status": "released", + "uuid": "00c76549-50a4-49a5-8442-d09a5a9fabed" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b9v2.json b/src/encoded/tests/data/inserts/ivp_b9v2.json new file mode 100644 index 0000000000..3849a9ee46 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b9v2.json @@ -0,0 +1,73 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "memo_comp": { + "DECSUB": "0 No", + "DECIN": "0 No", + "DECCLIN": "1 Yes", + "DECAGE": "test" + }, + "cogn_symp": { + "indicate_impair": { + "COGMEM": "0 No", + "COGJUDG": "1 Yes", + "COGLANG": "9 Unknown", + "COGVIS": "0 No", + "COGATTN": "1 Yes", + "COGFLUC": "0 No", + "COGOTHR": "1 Yes", + "COGOTHRX": "test" + }, + "COGFRST": "1 Memory", + "COGFRSTX": "test", + "COGMODE": "1 Gradual (> 6 months)", + "COGMODEX": "test" + }, + "beha_symp": { + "indicate_beha_symp": { + "BEAPATHY": "0 No", + "BEDEP": "1 Yes", + "psychosis": { + "BEVHALL": "9 Unknown", + "BEVWELL": "0 No", + "BEAHALL": "1 Yes", + "BEDEL": "9 Unknown" + }, + "BEDISIN": "0 No", + "BEIRRIT": "1 Yes", + "BEAGIT": "9 Unknown", + "BEPERCH": "0 No", + "BEREM": "1 Yes", + "BEOTHR": "9 Unknown", + "BEOTHRX": "test" + }, + "BEFRST": "1 Apathy/withdrawal", + "BEFRSTX": "test", + "BEMODE": "2 Subacute (< 6 months)", + "BEMODEX": "test" + }, + "motor_symp": { + "indicate_motor_symp": { + "MOGAIT": "0 No", + "MOFALLS": "1 Yes", + "MOTREM": "9 Unknown", + "MOSLOW": "0 No" + }, + "MOFRST": "1 Gait disorder", + "MOMODE": "1 Gradual (> 6 months)", + "MOMODEX": "test", + "MOMOPARK": "88 NA" + }, + "overall": { + "COURSE": "1 Gradual progressive", + "FRSTCHG": "2 Behavior" + }, + "status": "released", + "uuid": "5e2fc9a4-d8d1-4050-9d9b-04dad03eec98" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_b9v3.json b/src/encoded/tests/data/inserts/ivp_b9v3.json new file mode 100644 index 0000000000..09ee746386 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_b9v3.json @@ -0,0 +1,66 @@ +[ + { + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "f786c647-f923-45b4-bbd7-7c17d2bb0a52", + "patient": "000000", + "initials": "DT", + "decl_in_memo": { + "decsub": "1 Yes", + "decin": "1 Yes" + }, + "cogn_symp": { + "decclcog": "1 Yes" + }, + "meaningful_impair": { + "cogmem": "1 Yes", + "cogori": "1 Yes", + "cogjudg": "1 Yes", + "coglang": "1 Yes", + "cogvis": "1 Yes", + "cogattn": "1 Yes", + "cogfluc": "0 No", + "cogothr": "0 No", + "cogfpred": "1 Memory", + "cogmode": "1 Gradual", + "decage": 70 + }, + "beha_symp": { + "decclbe": "1 Yes" + }, + "chge_in_behv": { + "beapathy": "0 No", + "bedep": "1 Yes" + }, + "psych": { + "bevhall": "0 No", + "beahall": "0 No", + "bedel": "0 No", + "bedisin": "0 No", + "beirrit": "0 No", + "beagit": "0 No", + "beperch": "0 No", + "berem": "0 No", + "beanx": "0 No", + "beothr": "0 No", + "befpred": "2 Depressed mood", + "bemode": "1 Gradual", + "beage": 70 + }, + "moto_symp": { + "decclmot": "0 No (If No, SKIP TO QUESTION 20)" + }, + "overall": { + "course": "1 Gradually progressive", + "frstchg": "1 Cognition" + }, + "candidate": { + "lbdeval": "0 No", + "ftldeval": "0 No" + } + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_c1v1.json b/src/encoded/tests/data/inserts/ivp_c1v1.json new file mode 100644 index 0000000000..e2387f6d78 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_c1v1.json @@ -0,0 +1,58 @@ + + [ { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-02-01", + "visitnum": "1", + "initials": "OK", + "c1_1": { + "MMSELOC": "1 In ADC/clinic", + "MMSELAN": "1 English", + "MMSELANX": "test", + "MMSEORDA": "95", + "MMSEORLO": "5", + "MMSE": "95 Physical problem" + }, + "NPSYCLOC": "1 In ADC/clinic", + "NPSYLAN": "1 English", + "NPSYLANX": "test", + "c1_3": { + "LOGIMO": "1989-09-09", + "LOGIPREV": "24", + "LOGIMEM": "9" + }, + "c1_4": { + "type": "object", + "DIGIF": "98", + "DIGIFLEN": "97" + }, + "c1_5": { + "DIGIB": "12", + "DIGIBLEN": "5" + }, + "c1_6": { + "ANIMALS": "70", + "VEG": "56" + }, + "c1_7": { + "TRAILA": "149", + "TRAILB": "995" + }, + "c1_8": { + "WAIS": "0" + }, + "c1_9": { + "MEMUNITS": "25", + "MEMTIME": "85" + }, + "c1_10": { + "BOSTON": "30" + }, + "c1_11": { + "COGSTAT": "1 Better than normal for age" + }, + "status": "released", + "uuid": "a625d3f8-1003-485d-8247-f14cba5da0e1" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_c1v2.json b/src/encoded/tests/data/inserts/ivp_c1v2.json new file mode 100644 index 0000000000..b89587e4b2 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_c1v2.json @@ -0,0 +1,62 @@ +[{ + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "c1_1": { + "MMSELOC": "1 In ADC/clinic", + "MMSELAN": "1 English", + "MMSE_score": { + "MMSEORDA": "5", + "MMSEORLO": "3" + }, + "PENTAGON": "95", + "MMSE": "96" + }, + "NPSYCLOC": "1 In ADC/clinic", + "NPSYLAN": "3 Other", + "NPSYLANX": "test", + "c1_3": { + "LOGIMO": "8888-88-88", + "LOGIPREV": "20", + "LOGIMEM": "10" + }, + "c1_4": { + "DIGIF": "10", + "DIGIFLEN": "6" + }, + "c1_5": { + "DIGIB": "6", + "DIGIBLEN": "96" + }, + "c1_6": { + "ANIMALS": "60", + "VEG": "98" + }, + "c1_7": { + "TRAILA": "995", + "TRAILARR": "30", + "TRAILALI": "13", + "TRAILB": "150", + "TRAILBRR": "12", + "TRAILBLI": "14" + }, + "c1_8": { + "WAIS": "90" + }, + "c1_9": { + "MEMUNITS": "20", + "MEMTIME": "80" + }, + "c1_10": { + "BOSTON": "97" + }, + "c1_11": { + "COGSTAT": "3 One or two test scores abnormal" + }, + "status": "released", + "uuid": "180cadba-1600-4349-928c-cfd9253c33d9" +} +] diff --git a/src/encoded/tests/data/inserts/ivp_c2v2.json b/src/encoded/tests/data/inserts/ivp_c2v2.json new file mode 100644 index 0000000000..33cb6aedbc --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_c2v2.json @@ -0,0 +1,101 @@ +[{ + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "6e0f6342-1ed8-486e-bc91-92e2befe563d", + "patient": "000000", + "initials": "DT", + "moca": { + "mocacomp": "1 Yes (CONTINUE WITH QUESTION 1b)", + "mocaloc": "1 In ADC or clinic", + "mocalan": "1 English", + "mocavis": "0 No", + "mocahear": "0 No", + "mocatots": "12", + "alert_mocatots": { + "mocatrai": "0", + "mocacube": "0", + "mocacloc": "1", + "mocaclon": "1", + "mocacloh": "1", + "mocanami": "3", + "mocaregi": "2", + "mocadigi": "1", + "mocalett": "1", + "mocaser7": "0", + "mocarepe": "1", + "mocaflue": "0", + "mocaabst": "0", + "mocarecn": "2", + "mocarecc": "2", + "mocarecr": "0", + "mocaordt": "0", + "mocaormo": "0", + "mocaoryr": "0", + "mocaordy": "1", + "mocaorpl": "1", + "mocaorct": "1" + } + }, + "admin_rema_btry": { + "npsycloc_c2": "1 In ADC or clinic", + "npsylanx_c2": "4" + }, + "crft_stry_recl": { + "craftvrs": "3", + "crafturs": "14" + }, + "bens_cplx_figr": { + "udsbentc": "5" + }, + "numb_span_test_fwd": { + "digforct": "5", + "digforsl": "4" + }, + "numb_span_test_bkwd": { + "digbacct": "3", + "digbacls": "2" + }, + "category_fluency": { + "animals_c2": "13", + "veg_c2": "21" + }, + "trail_make_test": { + "traila_c2": "0", + "trailarr_c2": "24", + "trailali_c2": "24", + "trailbli_c2": "0" + }, + "crft_stry_recl_dely": { + "craftdvr": "0", + "craftdre": "14", + "craftdti": "1", + "craftcue": "0 No" + }, + "bens_cplx_figr_recl": { + "udsbentd": "0", + "udsbenrs": "0 No" + }, + "mint": { + "minttots": "29", + "minttotw": "0", + "mintscng": "13", + "mintscnc": "3", + "mintpcng": "1", + "mintpcnc": "10" + }, + "verb_fluency_phone_test": { + "udsverfc": "3", + "udsverfn": "0", + "udsvernf": "11", + "udsverlc": "2", + "udsverlr": "0", + "udsverln": "15", + "udsvertn": "5", + "udsverte": "0", + "udsverti": "4" + } +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_c2v3.json b/src/encoded/tests/data/inserts/ivp_c2v3.json new file mode 100644 index 0000000000..70e3d1a535 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_c2v3.json @@ -0,0 +1,101 @@ +[{ + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "4d55e546-5b5c-4d08-8dd8-254149eec019", + "patient": "000000", + "initials": "DT", + "moca": { + "mocacomp": "1 Yes (CONTINUE WITH QUESTION 1b)", + "mocaloc": "1 In ADC or clinic", + "mocalan": "1 English", + "mocavis": "0 No", + "mocahear": "0 No", + "mocatots": "12", + "alert_mocatots": { + "mocatrai": "0", + "mocacube": "0", + "mocacloc": "1", + "mocaclon": "1", + "mocacloh": "1", + "mocanami": "3", + "mocaregi": "2", + "mocadigi": "1", + "mocalett": "1", + "mocaser7": "0", + "mocarepe": "1", + "mocaflue": "0", + "mocaabst": "0", + "mocarecn": "2", + "mocarecc": "2", + "mocarecr": "0", + "mocaordt": "0", + "mocaormo": "0", + "mocaoryr": "0", + "mocaordy": "1", + "mocaorpl": "1", + "mocaorct": "1" + } + }, + "admin_rema_btry": { + "npsycloc_c2": "1 In ADC or clinic", + "npsylanx_c2": "4" + }, + "crft_stry_recl": { + "craftvrs": "3", + "crafturs": "14" + }, + "bens_cplx_figr": { + "udsbentc": "5" + }, + "numb_span_test_fwd": { + "digforct": "5", + "digforsl": "4" + }, + "numb_span_test_bkwd": { + "digbacct": "3", + "digbacls": "2" + }, + "category_fluency": { + "animals_c2": "13", + "veg_c2": "21" + }, + "trail_make_test": { + "traila_c2": "0", + "trailarr_c2": "24", + "trailali_c2": "24", + "trailbli_c2": "0" + }, + "crft_stry_recl_dely": { + "craftdvr": "0", + "craftdre": "14", + "craftdti": "1", + "craftcue": "0 No" + }, + "bens_cplx_figr_recl": { + "udsbentd": "0", + "udsbenrs": "0 No" + }, + "mint": { + "minttots": "29", + "minttotw": "0", + "mintscng": "13", + "mintscnc": "3", + "mintpcng": "1", + "mintpcnc": "10" + }, + "verb_fluency_phone_test": { + "udsverfc": "3", + "udsverfn": "0", + "udsvernf": "11", + "udsverlc": "2", + "udsverlr": "0", + "udsverln": "15", + "udsvertn": "5", + "udsverte": "0", + "udsverti": "4" + } +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_d1v1.json b/src/encoded/tests/data/inserts/ivp_d1v1.json new file mode 100644 index 0000000000..32e4b8a8ed --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_d1v1.json @@ -0,0 +1,85 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-04-01", + "visitnum": "1", + "initials": "OK", + "WHODIDDX": "1 Diagnosis from single clinician", + "NORMCOG": "0 No", + "DEMENTED": "0 No", + "cogn_impair": { + "MCIAMEM": "0 Absent", + "MCIAPLUS": "0 Absent", + "MCIAPLAN": "0 No", + "MCIAPATT": "1 Yes", + "MCIAPEX": "0 No", + "MCIAPVIS": "0 No", + "MCINON1": "1 Present", + "MCIN1LAN": "0 No", + "MCIN1ATT": "1 Yes", + "MCIN1EX": "0 No", + "MCIN1VIS": "0 No", + "MCINON2": "0 Absent", + "MCIN2LAN": "1 Yes", + "MCIN2ATT": "0 No", + "MCIN2EX": "0 No", + "MCIN2VIS": "1 Yes", + "IMPNOMCI": "0 Absent" + }, + "PROBAD": "0 Absent", + "PROBADIF": "2 Contributing", + "POSSAD": "0 Absent", + "POSSADIF": "1 Primary", + "DLB": "0 Absent", + "DLBIF": "1 Primary", + "VASC": "1 Present", + "VASCIF": "1 Primary", + "ALCDEM": "0 Absent", + "ALCDEMIF": "1 Primary", + "DEMUN": "0 Absent", + "DEMUNIF": "2 Contributing", + "FTD": "0 Absent", + "FTDIF": "1 Primary", + "PPAPH": "1 Present", + "PPAPHIF": "1 Primary", + "PNAPH": "0 Absent", + "SEMDEMAN": "0 Absent", + "SEMDEMAG": "1 Present", + "PPAOTHR": "0 Absent", + "PSP": "1 Present", + "PSPIF": "3 Non-contributing", + "CORT": "0 Absent", + "CORTIF": "1 Primary", + "HUNT": "0 Absent", + "HUNTIF": "2 Contributing", + "PRION": "0 Absent", + "PRIONIF": "2 Contributing", + "MEDS": "0 Absent", + "MEDSIF": "3 Non-contributing", + "DYSILL": "0 Absent", + "DYSILLIF": "2 Contributing", + "DEP": "0 Absent", + "DEPIF": "1 Primary", + "OTHPSY": "0 Absent", + "OTHPSYIF": "2 Contributing", + "DOWNS": "0 Absent", + "DOWNSIF": "3 Non-contributing", + "PARK": "0 Absent", + "PARKIF": "1 Primary", + "STROKE": "0 Absent", + "STROKIF": "2 Contributing", + "HYCEPH": "1 Present", + "HYCEPHIF": "2 Contributing", + "BRNINJ": "0 Absent", + "BRNINJIF": "2 Contributing", + "NEOP": "1 Present", + "NEOPIF": "3 Non-contributing", + "COGOTH": "0 Absent", + "COGOTHIF": "2 Contributing", + "COGOTHX": "test", + "status": "released", + "uuid": "092e2e28-160d-4593-bf3f-0748e2a6b7dd" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_d1v2.json b/src/encoded/tests/data/inserts/ivp_d1v2.json new file mode 100644 index 0000000000..00f7c98621 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_d1v2.json @@ -0,0 +1,93 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2008-04-01", + "visitnum": "1", + "initials": "OK", + "WHODIDDX": "1 Diagnosis from single clinician", + "NORMCOG": "0 No", + "DEMENTED": "0 No", + "cogn_impair": { + "MCIAMEM": "0 Absent", + "MCIAPLUS": "0 Absent", + "MCIAPLAN": "0 No", + "MCIAPATT": "1 Yes", + "MCIAPEX": "0 No", + "MCIAPVIS": "0 No", + "MCINON1": "1 Present", + "MCIN1LAN": "0 No", + "MCIN1ATT": "1 Yes", + "MCIN1EX": "0 No", + "MCIN1VIS": "0 No", + "MCINON2": "0 Absent", + "MCIN2LAN": "1 Yes", + "MCIN2ATT": "0 No", + "MCIN2EX": "0 No", + "MCIN2VIS": "1 Yes", + "IMPNOMCI": "0 Absent" + }, + "PROBAD": "0 Absent", + "PROBADIF": "2 Contributing", + "POSSAD": "0 Absent", + "POSSADIF": "1 Primary", + "DLB": "0 Absent", + "DLBIF": "1 Primary", + "VASC": "1 Present", + "VASCIF": "1 Primary", + "VASCPS": "0 Absent", + "VASCPSIF": "2 Contributing", + "ALCDEM": "0 Absent", + "ALCDEMIF": "1 Primary", + "DEMUN": "0 Absent", + "DEMUNIF": "2 Contributing", + "FTD": "0 Absent", + "FTDIF": "1 Primary", + "PPAPH": "1 Present", + "PPAPHIF": "1 Primary", + "PNAPH": "0 Absent", + "SEMDEMAN": "0 Absent", + "SEMDEMAG": "1 Present", + "PPAOTHR": "0 Absent", + "PSP": "1 Present", + "PSPIF": "3 Non-contributing", + "CORT": "0 Absent", + "CORTIF": "1 Primary", + "HUNT": "0 Absent", + "HUNTIF": "2 Contributing", + "PRION": "0 Absent", + "PRIONIF": "2 Contributing", + "MEDS": "0 Absent", + "MEDSIF": "3 Non-contributing", + "DYSILL": "0 Absent", + "DYSILLIF": "2 Contributing", + "DEP": "0 Absent", + "DEPIF": "1 Primary", + "OTHPSY": "0 Absent", + "OTHPSYIF": "2 Contributing", + "DOWNS": "0 Absent", + "DOWNSIF": "3 Non-contributing", + "PARK": "0 Absent", + "PARKIF": "1 Primary", + "STROKE": "0 Absent", + "STROKIF": "2 Contributing", + "HYCEPH": "1 Present", + "HYCEPHIF": "2 Contributing", + "BRNINJ": "0 Absent", + "BRNINJIF": "2 Contributing", + "NEOP": "1 Present", + "NEOPIF": "3 Non-contributing", + "COGOTH": "0 Absent", + "COGOTHIF": "2 Contributing", + "COGOTHX": "test", + "COGOTH2": "0 Absent", + "COGOTH2F": "2 Contributing", + "COGOTH2X": "test", + "COGOTH3": "1 Present", + "COGOTH3F": "3 Non-contributing", + "COGOTH3X": "test", + "status": "released", + "uuid": "74a33fb7-3876-45cf-a261-5f376b1ab2ad" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_d1v3.json b/src/encoded/tests/data/inserts/ivp_d1v3.json new file mode 100644 index 0000000000..7d9632485d --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_d1v3.json @@ -0,0 +1,104 @@ +[{ + "patient": "000000", + "adcid": "25 University of Texas Southwestern", + "visdate": "1979-05-20", + "visitnum": "1", + "initials": "JAR", + "header_complete": "Complete", + "dxmethod": "2 A formal consensus panel", + "sec1": { + "normcog": "0 No (CONTINUE TO QUESTION 3)", + "demented": "1 Yes (CONTINUE TO QUESTION 4)", + "note_d1_3": { + "demen_synd": { + "amndem": "1 Present", + "pca": "0 Absent", + "ppasyn": "0 Absent", + "ftdsyn": "0 Absent", + "lbdsyn": "0 Absent", + "namndem": "0 Absent" + } + }, + "note_d1_6": { + "mciamem": "0 Absent", + "mciaplus": "0 Absent", + + "mcinon1": "0 Absent", + + "mcinon2": "0 Absent", + + "impnomci": "0 Absent" + } + }, + "sec2": { + "biomarker_find": { + "amylpet": "0 No", + "amylcsf": "0 No", + "fdgad": "0 No", + "hippatr": "0 No", + "taupetad": "0 No", + "csftau": "0 No", + "fdgftld": "0 No", + "tpetftld": "0 No", + "mrftld": "0 No", + "datscan": "0 No", + "othbiom": "0 No" + }, + "image_find": { + "imaglinf": "0 No", + "imaglac": "0 No", + "imagmach": "0 No", + "imagmich": "0 No", + "imagmwmh": "0 No", + "imagewmh": "0 No" + }, + "admut": "9 Unknown/not assessed", + "ftldmut": "9 Unknown/not assessed", + "othmut": "9 Unknown/not assessed" + }, + "sec3": { + "etio_diag": { + "alzdis": "1 Present", + "alzdisif": "1 Primary", + "lbdis": "0 Absent", + "msa": "0 Absent", + "note_d1_13": { + "psp": "0 Absent", + "cort": "0 Absent", + "ftldmo": "0 Absent", + "ftldnos": "0 Absent" + }, + "cvd": "0 Absent", + "esstrem": "0 Absent", + "downs": "0 Absent", + "hunt": "0 Absent", + "prion": "0 Absent", + "brninj": "0 Absent", + "hyceph": "0 Absent", + "epilep": "0 Absent", + "neop": "0 Absent", + "hiv": "0 Absent", + "othcog": "0 Absent" + }, + "condition": { + "dep": "0 Absent", + "bipoldx": "0 Absent", + "schizop": "0 Absent", + "anxiet": "0 Absent", + "delir": "0 Absent", + "ptsddx": "0 Absent", + "othpsy": "0 Absent", + "alcdem": "0 Absent", + "impsub": "0 Absent", + "dysill": "0 Absent", + "meds": "0 Absent", + "cogoth": "0 Absent", + "cogoth2": "0 Absent", + "cogoth3": "0 Absent" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "1309fe09-0607-4b82-82bd-760783918c68" +} +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_d2v2.json b/src/encoded/tests/data/inserts/ivp_d2v2.json new file mode 100644 index 0000000000..532689f88b --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_d2v2.json @@ -0,0 +1,37 @@ +[{ + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "cancer": "1 Yes, primary/non-metastatic", + "cancsite": "BREAST", + "status": "released", + "uuid": "e8dd565c-c38d-4a73-8462-3b2c61eb18bb", + "patient": "000000", + "initials": "DT", + "sele_note": { + "diabet": "0 No", + "myoinf": "0 No", + "conghrt": "0 No", + "afibrill": "0 No", + "hypert": "1 Yes", + "angina": "0 No", + "hypchol": "1 Yes", + "vb12def": "1 Yes", + "thydis": "0 No", + "arth": "0 No", + "urineinc": "0 No", + "bowlinc": "0 No", + "sleepap": "0 No", + "remdis": "0 No", + "hyposom": "0 No", + "sleepoth": "0 No", + "angiocp": "0 No", + "angiopci": "0 No", + "pacemake": "0 No", + "hvalve": "0 No", + "antienc": "0 No", + "othcond": "0 No" + } + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_d2v3.json b/src/encoded/tests/data/inserts/ivp_d2v3.json new file mode 100644 index 0000000000..4c9cb8bd52 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_d2v3.json @@ -0,0 +1,37 @@ +[{ + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "cancer": "1 Yes, primary/non-metastatic", + "cancsite": "BREAST", + "status": "released", + "uuid": "bde7b6d4-8530-4330-8e6c-fd0c3b6257f1", + "patient": "000000", + "initials": "DT", + "sele_note": { + "diabet": "0 No", + "myoinf": "0 No", + "conghrt": "0 No", + "afibrill": "0 No", + "hypert": "1 Yes", + "angina": "0 No", + "hypchol": "1 Yes", + "vb12def": "1 Yes", + "thydis": "0 No", + "arth": "0 No", + "urineinc": "0 No", + "bowlinc": "0 No", + "sleepap": "0 No", + "remdis": "0 No", + "hyposom": "0 No", + "sleepoth": "0 No", + "angiocp": "0 No", + "angiopci": "0 No", + "pacemake": "0 No", + "hvalve": "0 No", + "antienc": "0 No", + "othcond": "0 No" + } + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_e1v1.json b/src/encoded/tests/data/inserts/ivp_e1v1.json new file mode 100644 index 0000000000..0ef2caf62a --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_e1v1.json @@ -0,0 +1,49 @@ + +[{ + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-02-01", + "visitnum": "1", + "initials": "OK", + "neur_image": { + "comp_tomo": { + "CTFLM": "0 No", + "CTDIG": "0 No" + }, + "magn_clinic": { + "MRI1FLM": "0 No", + "MRI1DIG": "0 No" + }, + "magn_research_stru": { + "MRI2FLM": "1 Yes", + "MRI2DIG": "0 No" + }, + "magn_research_func": { + "MRI3FLM": "0 No", + "MRI3DIG": "1 Yes" + }, + "magn_spec": { + "MRISPFLM": "0 No", + "MRISPDIG": "1 Yes" + }, + "spect": { + "SPECTFLM": "0 No", + "SPECTDIG": "1 Yes" + }, + "pet": { + "PETFLM": "0 No", + "PETDIG": "1 Yes" + } + }, + "specimen": { + "DNA": "0 No", + "CSFANTEM": "1 Yes", + "SERUM": "0 No" + }, + "genotyping": { + "APOE": "0 No" + }, + "status": "released", + "uuid": "ac554f36-84d9-463f-bc81-6782858f2c6e" + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_e1v2.json b/src/encoded/tests/data/inserts/ivp_e1v2.json new file mode 100644 index 0000000000..f4506d8ee1 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_e1v2.json @@ -0,0 +1,48 @@ +[{ + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "neur_image": { + "comp_tomo": { + "CTFLM": "0 No", + "CTDIG": "0 No" + }, + "magn_clinic": { + "MRI1FLM": "0 No", + "MRI1DIG": "0 No" + }, + "magn_research_stru": { + "MRI2FLM": "1 Yes", + "MRI2DIG": "0 No" + }, + "magn_research_func": { + "MRI3FLM": "0 No", + "MRI3DIG": "1 Yes" + }, + "magn_spec": { + "MRISPFLM": "0 No", + "MRISPDIG": "1 Yes" + }, + "spect": { + "SPECTFLM": "0 No", + "SPECTDIG": "1 Yes" + }, + "pet": { + "PETFLM": "0 No", + "PETDIG": "1 Yes" + } + }, + "specimen": { + "DNA": "0 No", + "CSFANTEM": "1 Yes", + "SERUM": "0 No" + }, + "genotyping": { + "APOE": "0 No" + }, + "status": "released", + "uuid": "06dc3119-e620-4786-916d-e39d54f8759c" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_z1v1.json b/src/encoded/tests/data/inserts/ivp_z1v1.json new file mode 100644 index 0000000000..99d2ef7e79 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_z1v1.json @@ -0,0 +1,42 @@ +[ + { + "patient": "000000", + "formver": "1", + "adcid": "25 University of Texas Southwestern", + "visdate": "2006-02-01", + "visitnum": "1", + "initials": "OK", + "A2SUB": "0 No", + "A2NOT": "95 Physical problem", + "A2COMM": "test", + "A3SUB": "0 No", + "A3NOT": "96 Cognitive/behavior problem", + "A3COMM": "test", + "A4SUB": "1 Yes", + "A4NOT": "97 Other problem", + "A4COMM": "test", + "B1SUB": "1 Yes", + "B1NOT": "97 Other problem", + "B1COMM": "test", + "B2SUB": "1 Yes", + "B2NOT": "98 Verbal refusal", + "B2COMM": "test", + "B3SUB": "0 No", + "B3NOT": "95 Physical problem", + "B3COMM": "test", + "B5SUB": "0 No", + "B5NOT": "97 Other problem", + "B5COMM": "test", + "B6SUB": "1 Yes", + "B6NOT": "98 Verbal refusal", + "B6COMM": "test", + "B7SUB": "0 No", + "B7NOT": "95 Physical problem", + "B7COMM": "test", + "B8SUB": "1 Yes", + "B8NOT": "98 Verbal refusal", + "B8COMM": "test", + "status": "released", + "uuid": "9b99b256-5419-4305-929e-1fee815c788d" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_z1v2.json b/src/encoded/tests/data/inserts/ivp_z1v2.json new file mode 100644 index 0000000000..41e513542e --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_z1v2.json @@ -0,0 +1,42 @@ +[ + { + "patient": "000000", + "formver": "2", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "initials": "OK", + "A2SUB": "0 No", + "A2NOT": "95 Physical problem", + "A2COMM": "test", + "A3SUB": "0 No", + "A3NOT": "96 Cognitive/behavior problem", + "A3COMM": "test", + "A4SUB": "1 Yes", + "A4NOT": "97 Other problem", + "A4COMM": "test", + "B1SUB": "1 Yes", + "B1NOT": "97 Other problem", + "B1COMM": "test", + "B2SUB": "1 Yes", + "B2NOT": "98 Verbal refusal", + "B2COMM": "test", + "B3SUB": "0 No", + "B3NOT": "95 Physical problem", + "B3COMM": "test", + "B5SUB": "0 No", + "B5NOT": "97 Other problem", + "B5COMM": "test", + "B6SUB": "1 Yes", + "B6NOT": "98 Verbal refusal", + "B6COMM": "test", + "B7SUB": "0 No", + "B7NOT": "95 Physical problem", + "B7COMM": "test", + "B8SUB": "1 Yes", + "B8NOT": "98 Verbal refusal", + "B8COMM": "test", + "status": "released", + "uuid": "023b0df7-971e-4a1d-8da2-3ad938e339e2" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_z1xv2.json b/src/encoded/tests/data/inserts/ivp_z1xv2.json new file mode 100644 index 0000000000..54a79791db --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_z1xv2.json @@ -0,0 +1,67 @@ + +[{ + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "54743739-a350-4a28-8d27-fcd75999e505", + "patient": "000000", + "initials": "DT", + "note_z1x_1": { + "langa1": "1 English" + }, + "note_z1x_2": { + "langa2": "1 English", + "a2sub": "1 Yes" + }, + "note_z1x_3": { + "langa3": "1 English", + "a3sub": "1 Yes" + }, + "note_z1x_4": { + "langa4": "1 English", + "a4sub": "1 Yes" + }, + "note_z1x_5": { + "langa5": "1 English" + }, + "note_z1x_6": { + "langb1": "1 English", + "b1sub": "1 Yes" + }, + "note_z1x_7": { + "langb4": "1 English" + }, + "note_z1x_8": { + "langb5": "1 English", + "b5sub": "1 Yes" + }, + "note_z1x_9": { + "langb6": "1 English", + "b6sub": "1 Yes" + }, + "note_z1x_10": { + "langb7": "1 English", + "b7sub": "1 Yes" + }, + "note_z1x_11": { + "langb8": "1 English" + }, + "note_z1x_12": { + "langb9": "1 English" + }, + "note_z1x_13": { + "langc2": "1 English" + }, + "note_z1x_14": { + "langd1": "1 English" + }, + "note_z1x_15": { + "langd2": "1 English" + }, + "cls_form": { + "clssub": "0 No" + } + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/ivp_z1xv3.json b/src/encoded/tests/data/inserts/ivp_z1xv3.json new file mode 100644 index 0000000000..e597a73a46 --- /dev/null +++ b/src/encoded/tests/data/inserts/ivp_z1xv3.json @@ -0,0 +1,67 @@ + +[{ + "_test": "test patient", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2015-01-01", + "visitnum": "1", + "status": "released", + "uuid": "39b6d49e-ebc8-4b2b-b0a2-4e6c06f5b7a2", + "patient": "000000", + "initials": "DT", + "note_z1x_1": { + "langa1": "1 English" + }, + "note_z1x_2": { + "langa2": "1 English", + "a2sub": "1 Yes" + }, + "note_z1x_3": { + "langa3": "1 English", + "a3sub": "1 Yes" + }, + "note_z1x_4": { + "langa4": "1 English", + "a4sub": "1 Yes" + }, + "note_z1x_5": { + "langa5": "1 English" + }, + "note_z1x_6": { + "langb1": "1 English", + "b1sub": "1 Yes" + }, + "note_z1x_7": { + "langb4": "1 English" + }, + "note_z1x_8": { + "langb5": "1 English", + "b5sub": "1 Yes" + }, + "note_z1x_9": { + "langb6": "1 English", + "b6sub": "1 Yes" + }, + "note_z1x_10": { + "langb7": "1 English", + "b7sub": "1 Yes" + }, + "note_z1x_11": { + "langb8": "1 English" + }, + "note_z1x_12": { + "langb9": "1 English" + }, + "note_z1x_13": { + "langc2": "1 English" + }, + "note_z1x_14": { + "langd1": "1 English" + }, + "note_z1x_15": { + "langd2": "1 English" + }, + "cls_form": { + "clssub": "0 No" + } + }] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/lab.json b/src/encoded/tests/data/inserts/lab.json index 0d79697866..054cd95146 100644 --- a/src/encoded/tests/data/inserts/lab.json +++ b/src/encoded/tests/data/inserts/lab.json @@ -634,7 +634,7 @@ "name": "venkat-malladi", "phone1": "000-000-0000", "phone2": "000-000-0000", - "pi": "vsmalladi@gmail.com", + "pi": "venkat.malladi@utsouthwestern.edu", "postal_code": "75390-8852", "state": "TX", "status": "current", diff --git a/src/encoded/tests/data/inserts/m1.json b/src/encoded/tests/data/inserts/m1.json new file mode 100644 index 0000000000..ff72667f75 --- /dev/null +++ b/src/encoded/tests/data/inserts/m1.json @@ -0,0 +1,71 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "box_a": { + "changemo": "11", + "changedy": "12", + "changeyr": "1988", + "uds_ftld_sect": { + "uds_status": { + "protocol": "1 Annual UDS follow-up by telephone (CONTINUE TO QUESTION 2a1)", + "aconsent": "1 Yes (CONTINUE TO QUESTION 2b)" + }, + "change_reason": { + "recogim": "1 Yes", + "rephyill": "0 No", + "rerefuse": "1 Yes", + "renavail": "0 No", + "renurse": "1 Yes", + "nursemo": "9", + "nursedy": "12", + "nurseyr": "1879", + "rejoin": "1 Yes" + } + }, + "ftld_module": { + "ftlddisc": "1 Yes", + "ftldreas": "1 ADC decision", + "ftldreax": "test" + } + }, + + "form_status": "Complete", + "status": "released", + "uuid": "f92415d6-a677-43d3-b16a-ce7464e533a7" + }, + { + "patient": "000010", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2002-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + + "box_b": { + "deceased": "1 Yes", + "discont": "0 No", + "death": { + "deathmo": "9", + "deathdy": "31", + "deathyr": "1985", + "autopsy": "0 No ADC autopsy expected" + }, + "dropped": { + "discmo": "11", + "discday": "23", + "discyr": "1982", + "dropreas": "1 ADC decision or protocol" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "0f0a0cc0-f66d-4667-bee4-5060e0dbecda" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/medication.json b/src/encoded/tests/data/inserts/medication.json index 7602c82c7e..ca42b2f68e 100644 --- a/src/encoded/tests/data/inserts/medication.json +++ b/src/encoded/tests/data/inserts/medication.json @@ -47,14 +47,6 @@ "status": "released", "uuid": "3cbfa17c-88fd-4b84-ab19-4a8926529bf1" }, - { - "end_date": "1902-03-13", - "start_date": "1901-08-19", - "patient": "KCEPT294KIZ", - "name": "IL-2 (Aldesleukin)", - "status": "released", - "uuid": "0e611831-7bdd-44ed-86cb-8d9f625dfd0d" - }, { "end_date": "1903-09-24", "start_date": "1903-04-16", @@ -83,7 +75,7 @@ "end_date": "1861-06-11", "start_date": "1860-06-11", "patient": "KCEPT359MHZ", - "name": "Pazopanib", + "name": "NKTR-262", "status": "released", "uuid": "33b6c359-e1ea-4950-9b4e-9c0ac9485b55" } diff --git a/src/encoded/tests/data/inserts/moca.json b/src/encoded/tests/data/inserts/moca.json new file mode 100644 index 0000000000..546fd71166 --- /dev/null +++ b/src/encoded/tests/data/inserts/moca.json @@ -0,0 +1,28 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "visuo_exec": 3, + "memory": { + "naming": 2, + "att_dig": 0, + "att_letters": 1, + "att_subtr": 1.5, + "lang_rep": 2, + "lang_fluen": 1, + "abstraction": 0, + "del_recall": 3, + "orientation": 5, + "yr_edu": 1, + "total": 11.5 + }, + "form_status": "Complete", + "status": "released", + "uuid": "bf86ebc9-41d6-45ce-bef8-521831af33d1" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/page.json b/src/encoded/tests/data/inserts/page.json index 379e2a94e0..ce179629d3 100644 --- a/src/encoded/tests/data/inserts/page.json +++ b/src/encoded/tests/data/inserts/page.json @@ -2,7 +2,7 @@ { "name": "homepage", "title": "The Kidney Cancer Program", - "status": "released", + "status": "public", "uuid": "27f9abd9-0081-4ade-8c82-95ec12b3a7dd", "layout": { "rows": [ @@ -50,7 +50,7 @@ "name": "test-section", "title": "Test Section", "lab": "thomas-gingeras", - "status": "released", + "status": "public", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "41c4ea4e-7a8e-4b91-8fe3-384d0adc8735", "layout": { @@ -77,7 +77,7 @@ "parent": "/test-section", "name": "subpage", "title": "Subpage", - "status": "released", + "status": "public", "lab": "thomas-gingeras", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "331928f7-d8f7-4ea6-b4e0-8d380fb22974", @@ -153,7 +153,7 @@ { "name": "images", "title": "Images", - "status": "released", + "status": "public", "uuid": "61edd6b2-bfdb-4db1-b950-8845ac37f65c", "layout": { "rows": [ @@ -177,7 +177,7 @@ "name": "help", "title": "Help", "lab": "thomas-gingeras", - "status": "released", + "status": "public", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "d28df7c5-a2eb-4451-a0ca-29b447a56f78", "layout": { @@ -204,7 +204,7 @@ "parent": "/help", "name": "project-overview", "title": "Project overview", - "status": "released", + "status": "public", "lab": "thomas-gingeras", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "c6568e16-0b9e-46ef-a4cf-e71873800d5e", @@ -245,7 +245,7 @@ "parent": "/help", "name": "getting-started", "title": "Using the portal", - "status": "released", + "status": "public", "lab": "thomas-gingeras", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "665cc658-6a6f-4f19-9356-53c85b169383", @@ -303,7 +303,7 @@ "parent": "/help", "name": "rest-api", "title": "The KCE REST API", - "status": "released", + "status": "public", "lab": "thomas-gingeras", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "489953c7-5808-47ed-aba6-8372966b9183", @@ -361,7 +361,7 @@ "parent": "/help", "name": "cohort", "title": "Guide to Cohort", - "status": "released", + "status": "public", "lab": "thomas-gingeras", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "87a5cc92-a5cd-4534-890d-3c1a4b64de48", @@ -390,7 +390,7 @@ "parent": "/help", "name": "citing-kce", "title": "Citing KCE", - "status": "released", + "status": "public", "lab": "venkat-malladi", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "fdf3b352-6079-4a58-96e2-33936a49e97d", @@ -422,7 +422,7 @@ "parent": "/help", "name": "contacts", "title": "Contact", - "status": "released", + "status": "public", "lab": "thomas-gingeras", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "c2c47d4e-3d87-4c90-a36c-79906eb81e7f", @@ -454,7 +454,7 @@ "parent": "/help", "name": "file-formats", "title": "Common File Formats Used by KCE", - "status": "released", + "status": "public", "lab": "thomas-gingeras", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "d8421759-e8f9-4d7c-9488-9826d46a2508", @@ -486,7 +486,7 @@ "parent": "/help", "name": "data-organization", "title": "Data Organization", - "status": "released", + "status": "public", "lab": "venkat-malladi", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "2f0fefc1-0c09-46c2-b6b1-ec05feebc8b9", @@ -527,7 +527,7 @@ "parent": "/help", "name": "dictionary", "title": "Dictionary", - "status": "released", + "status": "public", "lab": "venkat-malladi", "submitted_by": "/users/bec25393-2ab7-4e84-abbf-7241b455093b/", "uuid": "8642b9ec-bf5b-4491-be2c-29930cc4e98f", @@ -535,7 +535,7 @@ "blocks": [ { "@id": "#block1", - "body": "

    :

    \n\n

    Terminology and Definitions

    \n\n

    Patient Demographics

    \n\n

    Patient ID (KCEPTXXXXXX): A unique (11-digit) identifier for each patient, treated for renal tumor at UT Southwestern between 1998-current. This number protects the identity of the patient. If the patient information is deleted from KCE, the ID is not reused. 

    \n\n

    Age at Diagnosis: The age of the patient at his or her last birthday before diagnosis of renal tumor.

    \n\n

    Sex: Identifies the sex of the patient as recorded in patient’s EMR.

    \n\n

    Ethnicity: Persons of Spanish or Hispanic origin as recorded in patient’s EMR. Patients that declined or their records were not found are recorded as “unknown”.

    \n\n

    Race: The primary race of the person (American Indian, Asian, Black, Hawaiian Pacific, White, Others) as recorded in patient’s EMR. 

    \n\n

    Vital Status: Patient's status (Alive or deceased) as recorded in EMR or in Tumor Registry.

    \n\n

    Surgery

    \n\n

    Surgery: The surgery treatment status, surgery hospital location, the Nephrectomy type,  and the method (Nephrectomy approach and nephrectomy robotic assist) of nephrectomy for patients that underwent surgery. For patients with surgery at an outside institution, the surgery hospital location is recorded as “Outside”. Patients that did not undergo surgery,  their surgery treatment status are recorded as “No” (management at UTSW for active surveillance or metastasis without surgical treatment).

    \n\n

    Pathology Report

    \n\n

     All available variables from pathology reports are recorded. Variables in the free text pathology reports (2006-current) are extracted using computer programing. Data from reports prior to 2006 are manually extracted and details are displayed below. Discrepancies found in the pathology reports are reviewed and corrected when appropriate:

    \n\n

    Histologic Subtype:

    \n\n
      \n\t
    • Acquired cystic disease-associated renal cell carcinoma (ACD-RCC)
    • \n\t
    • Angiomyolipoma (AML)
    • \n\t
    • Chromophobe renal cell carcinoma (ChRCC)
    • \n\t
    • Clear cell papillary renal cell carcinoma (ccPRCC)
    • \n\t
    • Clear cell renal cell carcinoma (ccRCC)
    • \n\t
    • Collecting duct carcinoma (CDC)
    • \n\t
    • Cystic nephroma (CN)
    • \n\t
    • Hereditary leiomyomatosis and RCC-associated RCC (FH RCC)
    • \n\t
    • Metanephric adenoma (MA)
    • \n\t
    • MiT family translocation renal cell carcinoma (MiT TRCC)
    • \n\t
    • Mucinous tubular and spindle cell carcinoma (MTSCC)
    • \n\t
    • Multilocular cystic renal neoplasm of low malignant potential (MCRN)
    • \n\t
    • Oncocytic renal neoplasm, not further classified (RON)
    • \n\t
    • Oncocytoma (RO)
    • \n\t
    • Other
    • \n\t
    • Papillary renal cell carcinoma (PRCC) 
    • \n\t
    • Renal cell carcinoma, not further classified (RCC, NOS)
    • \n\t
    • Renal medullary carcinoma (RMC)
    • \n\t
    • SDH deficient renal cell carcinoma (SDH RCC)
    • \n\t
    • Tubulocystic renal cell carcinoma (TC RCC)
    • \n\t
    • Unclassified RCC
    • \n
    \n\n

    Laterality: laterality of the tumor is recorded when available in the pathology report. Synchronous or metachronous bilateral tumors are recorded.

    \n\n

    Size: greatest dimension of tumor was recorded in cm.

    \n\n

    Focality: single or multiple foci of tumors in that specimen is recorded when available.

    \n\n

    Sarcomatoid: presence of sarcomatoid dedifferentiation when reported.

    \n\n

    Necrosis: presence of tumor necrosis (this is available only after 2012).

    \n\n

    Grade: highest Fuhrman or ISUP grade seen in tumor, 1-4. Benign tumors and ChRCC are recorded as “not applicable”. Tumors for which grade was not reported in pathology are considered “not available”.

    \n\n

    Margins: tumor transected at the surgical margins are considered positive.

    \n\n

    LVI: lymphovascular invasion in non-muscle containing vessels.

    \n\n

    Perinephric infiltrate: tumor extension into perinephric tissues, identified microscopically.

    \n\n

    Renal Vein involvement: tumor extension into major renal veins, identified microscopically.

    \n\n

    Ipsilateral adrenal gland involvement: tumor extension into adrenal gland, contiguous or not (this was reported only after 2010 and were derived based on gross description in prior pathology reports. If not stated in old reports, it was assumed to be continuous).

    \n\n

    Pelvicaliceal involvement: tumor extension into pelvicalyceal (this will be part of staging 2018 onwards and is may not be mentioned in the prior pathology reports).

    \n\n

    AJCC TNM stage: Included both the pathology and clinical stage and is summarized below:

    \n\n
      \n\t
    • Stage 4: cM1 or pM1 or pT4 (include N2 for 6th edition).
    • \n\t
    • Stage 3:\n\t
        \n\t\t
      • pN1 or cN1.
      • \n\t\t
      • pT3 (pN0, pNX); if no path available then: cT3. 
      • \n\t
      \n\t
    • \n\t
    • Stage 2: pT2 (>7 cm, limited to kidney); if no path available then: cT2.
    • \n\t
    • Stage 1:  pT1 (<7 cm, limited to kidney); if no path available then: cT1.
    • \n\t
    • T. substage.6th: highest substage between path and clinical stage (TR) for pT3 and 4.
    • \n\t
    • T. substage.7th: highest substage between path and clinical stage (TR) for pT3 and 4.
    • \n\t
    • N: highest substage between path and clinical stage (TR).
    • \n\t
    • TNM Stage 6th edition: composite stage based 6th edition rules.
    • \n\t
    • TNM Stage 7th edition: composite stage based on 7th edition rules.
    • \n
    \n\n

    Metastasis

    \n\n

    Metastasis Status: Patients that had histologic proven metastasis either at the time of nephrectomy or subsequently (FNA, core biopsy or metastasectomy), or patients started on systemic cancer drug, or received radiotherapy in non-renal site (including thrombus) or stated to have metastasis in the clinical notes are categorized as “Yes”.

    \n\n

    Metastatic Site: This is recorded either from pathology report using natural language search or from clinical and radiotherapy notes. These may not be all inclusive.

    \n\n

    Histology Proven: Record of metastatic RCC in pathology reports and nephrectomy specimens are considered histologically proven.

    \n\n

    Medication

    \n\n

    Follow up Data

    \n\n

    Please note that all dates displayed on the KCE are not true dates and are displayed as a reference to express the timeframe of events.

    \n\n
      \n\t
    • Diagnosis Date: The earliest date of diagnosis of renal tumor (irrespective of the laterality and focality). It is the earliest date of any of the following: documented renal carcinoma in patient’s electronic medical records (EMR) in clinical notes, or date of nephrectomy or date of metastasis or initiation of treatment for RCC (cancer drug or radiation). If physicians stated that in retrospect the patient had cancer earlier, earlier date is used. Ambiguous terms in the notes are not used for diagnosis (likely, cannot be ruled out, suggests, worrisome, possible, potentially malignant). When treatment is received as first course before definite diagnosis, treatment date was used as date of diagnosis. For nephrectomies with benign tumors, date of nephrectomy as considered date of diagnosis. Date of diagnosis/resection of contralateral tumor in an outside institution is not always available but when available was considered as date of diagnosis. When only the year is available, the 1st of July for that year, if only month is available, 1st of that month is considered as date of diagnosis.
    • \n\t
    • Surgery Date: The date (yyyy-mo-dd) of nephrectomy, RCC metastasectomy and/or radioablation are recorded for patients that underwent surgery at UTSW . Data are extracted from CPT codes and when not available from pathology reports. For patients with prior nephrectomy at an outside institution, the data are extracted whenever available from pathology reports. If only the month and year are available, the date was rounded to 01 for that month. If only the year is available, the date is rounded to July first of that year. If no dates were available, it is recorded as “not available”.
    • \n
    \n\n

    Bioexperiment

    \n\n

    Ideally, a high throughput sequencing assay would be performed on two separate biological samples (i.e. two growths of an immortalized cell line) with two separate library preparations. Each of these assays would be a “replicate”. Ideally, each replicate would only require one sequencing run to obtain the required read depth for the assay. In reality, experiments may be replicated in many ways:

    \n\n

    Biological replication: Replication on two distinct biosamples on which the same experimental protocol was performed. For example, on different growths, two different knockdowns, etc.

    \n\n

    Isogenic replication: Biological replication. Two replicates from biosamples derived from the same human donor or model organism strain. These biosamples have been treated separately (i.e. two growths, two separate knockdowns, or two different excisions).

    \n\n

    Anisogenic replication: Biological replication. Two replicates from similar tissue biosamples derived from different human donors or model organism strains.

    \n\n

    Technical replication: Two replicates from the same biosample, treated identically for each replicate (e.g. same growth, same knockdown).

    \n\n

    Sequencing replication: A library can be run through a sequencer multiple times. Each one of these runs could be considered a sequencing replicate of the experiment, especially if the sequencing run is treated differently, e.g. paired- versus single-ended.

    \n\n

    Genome assembly:Genome assembly that files were mapped to.,

    \n\n

    Reference type: The category that best describes the reference set.,

    \n\n

    Spike-in:Designed to bind to a DNA molecule with a matching sequence, known as a control probe.,

    \n\n

    Biospecimen

    \n\n

    Specimen Class: The class of the biospecimen when it was taken.

    \n\n

    Specimen Type​: The final product after sample processing. It is the subtype of specimen/derivative (paired with Specimen Class).

    \n\n

    Specimen Lineage: Parent vs derived sample. New is parent sample. Derived is the sample derived from another sample.Aliquot is an aliquot of a sample.

    \n\n

    Specimen Pathological Type:  Normal sample is Non-Malignant. Tumor sample is Malignant, which can be primary or metastatic.

    \n\n

    Specimen Activity Status: Whether this sample is still available. Active is for available samples. Closed is for unavailable samples. Disabled is for revoked samples.

    \n\n

    PBMC: A peripheral blood mononuclear cell (PBMC) is any peripheral blood cell having a round nucleus. These cells consist of lymphocytes (T cells, B cells, NK cells) and monocytes, whereas erythrocytes and platelets have no nuclei, and granulocytes (neutrophils, basophils, and eosinophils) have multi-lobed nuclei.

    \n\n

    Other

    \n\n

    Biometric Parameters and Basic Blood Workup: Biometric parameters (Blood Pressure (BP_Systolic and BP_Diastolic) and Body Mass Index (BMI)) and laboratory values (serum albumin, creatinine, corrected calcium, hemoglobin, lactate dehydrogenase (LDH), neutrophils, platelets, sodium and WBC count) recorded in the patient's EMR within 30 days prior to surgery. If there are multiple entries of the same parameter within 30 days, the closest to surgery are displayed.

    \n\n

    Medical Imaging: Types of medical imaging (CT abdomen and pelvis (with or without contrast), MRI abdomen (with or without contrast) and PET done within 90 days prior to Nephrectomy . If there are multiple entries of the same imaging modality within 90 days, only the closest to Nephrectomyis displayed.

    \n\n

    Radiation Treatment: Patients with RCC that received radiotherapy (any technique including SBRT and Stereotactic radiotherapy) at UTSW. The date, doze, fraction, and site of RT are extracted. The patient may receive RT to multiple sites. Brain RT data were partly manually extracted.

    \n\n

    Germline Mutation: Mutation of clinical significance (1) or a variant of uncertain clinical significance (4) in any of the genes from 76 cancer genes tested at the UTSW Genetics lab for these patients when available.

    \n", + "body": "

    :

    \n\n

    Terminology and Definitions

    \n\n

    Patient Demographics

    \n\n

    Patient ID (KCEPTXXXXXX): A unique (11-digit) identifier for each patient, treated for renal tumor at UT Southwestern between 1998-current. This number protects the identity of the patient. If the patient information is deleted from KCE, the ID is not reused. 

    \n\n

    Age at Diagnosis: The age of the patient at his or her last birthday before diagnosis of renal tumor.

    \n\n

    Sex: Identifies the sex of the patient as recorded in patient’s EMR.

    \n\n

    Ethnicity: Persons of Spanish or Hispanic origin as recorded in patient’s EMR. Patients that declined or their records were not found are recorded as “unknown”.

    \n\n

    Race: The primary race of the person (American Indian, Asian, Black, Hawaiian Pacific, White, Others) as recorded in patient’s EMR. 

    \n\n

    Vital Status: Patient's status (Alive or deceased) as recorded in EMR or in Tumor Registry.

    \n\n

    Surgery

    \n\n

    Surgery: The surgery treatment status, surgery hospital location, the Nephrectomy type,  and the method (Nephrectomy approach and nephrectomy robotic assist) of nephrectomy for patients that underwent surgery. For patients with surgery at an outside institution, the surgery hospital location is recorded as “Outside”. Patients that did not undergo surgery,  their surgery treatment status are recorded as “No” (management at UTSW for active surveillance or metastasis without surgical treatment).

    \n\n

    Pathology Report

    \n\n

     All available variables from pathology reports are recorded. Variables in the free text pathology reports (2006-current) are extracted using computer programing. Data from reports prior to 2006 are manually extracted and details are displayed below. Discrepancies found in the pathology reports are reviewed and corrected when appropriate:

    \n\n

    Histologic Subtype:

    \n\n
      \n\t
    • Acquired cystic disease-associated renal cell carcinoma (ACD-RCC)
    • \n\t
    • Angiomyolipoma (AML)
    • \n\t
    • Chromophobe renal cell carcinoma (ChRCC)
    • \n\t
    • Clear cell papillary renal cell carcinoma (ccPRCC)
    • \n\t
    • Clear cell renal cell carcinoma (ccRCC)
    • \n\t
    • Collecting duct carcinoma (CDC)
    • \n\t
    • Cystic nephroma (CN)
    • \n\t
    • Hereditary leiomyomatosis and RCC-associated RCC (FH RCC)
    • \n\t
    • Metanephric adenoma (MA)
    • \n\t
    • MiT family translocation renal cell carcinoma (MiT TRCC)
    • \n\t
    • Mucinous tubular and spindle cell carcinoma (MTSCC)
    • \n\t
    • Multilocular cystic renal neoplasm of low malignant potential (MCRN)
    • \n\t
    • Oncocytic renal neoplasm, not further classified (RON)
    • \n\t
    • Oncocytoma (RO)
    • \n\t
    • Other
    • \n\t
    • Papillary renal cell carcinoma (PRCC) 
    • \n\t
    • Renal cell carcinoma, not further classified (RCC, NOS)
    • \n\t
    • Renal medullary carcinoma (RMC)
    • \n\t
    • SDH deficient renal cell carcinoma (SDH RCC)
    • \n\t
    • Tubulocystic renal cell carcinoma (TC RCC)
    • \n\t
    • Unclassified RCC
    • \n
    \n\n

    Laterality: laterality of the tumor is recorded when available in the pathology report. Synchronous or metachronous bilateral tumors are recorded.

    \n\n

    Size: greatest dimension of tumor was recorded in cm.

    \n\n

    Focality: single or multiple foci of tumors in that specimen is recorded when available.

    \n\n

    Sarcomatoid: presence of sarcomatoid dedifferentiation when reported.

    \n\n

    Necrosis: presence of tumor necrosis (this is available only after 2012).

    \n\n

    Grade: highest Fuhrman or ISUP grade seen in tumor, 1-4. Benign tumors and ChRCC are recorded as “not applicable”. Tumors for which grade was not reported in pathology are considered “not available”.

    \n\n

    Margins: tumor transected at the surgical margins are considered positive.

    \n\n

    LVI: lymphovascular invasion in non-muscle containing vessels.

    \n\n

    Perinephric infiltrate: tumor extension into perinephric tissues, identified microscopically.

    \n\n

    Renal Vein involvement: tumor extension into major renal veins, identified microscopically.

    \n\n

    Ipsilateral adrenal gland involvement: tumor extension into adrenal gland, contiguous or not (this was reported only after 2010 and were derived based on gross description in prior pathology reports. If not stated in old reports, it was assumed to be continuous).

    \n\n

    Pelvicaliceal involvement: tumor extension into pelvicalyceal (this will be part of staging 2018 onwards and is may not be mentioned in the prior pathology reports).

    \n\n

    AJCC TNM stage: Included both the pathology and clinical stage and is summarized below:

    \n\n
      \n\t
    • Stage 4: cM1 or pM1 or pT4 (include N2 for 6th edition).
    • \n\t
    • Stage 3:\n\t
        \n\t\t
      • pN1 or cN1.
      • \n\t\t
      • pT3 (pN0, pNX); if no path available then: cT3. 
      • \n\t
      \n\t
    • \n\t
    • Stage 2: pT2 (>7 cm, limited to kidney); if no path available then: cT2.
    • \n\t
    • Stage 1:  pT1 (<7 cm, limited to kidney); if no path available then: cT1.
    • \n\t
    • T. substage.6th: highest substage between path and clinical stage (TR) for pT3 and 4.
    • \n\t
    • T. substage.7th: highest substage between path and clinical stage (TR) for pT3 and 4.
    • \n\t
    • N: highest substage between path and clinical stage (TR).
    • \n\t
    • TNM Stage 6th edition: composite stage based 6th edition rules.
    • \n\t
    • TNM Stage 7th edition: composite stage based on 7th edition rules.
    • \n\t
    • pT Stage (at presentation):T stands for tumor, it refers to the size of the primary tumor and if it has invaded surrounding tissue.
    • \n\t
    • pN Stage(at presentation):N stands for lymph nodes, it is used to identify how far the cancer has spread to lymph nodes.
    • \n\t
    • pM Stage (at presentation):M stands for metastasis, it indicates whether the cancer has metastasized or spread into other organs or more distant lymph nodes.
    • \n\t\n\t
    • pTX:The primary tumor cannot be evaluated.
    • \n\t\n\t
    • pT1:The tumor is found only in the kidney and is 7 cm or smaller at its largest area. There has been much discussion among doctors about whether this classification should only include a tumor that is 5 cm or smaller.
    • \n\t\n\t
    • pT1a:The tumor is found only in the kidney and is 4 cm or smaller at its largest area.
    • \n\t\n\t
    • pT1b:The tumor is found only in the kidney and is between 4 cm and 7 cm at its largest area.
    • \n\t\n\t
    • pT2:The tumor is found only in the kidney and is larger than 7 cm at its largest area.
    • \n\t\n\t
    • pT2a:The tumor is only in the kidney and is more than 7 cm but not more than 10 cm at its largest area.
    • \n\t\n\t
    • pT2b:The tumor is only in the kidney and is more than 10 cm at its largest area.
    • \n\t\n\t
    • pT3:The tumor has grown into major veins within the kidney or perinephric tissue which is the connective fatty tissue around the kidneys. However it has not grown into the adrenal gland on the same side of the body as the tumor. The adrenal glands are located on top of each kidney and produce hormones and adrenaline to help control heart rate blood pressure and other bodily functions. In addition the tumor has not spread beyond Gerota's fascia an envelope of tissue that surrounds the kidney.
    • \n\t\n\t
    • pT3a:The tumor has spread to the large vein leading out of the kidney called the renal vein or the branches of the renal vein; the fat surrounding and/or inside the kidney; or the pelvis and calyces of the kidney which collect urine before sending it to the bladder. The tumor has not grown beyond Gerota's fascia.
    • \n\t\n\t
    • pT3b:The tumor has grown into the large vein that drains into the heart called the inferior vena cava below the diaphragm. The diaphragm is the muscle under the lungs that helps breathing.
    • \n\t\n\t
    • pT3c:The tumor has spread to the vena cava above the diaphragm and into the right atrium of the heart or to the walls of the vena cava.
    • \n\t\n\t
    • pT4:The tumor has spread to areas beyond Gerota's fascia and extends into the adrenal gland on the same side of the body as the tumor.
    • \n\t\n\t\n\t
    • pNX:The regional lymph nodes cannot be evaluated.
    • \n\t\n\t
    • pN0::The cancer has not spread to the regional lymph nodes.
    • \n\t\n\t
    • pN1:The cancer has spread to single regional lymph nodes.
    • \n\t
    • pN2:The cancer has spread to more than one lymph nodes.
    • \n\t\n\t\n\t
    • pM1:The cancer has spread to other parts of the body beyond the kidney area.
    • \n
    \n\n

    Metastasis

    \n\n

    Metastasis Status: Patients that had histologic proven metastasis either at the time of nephrectomy or subsequently (FNA, core biopsy or metastasectomy), or patients started on systemic cancer drug, or received radiotherapy in non-renal site (including thrombus) or stated to have metastasis in the clinical notes are categorized as “Yes”.

    \n\n

    Metastatic Site: This is recorded either from pathology report using natural language search or from clinical and radiotherapy notes. These may not be all inclusive.

    \n\n

    Histology Proven: Record of metastatic RCC in pathology reports and nephrectomy specimens are considered histologically proven.

    \n\n

    Medication

    \n\n

    The duration (in days) of prescribed Cancer drugs. To safe gaurd our patient's privacy all experiemntal/clinical trial drugs are under a single data type, if you would like to learn more for a particular patient's clinical trial as it relates to your study we will work with you and the IRB to get the necessary data. Addtionally, we calculate the frequency of presribed Supportive drugs.

    \n\n

    Follow up Data

    \n\n

    Please note that all dates displayed on the KCE are not true dates and are displayed as a reference to express the timeframe of events.

    \n\n
      \n\t
    • Diagnosis Date: The earliest date of diagnosis of renal tumor (irrespective of the laterality and focality). It is the earliest date of any of the following: documented renal carcinoma in patient’s electronic medical records (EMR) in clinical notes, or date of nephrectomy or date of metastasis or initiation of treatment for RCC (cancer drug or radiation). If physicians stated that in retrospect the patient had cancer earlier, earlier date is used. Ambiguous terms in the notes are not used for diagnosis (likely, cannot be ruled out, suggests, worrisome, possible, potentially malignant). When treatment is received as first course before definite diagnosis, treatment date was used as date of diagnosis. For nephrectomies with benign tumors, date of nephrectomy as considered date of diagnosis. Date of diagnosis/resection of contralateral tumor in an outside institution is not always available but when available was considered as date of diagnosis. When only the year is available, the 1st of July for that year, if only month is available, 1st of that month is considered as date of diagnosis.
    • \n\t
    • Surgery Date: The date (yyyy-mo-dd) of nephrectomy, RCC metastasectomy and/or radioablation are recorded for patients that underwent surgery at UTSW . Data are extracted from CPT codes and when not available from pathology reports. For patients with prior nephrectomy at an outside institution, the data are extracted whenever available from pathology reports. If only the month and year are available, the date was rounded to 01 for that month. If only the year is available, the date is rounded to July first of that year. If no dates were available, it is recorded as “not available”.
    • \n
    \n\n

    Other

    \n\n

    Biometric Parameters and Basic Blood Workup: Biometric parameters (Blood Pressure (BP_Systolic and BP_Diastolic) and Body Mass Index (BMI)) and laboratory values (serum albumin, creatinine, corrected calcium, hemoglobin, lactate dehydrogenase (LDH), neutrophils, platelets, sodium and WBC count) recorded in the patient's EMR within 30 days prior to surgery. If there are multiple entries of the same parameter within 30 days, the closest to surgery are displayed.

    \n\n

    Medical Imaging: Types of medical imaging (CT abdomen and pelvis (with or without contrast), MRI abdomen (with or without contrast) and PET done within 90 days prior to Nephrectomy . If there are multiple entries of the same imaging modality within 90 days, only the closest to Nephrectomy is displayed.

    \n\n

    Radiation Treatment: Patients with RCC that received radiotherapy (any technique including SBRT and Stereotactic radiotherapy) at UTSW. The date, doze, fraction, and site of RT are extracted. The patient may receive RT to multiple sites. Brain RT data were partly manually extracted.

    \n\n

    Germline Mutation: Mutation of clinical significance (1) or a variant of uncertain clinical significance (4) in any of the genes from 76 cancer genes tested at the UTSW Genetics lab for these patients when available.

    \n\n

    Bioexperiment

    \n\n

    Ideally, a high throughput sequencing assay would be performed on two separate biological samples (i.e. two growths of an immortalized cell line) with two separate library preparations. Each of these assays would be a “replicate”. Ideally, each replicate would only require one sequencing run to obtain the required read depth for the assay. In reality, experiments may be replicated in many ways:

    \n\n

    Biological replication: Replication on two distinct biosamples on which the same experimental protocol was performed. For example, on different growths, two different knockdowns, etc.

    \n\n

    Isogenic replication: Biological replication. Two replicates from biosamples derived from the same human donor or model organism strain. These biosamples have been treated separately (i.e. two growths, two separate knockdowns, or two different excisions).

    \n\n

    Anisogenic replication: Biological replication. Two replicates from similar tissue biosamples derived from different human donors or model organism strains.

    \n\n

    Technical replication: Two replicates from the same biosample, treated identically for each replicate (e.g. same growth, same knockdown).

    \n\n

    Sequencing replication: A library can be run through a sequencer multiple times. Each one of these runs could be considered a sequencing replicate of the experiment, especially if the sequencing run is treated differently, e.g. paired- versus single-ended.

    \n\n

    Genome assembly:Genome assembly that files were mapped to.,

    \n\n

    Reference type: The category that best describes the reference set.,

    \n\n

    Spike-in:Designed to bind to a DNA molecule with a matching sequence, known as a control probe.,

    \n\n

    Biospecimen

    \n\n

    Specimen Class: The class of the biospecimen when it was taken.

    \n\n

    Specimen Type​: The final product after sample processing. It is the subtype of specimen/derivative (paired with Specimen Class).

    \n\n

    Specimen Lineage: Parent vs derived sample. New is parent sample. Derived is the sample derived from another sample.Aliquot is an aliquot of a sample.

    \n\n

    Specimen Pathological Type:  Normal sample is Non-Malignant. Tumor sample is Malignant, which can be primary or metastatic.

    \n\n

    Specimen Activity Status: Whether this sample is still available. Active is for available samples. Closed is for unavailable samples. Disabled is for revoked samples.

    \n\n

    PBMC: A peripheral blood mononuclear cell (PBMC) is any peripheral blood cell having a round nucleus. These cells consist of lymphocytes (T cells, B cells, NK cells) and monocytes, whereas erythrocytes and platelets have no nuclei, and granulocytes (neutrophils, basophils, and eosinophils) have multi-lobed nuclei.

    \n\n", "@type": [ "richtextblock", "block" @@ -567,7 +567,7 @@ { "name": "data-standards", "title": "Data standards", - "status": "released", + "status": "public", "lab": "venkat-malladi", "submitted_by": "dignissim.euismod@amet.habitant", "uuid": "6189dbf8-a36a-4ddb-a2cb-e563ae44d298", @@ -629,7 +629,7 @@ "Publications" ], "submitted_by": "/users/627eedbc-7cb3-4de3-9743-a86266e435a6/", - "status": "released", + "status": "public", "news_excerpt": "In a study published in Clinical Cancer Research, KCP investigators uncovered the first core dependency in clear cell RCC (ccRCC)", "uuid": "56c2ff7d-936b-49e8-bed8-b043f1e0ece8", "name": "2020-02-21-kcp-publication" @@ -665,7 +665,7 @@ "Conferences" ], "submitted_by": "/users/627eedbc-7cb3-4de3-9743-a86266e435a6/", - "status": "released", + "status": "public", "news_excerpt": "The 3rd Annual Kidney Cancer Program Retreat, held at the UT Southwestern Faculty Club, brought together more than 30 medical students, interns, and residents to learn about research opportunities available with the KCP.", "uuid": "22ddca64-baba-4f39-a75a-2fd511af31c1", "name": "2019-12-16-kcp-retreat" @@ -701,7 +701,7 @@ "Publications" ], "submitted_by": "/users/627eedbc-7cb3-4de3-9743-a86266e435a6/", - "status": "released", + "status": "public", "news_excerpt": "UT Southwestern investigators have developed an innovative framework for classifying renal cancer.", "uuid": "defcbf82-61f8-4107-aeca-c0923dd38ed7", "name": "2019-12-02-kcp-publication" @@ -737,7 +737,7 @@ "Publications" ], "submitted_by": "/users/627eedbc-7cb3-4de3-9743-a86266e435a6/", - "status": "released", + "status": "public", "news_excerpt": "In a study published in Clinical Cancer Research, KCP investigators uncovered the first core dependency in clear cell RCC (ccRCC), the most common type of kidney cancer.", "uuid": "a8566841-426a-4d78-8875-3ed3c1edafaf", "name": "2019-11-14-kcp-publication" @@ -777,7 +777,7 @@ }, "submitted_by": "/users/627eedbc-7cb3-4de3-9743-a86266e435a6/", - "status": "released" + "status": "public" }, @@ -816,7 +816,7 @@ }, "submitted_by": "/users/627eedbc-7cb3-4de3-9743-a86266e435a6/", - "status": "released" + "status": "public" }, @@ -855,7 +855,7 @@ }, "submitted_by": "/users/627eedbc-7cb3-4de3-9743-a86266e435a6/", - "status": "released" + "status": "public" }, { "title": "KCP recognized at World Affairs Council award dinner", @@ -892,7 +892,7 @@ }, "submitted_by": "/users/627eedbc-7cb3-4de3-9743-a86266e435a6/", - "status": "released" + "status": "public" }, { "title": "Discovery of metabolic vulnerabilities in kidney tumors earns award for UTSW investigator", @@ -929,7 +929,7 @@ }, "submitted_by": "/users/627eedbc-7cb3-4de3-9743-a86266e435a6/", - "status": "released" + "status": "public" }, { "title": "Annual patient conference highlights latest in kidney cancer treatments, clinical trials, and UTSW discoveries", @@ -966,7 +966,7 @@ }, "submitted_by": "/users/627eedbc-7cb3-4de3-9743-a86266e435a6/", - "status": "released" + "status": "public" } diff --git a/src/encoded/tests/data/inserts/pathology_report.json b/src/encoded/tests/data/inserts/pathology_report.json index 63878cb685..5b58a05dd4 100644 --- a/src/encoded/tests/data/inserts/pathology_report.json +++ b/src/encoded/tests/data/inserts/pathology_report.json @@ -1,8 +1,8 @@ [ { "accession": "KCEPR708FIJ", - "surgery": "KCESX708FIJ", - "patient": "KCEPT708IJT", + "path_id":"PR708FIJ", + "surgery_procedure": "7807ad0f-32f3-475a-a544-00014f2acc15", "date": "1855-01-05", "histology": "SDH deficient renal cell carcinoma", "status": "released", @@ -16,8 +16,8 @@ }, { "accession": "KCEPR708FIK", - "surgery": "KCESX708FIJ", - "patient": "KCEPT708IJT", + "path_id":"PR708FIJ", + "surgery_procedure": "7807ad0f-32f3-475a-a544-00014f2acc15", "date": "1855-01-05", "histology": "Sarcomatoid, NOS", "status": "released", @@ -31,8 +31,8 @@ }, { "accession": "KCEPR708IJT", - "surgery":"KCESX708IJT", - "patient":"KCEPT708IJT", + "path_id":"PR708IJT", + "surgery_procedure":"717612f1-0fb7-411b-a8b3-b045e252d098", "tumor_sequence_number": 1, "date": "1853-04-03", "laterality": "Bilateral, Horseshoe", @@ -69,8 +69,8 @@ }, { "accession": "KCEPR480NBU", - "surgery": "KCESX480NBU", - "patient":"KCEPT480NBU", + "path_id":"PR480NBU", + "surgery_procedure": "9f85a354-f0af-4e0c-ab13-c0171655e328", "date": "1836-05-08", "histology": "Collecting duct carcinoma", "status": "released", @@ -84,8 +84,8 @@ }, { "accession": "KCEPR802XRB", - "surgery": "KCESX802XRB", - "patient":"KCEPT802XRB", + "path_id":"PR802XRB", + "surgery_procedure": "7208400e-7f60-468a-a481-1c4a800af076", "tumor_sequence_number": 1, "date": "1862-02-03", "laterality": "Left", @@ -122,8 +122,8 @@ }, { "accession": "KCEPR359TRS", - "surgery": "KCESX359TRS", - "patient":"KCEPT359MHZ", + "path_id":"PR359MHZ", + "surgery_procedure": "41692393-f1f3-4797-9043-989c96a9621c", "tumor_sequence_number": 1, "date": "1860-06-03", "laterality": "Right", @@ -163,4 +163,3 @@ "uuid": "b56466f2-46d7-11ea-b77f-2e728ce88125" } ] - diff --git a/src/encoded/tests/data/inserts/patient.json b/src/encoded/tests/data/inserts/patient.json index 45ef89f57f..2b0d9c2658 100644 --- a/src/encoded/tests/data/inserts/patient.json +++ b/src/encoded/tests/data/inserts/patient.json @@ -1,633 +1,206 @@ -[ - { - "accession": "KCEPT359MHZ", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "27b69535-5404-4844-b502-e77e3a9e1d12", - "death_date": "1861-06-03", - "death_source": "Tumor Registry", - "mrn": "934" - }, - { - "accession": "KCEPT708IJT", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "Black", - "status": "released", - "uuid": "a9b2208d-ca92-465c-83e9-0e18e1d55326", - "death_date": "1860-05-05", - "death_source": "Tumor Registry", - "mrn": "313" - }, - { - "accession": "KCEPT026PGS", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "Black", - "status": "released", - "uuid": "eaf06c3d-db8e-4844-b036-089bf7422750", - "mrn": "398" - }, - { - "accession": "KCEPT925TMI", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "f7ba5514-f98f-4665-ae21-d5caca83c2c4", - "mrn": "215" - }, - { - "accession": "KCEPT480NBU", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "da5c55dd-fa03-4cec-b926-9e83ffa7c7e7", - "death_date": "1840-05-08", - "death_source": "Parkland Hospital", - "mrn": "904" - }, - { - "accession": "KCEPT873QVK", - "alternate_accessions": [], - "ethnicity": "Unknown", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "820b25e6-78fb-44af-87e1-f1bd63f941e0", - "mrn": "411", - "diagnosis_date_tumor_registry": "1878-04-02" - }, - { - "accession": "KCEPT802XRB", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "4e600b38-2e06-440f-8dd0-9d0d17759782", - "death_date": "1870-02-03", - "death_source": "UTSouthwestern Hospital", - "mrn": "266" - }, - { - "accession": "KCEPT240HMN", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "American Indian", - "status": "released", - "uuid": "135da9f1-4daf-4721-9241-e49e448a519c", - "mrn": "707" - }, - { - "accession": "KCEPT186NZW", - "alternate_accessions": [], - "ethnicity": "Unknown", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "f71399f8-55ce-4260-a010-ba09ce1c8f8a", - "mrn": "350", - "diagnosis_date_tumor_registry": "1827-07-02" - }, - { - "accession": "KCEPT139SOR", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "Asian", - "status": "released", - "uuid": "cec0df11-66c3-4b0f-ac78-1f1a2b2b7175", - "mrn": "399" - }, - { - "accession": "KCEPT021XWS", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "4ec84324-a45f-4977-b3fe-4c88978915b4", - "mrn": "903" - }, - { - "accession": "KCEPT604LAK", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "d55ba398-51fd-4409-9c47-fd469442d409", - "mrn": "628" - }, - { - "accession": "KCEPT805NRD", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "bf990e5d-4b5b-4a30-9c5a-a15d702183fe", - "mrn": "558" - }, - { - "accession": "KCEPT692UHR", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "02af062d-9997-4030-8622-0ca8e0736862", - "mrn": "590" - }, - { - "accession": "KCEPT294KIZ", - "alternate_accessions": [], - "ethnicity": "Unknown", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "e5f33ac5-1924-4195-a9e3-53f419a81b51", - "mrn": "822" - }, - { - "accession": "KCEPT398JLK", - "alternate_accessions": [], - "ethnicity": "Declined", - "sex": "Male", - "race": "Declined", - "status": "released", - "uuid": "11c5a5eb-32a5-4262-b73f-47a87b9ca0a4", - "mrn": "532" - }, - { - "accession": "KCEPT756AEN", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "8ffb02b8-4552-433c-8a14-e826de59286d", - "mrn": "687" - }, - { - "accession": "KCEPT396JUN", - "alternate_accessions": [], - "ethnicity": "Declined", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "21d96c21-0bdd-43be-ab27-f59cb6b9d821", - "mrn": "423" - }, - { - "accession": "KCEPT078DUA", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "Asian", - "status": "released", - "uuid": "c0b93b12-16ca-48aa-a459-d7badf6c42f9", - "mrn": "33" - }, - { - "accession": "KCEPT318AXY", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "Hawaiian Pacific Islander", - "status": "released", - "uuid": "e67924b2-6b7c-423f-b62b-fc6f145c0822", - "mrn": "88" - }, - { - "accession": "KCEPT389MHZ", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "16c8de4d-ae77-44cf-b4d7-c1d5b67199b7", - "death_date": "1861-06-03", - "death_source": "Tumor Registry", - "mrn": "9342" - }, - { - "accession": "KCEPT108IJT", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "Black", - "status": "released", - "uuid": "764717ee-54a8-4d2b-8d58-def1d53fbac4", - "death_date": "1860-05-05", - "death_source": "Tumor Registry", - "mrn": "3131" - }, - { - "accession": "KCEPT046PGS", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "Black", - "status": "released", - "uuid": "f4a669c6-19cb-43f7-9882-7aa252139f8b", - "mrn": "3981" - }, - { - "accession": "KCEPT935TMI", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "96dec266-7d0e-4991-bc45-860fa7856ed1", - "mrn": "2151" - }, - { - "accession": "KCEPT410NBU", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "c86e1471-6da5-4a16-a896-b52d6408ce49", - "death_date": "1840-05-08", - "death_source": "Parkland Hospital", - "mrn": "9041" - }, - { - "accession": "KCEPT843QVK", - "alternate_accessions": [], - "ethnicity": "Unknown", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "bc65ad0f-6e88-4e99-b62f-5106f7e122f7", - "mrn": "4111", - "diagnosis_date_tumor_registry": "1878-04-02" - }, - { - "accession": "KCEPT202XRB", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "5341e7e5-5637-410e-8728-21b17640caeb", - "death_date": "1870-02-03", - "death_source": "UTSouthwestern Hospital", - "mrn": "2661" - }, - { - "accession": "KCEPT250HMN", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "American Indian", - "status": "released", - "uuid": "23cbb67c-7f0a-4d2f-a56d-1054ec2b0626", - "mrn": "7071" - }, - { - "accession": "KCEPT146NZW", - "alternate_accessions": [], - "ethnicity": "Unknown", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "9efb8cd0-b394-4502-8793-6724e8f3f203", - "mrn": "3501", - "diagnosis_date_tumor_registry": "1827-07-02" - }, - { - "accession": "KCEPT149SOR", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "Asian", - "status": "released", - "uuid": "63580e44-6a7a-459d-acea-7cbc0c58640d", - "mrn": "3991" - }, - { - "accession": "KCEPT051XWS", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "7e59c2cf-135d-4dcf-a373-07d18a90d5dc", - "mrn": "9031" - }, - { - "accession": "KCEPT704LAK", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "65ff28d2-a423-4161-a6f8-1c38d2e34f77", - "mrn": "6281" - }, - { - "accession": "KCEPT205NRD", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "823782a0-ee9f-417f-9d37-3b5a7c5bff82", - "mrn": "5581" - }, - { - "accession": "KCEPT612UHR", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "560fef55-de16-4b1b-a5fb-53ff83b41237", - "mrn": "5901" - }, - { - "accession": "KCEPT214KIZ", - "alternate_accessions": [], - "ethnicity": "Unknown", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "dbce2492-4e90-45f5-8cb3-374104df0940", - "mrn": "8221" - }, - { - "accession": "KCEPT328JLK", - "alternate_accessions": [], - "ethnicity": "Declined", - "sex": "Male", - "race": "Declined", - "status": "released", - "uuid": "fd566e0c-b068-48d5-9495-2464d207e489", - "mrn": "5321" - }, - { - "accession": "KCEPT156AEN", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "0a4ffe26-4807-4181-8c78-f6e9746dfd61", - "mrn": "6871" - }, - { - "accession": "KCEPT596JUN", - "alternate_accessions": [], - "ethnicity": "Declined", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "6efbccae-d567-4db9-9d76-d1ee91d3d5ac", - "mrn": "4231" - }, - { - "accession": "KCEPT678DUA", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "Asian", - "status": "released", - "uuid": "771ec73b-82f4-4079-9306-a79ed1116aee", - "mrn": "3378" - }, - { - "accession": "KCEPT418AXY", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "Hawaiian Pacific Islander", - "status": "released", - "uuid": "1fa05f83-f37d-4d40-b196-edc3b36baa50", - "mrn": "8834" - }, - { - "accession": "KCEPT329MHZ", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "3e5572d6-9626-4007-a23e-caa2c0af0a25", - "death_date": "1861-06-03", - "death_source": "Tumor Registry", - "mrn": "9341" - }, - { - "accession": "KCEPT208IJT", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "Black", - "status": "released", - "uuid": "3cf980df-c26d-41b9-b210-65e88fe92c9b", - "death_date": "1860-05-05", - "death_source": "Tumor Registry", - "mrn": "3132" - }, - { - "accession": "KCEPT025PGS", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "Black", - "status": "released", - "uuid": "2f15aede-bbb8-4cd8-bb13-16dfd3d0dd08", - "mrn": "3982" - }, - { - "accession": "KCEPT945TMI", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "af980b23-09eb-47f3-8184-8fb572349235", - "mrn": "2152" - }, - { - "accession": "KCEPT400NBU", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "fa38e0a7-b2ad-4148-a301-16006e3e06ec", - "death_date": "1840-05-08", - "death_source": "Parkland Hospital", - "mrn": "9042" - }, - { - "accession": "KCEPT813QVK", - "alternate_accessions": [], - "ethnicity": "Unknown", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "06c57d91-90d9-457b-b332-e129f5210481", - "mrn": "4121", - "diagnosis_date_tumor_registry": "1878-04-02" - }, - { - "accession": "KCEPT302XRB", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "0a97c227-2bf1-4f13-8cb0-1a05231f7722", - "death_date": "1870-02-03", - "death_source": "UTSouthwestern Hospital", - "mrn": "2662" - }, - { - "accession": "KCEPT270HMN", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "American Indian", - "status": "released", - "uuid": "bca7c317-18cc-4b4d-aaad-3dccc470e867", - "mrn": "7072" - }, - { - "accession": "KCEPT156NZW", - "alternate_accessions": [], - "ethnicity": "Unknown", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "9b392197-1170-4eca-bd8c-cea25168facd", - "mrn": "3520", - "diagnosis_date_tumor_registry": "1827-07-02" - }, - { - "accession": "KCEPT119SOR", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "Asian", - "status": "released", - "uuid": "ab724e06-b978-447e-8995-91205d62904d", - "mrn": "3992" - }, - { - "accession": "KCEPT061XWS", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "c909d0ee-327e-47dd-99cb-aca5286858ef", - "mrn": "9032" - }, - { - "accession": "KCEPT804LAK", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "d8c781d4-f871-48f0-bea1-7216d1035bf1", - "mrn": "6282" - }, - { - "accession": "KCEPT835NRD", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "88d32652-d8a1-404b-a0a0-1d66e57eda2b", - "mrn": "5582" - }, - { - "accession": "KCEPT292UHR", - "alternate_accessions": [], - "ethnicity": "Hispanic", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "73ba50de-7c75-4780-87df-b4acbb3298a6", - "mrn": "5902" - }, - { - "accession": "KCEPT224KIZ", - "alternate_accessions": [], - "ethnicity": "Unknown", - "sex": "Female", - "race": "Other", - "status": "released", - "uuid": "d3a3d501-fddc-4589-8e94-6b03533fee5c", - "mrn": "8222" - }, - { - "accession": "KCEPT338JLK", - "alternate_accessions": [], - "ethnicity": "Declined", - "sex": "Male", - "race": "Declined", - "status": "released", - "uuid": "4e4efb4b-a0ba-446c-936f-2b1e5afeaf15", - "mrn": "5322" - }, - { - "accession": "KCEPT256AEN", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "White", - "status": "released", - "uuid": "d3ff2d1b-2709-4883-8f70-77892aa56e66", - "mrn": "6872" - }, - { - "accession": "KCEPT696JUN", - "alternate_accessions": [], - "ethnicity": "Declined", - "sex": "Female", - "race": "White", - "status": "released", - "uuid": "f203e860-eaff-49ac-9338-0ab43d64312e", - "mrn": "4232" - }, - { - "accession": "KCEPT778DUA", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Male", - "race": "Asian", - "status": "released", - "uuid": "a0fe64da-d5db-4f35-93f1-9ecc39aae517", - "mrn": "3325" - }, - { - "accession": "KCEPT718AXY", - "alternate_accessions": [], - "ethnicity": "Non-hispanic", - "sex": "Female", - "race": "Hawaiian Pacific Islander", - "status": "released", - "uuid": "aa0e8859-8057-4876-b168-1e9c695f5f3e", - "mrn": "8817" - } -] - +[{ + "_test": "test patient", + "first": "Test-Test", + "mi": "B", + "last": "Test", + "examiner": "DT", + "patiddate": "2005-09-09", + "category":"1 ADC Core", + "site":"1 UTSW", + "gender": "1 Male", + "dob": "1928-09-09", + "hand": "1 Right", + "educat": "5", + "excmenret": "0 No", + "occupat": "tester", + "preflang": "1 English", + "spanish": "1 Yes", + "racial": "1 Alaskan Native", + "aitribe": "1 Cherokee", + "contact_info":{ + "p_info": { + "p_addr1": "TEST STREET", + "p_city": "DALLAS", + "p_state": "TX TX", + "p_zip": "75235", + "p_phone": "", + "p_phoneext": "214-346-7878" + }, + "c_cont1": { + "c_phone": "214-346-7878" + } + }, + + "legal_represent": { + "lar_hmphone": "123-456-7890", + "laremail": "callme@hotmail.com" + }, + "status": "released", + "uuid": "e7eb8999-ea7d-4e52-b70f-bd14dee9b19f", + "accession": "000000" +}, +{ + "_test": "test patient", + "first": "Test-Test", + "mi": "B", + "last": "Test", + "examiner": "DT", + "patiddate": "2005-09-09", + "category":"1 ADC Core", + "site":"1 UTSW", + "gender": "1 Male", + "dob": "1928-09-09", + "hand": "1 Right", + "educat": "5", + "excmenret": "0 No", + "occupat": "tester", + "preflang": "1 English", + "spanish": "1 Yes", + "racial": "1 Alaskan Native", + "aitribe": "1 Cherokee", + "contact_info":{ + "p_info": { + "p_addr1": "TEST STREET", + "p_city": "DALLAS", + "p_state": "TX TX", + "p_zip": "75235", + "p_phone": "", + "p_phoneext": "214-346-7878" + }, + "c_cont1": { + "c_phone": "214-346-7878" + } + }, + + "legal_represent": { + "lar_hmphone": "123-456-7890", + "laremail": "callme@hotmail.com" + }, + "status": "released", + "uuid": "77aa560a-ea61-4e07-b31f-67bb19f5e6c1", + "accession": "000001" +}, +{ + "_test": "test patient", + "first": "Test-Test", + "mi": "B", + "last": "Test", + "examiner": "DT", + "patiddate": "2005-09-09", + "category":"1 ADC Core", + "site":"1 UTSW", + "gender": "1 Male", + "dob": "1928-09-09", + "hand": "1 Right", + "educat": "5", + "excmenret": "0 No", + "occupat": "tester", + "preflang": "1 English", + "spanish": "1 Yes", + "racial": "1 Alaskan Native", + "aitribe": "1 Cherokee", + "contact_info":{ + "p_info": { + "p_addr1": "TEST STREET", + "p_city": "DALLAS", + "p_state": "TX TX", + "p_zip": "75235", + "p_phone": "", + "p_phoneext": "214-346-7878" + }, + "c_cont1": { + "c_phone": "214-346-7878" + } + }, + + "legal_represent": { + "lar_hmphone": "123-456-7890", + "laremail": "callme@hotmail.com" + }, + "status": "released", + "uuid": "85fc975d-9837-484d-b452-964b31fed4ab", + "accession": "000015" +}, +{ + "_test": "test patient", + "first": "Test-Test", + "mi": "B", + "last": "Test", + "examiner": "DT", + "patiddate": "2005-09-09", + "category":"1 ADC Core", + "site":"1 UTSW", + "gender": "1 Male", + "dob": "1928-09-09", + "hand": "1 Right", + "educat": "5", + "excmenret": "0 No", + "occupat": "tester", + "preflang": "1 English", + "spanish": "1 Yes", + "racial": "1 Alaskan Native", + "aitribe": "1 Cherokee", + "contact_info":{ + "p_info": { + "p_addr1": "TEST STREET", + "p_city": "DALLAS", + "p_state": "TX TX", + "p_zip": "75235", + "p_phone": "", + "p_phoneext": "214-346-7878" + }, + "c_cont1": { + "c_phone": "214-346-7878" + } + }, + + "legal_represent": { + "lar_hmphone": "123-456-7890", + "laremail": "callme@hotmail.com" + }, + "status": "released", + "uuid": "d36b9731-d442-4e06-ad33-dbc0c129bbe3", + "accession": "000010" +}, +{ + "_test": "test patient", + "first": "Test-Test", + "mi": "B", + "last": "Test", + "examiner": "DT", + "patiddate": "2005-09-09", + "category":"1 ADC Core", + "site":"1 UTSW", + "gender": "1 Male", + "dob": "1928-09-09", + "hand": "1 Right", + "educat": "5", + "excmenret": "0 No", + "occupat": "tester", + "preflang": "1 English", + "spanish": "1 Yes", + "racial": "1 Alaskan Native", + "aitribe": "1 Cherokee", + "contact_info":{ + "p_info": { + "p_addr1": "TEST STREET", + "p_city": "DALLAS", + "p_state": "TX TX", + "p_zip": "75235", + "p_phone": "", + "p_phoneext": "214-346-7878" + }, + "c_cont1": { + "c_phone": "214-346-7878" + } + }, + + "legal_represent": { + "lar_hmphone": "123-456-7890", + "laremail": "callme@hotmail.com" + }, + "status": "released", + "uuid": "3b153171-ba41-45ce-bf02-11b210104f02", + "accession": "000013" +} +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/physical_exam.json b/src/encoded/tests/data/inserts/physical_exam.json new file mode 100644 index 0000000000..8848a4ef12 --- /dev/null +++ b/src/encoded/tests/data/inserts/physical_exam.json @@ -0,0 +1,112 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "adc_form_b": { + "appear": "0 Normal" + }, + "ii_gene_phys_exam": { + "headneck": "1 Abnormal", + "abnormal_headneck": "test", + "chest": "0 Normal", + "heart": "9 Unable to determine", + "abdom": "0 Normal", + "extrem": "1 Abnormal", + "abnormal_extrem": "test", + "edema": "9 Unable to determine" + }, + "iii_cran_nerv": { + "ii_eye": "0 Normal", + "iii_iv_vi": "1 Abnormal", + "abnormal_iii_iv_vi": "test", + "v": "9 Unable to determine", + "vii": "0 Normal", + "viii": "1 Abnormal", + "abnormal_viii": "test", + "ix_x": "9 Unable to determine", + "xi": "0 Normal", + "xii": "1 Abnormal" + }, + "iv_refl": { + "bic_r": "0 0", + "bic_l": "1 1", + "tri_r": "2 2", + "tri_l": "3 3", + "patell_r": "4 4", + "patell_l": "0 0", + "achill_r": "1 1", + "achill_l": "2 2", + "bab_r": "0 Normal", + "bab_l": "1 Abnormal", + "abnormal_bab_l": "test" + }, + "v_motor_stre": { + "arms_p_r": "0 No strength", + "arms_p_l": "1 Trace movement only", + "arms_d_r": "2 Unable to overcome gravity", + "arms_d_l": "3 Unable to overcome resistance", + "legs_p_r": "4 Reduced strength", + "legs_p_l": "5 Normal", + "legs_d_r": "8 Non-neurological", + "legs_d_l": "9 N/A", + "abnormal_legs_d_l": "test", + "pron_r": "0 Normal", + "pron_l": "1 Abnormal" + }, + "vi_motor_tone": { + "ue_spast_r": "0 Normal", + "ue_spast_l": "1 Abnormal", + "ue_myocl_r": "9 Unable to determine", + "ue_myocl_l": "0 Normal", + "ue_fascic_r": "1 Abnormal", + "ue_fascic_l": "9 Unable to determine", + "ue_atroph_r": "0 Normal", + "ue_atroph_l": "1 Abnormal", + "abnormal_ue_spast_l": "test", + "abnormal_ue_myocl_l": "test", + "abnormal_ue_fascic_r": "test", + "abnormal_ue_atroph_l": "test", + "le_spast_r": "0 Normal", + "le_spast_l": "1 Abnormal", + "le_myocl_r": "9 Unable to determine", + "le_myocl_l": "0 Normal", + "le_fascic_r": "1 Abnormal", + "le_fascic_l": "9 Unable to determine", + "le_atroph_r": "0 Normal", + "le_atroph_l": "1 Abnormal", + "abnormal_le_spast_l": "test", + "abnormal_le_fascic_r": "test", + "abnormal_le_atroph_l": "test" + }, + "vii_sens_feet": { + "vib_nor_r": "0 Normal", + "vib_nor_l": "1 Abnormal", + "vib_dec_r": "9 Unable to determine", + "vib_dec_l": "0 Normal", + "abnormal_vib_nor_l": "test", + "pps_nor_r": "0 Normal", + "pps_nor_l": "0 Normal", + "pps_dec_r": "1 Abnormal", + "pps_dec_l": "0 Normal", + "abnormal_pps_dec_r": "test" + }, + "viii_cere_exam": { + "dysmet_r": "0 Normal", + "dysmet_l": "9 Unable to determine" + }, + "ix_gait": { + "severity": "0 Normal", + "type": "0 Normal" + }, + "gen_comm": "This is only a comment for test.", + "clin_sig": "DT", + "form_status": "Complete", + "status": "released", + "uuid": "10fa5263-aab8-421d-9a2d-6014ce247ba8" + } + ] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/platform.json b/src/encoded/tests/data/inserts/platform.json index 131fadfaad..aa9a858a2a 100644 --- a/src/encoded/tests/data/inserts/platform.json +++ b/src/encoded/tests/data/inserts/platform.json @@ -154,4 +154,4 @@ "url": "http://www.illumina.com/content/dam/illumina-marketing/documents/products/datasheets/novaseq-6000-system-specification-sheet-770-2016-025.pdf", "uuid": "27e58bd7-0943-4b5a-9473-30d571eb89ff" } -] +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/publication.json b/src/encoded/tests/data/inserts/publication.json index 64c8e8d100..157691c29d 100644 --- a/src/encoded/tests/data/inserts/publication.json +++ b/src/encoded/tests/data/inserts/publication.json @@ -6,7 +6,7 @@ "authors": "Bowman IA, Pedrosa I, Kapur P, Brugarolas J.", "journal": "Clinical genitourinary cancer", "identifiers": ["PMID:28258962"], - "status": "released", + "status": "public", "date_published": "2017 August 15", "uuid": "d6eec3a0-ffa7-4d71-b07e-7004bc2787bd" }, @@ -20,7 +20,7 @@ "volume":"539", "issue": "7627", "page":"112-117", - "status": "released", + "status": "public", "date_published": "2016 Nov 3", "uuid": "caa8db45-32e3-4fb5-8cc0-885325fb7fc8" }, @@ -34,7 +34,7 @@ "volume":"17", "issue": "1", "page":"19", - "status": "released", + "status": "public", "date_published": "2017 Mar 21", "uuid": "5a4ffbb9-2a6f-4620-8196-7bfb1b441051" }, @@ -46,7 +46,7 @@ "journal": "Cancer discovery", "identifiers": ["PMID:28473526"], "date_published": "2017 Aug", - "status": "released", + "status": "public", "uuid": "e55da15b-05a3-437f-a162-3aebf9e11bad" }, { @@ -57,7 +57,7 @@ "journal": "The Journal of biological chemistry", "identifiers": ["PMID:28416613"], "date_published": "2017 Jun 2", - "status": "released", + "status": "public", "uuid": "6596ef74-a7a2-42e7-8cfe-dcf623bc02ea" }, { @@ -67,7 +67,7 @@ "authors": "Vega-Rubin-de-Celis S, Peña-Llopis S, Konda M, Brugarolas J.", "journal": "Autophagy", "identifiers": ["PMID:28055300", "PMCID:PMC5361595"], - "status": "released", + "status": "public", "volume":"13", "issue": "3", "page":"464-472", @@ -81,7 +81,7 @@ "authors": "Wang CJ, Christie A, Lin MH, Jung M, Weix D, Huelsmann L, Kuhn K, Meyer J, Desai N, Kim DWN, Pedrosa I, Margulis V, Cadeddu J, Sagalowsky A, Gahan J, Laine A, Xie XJ, Choy H, Brugarolas J, Timmerman R, Hannan R.", "journal": "International journal of radiation oncology, biology, physics", "identifiers": ["PMID:28587057", "PMCID:PMC5555369"], - "status": "released", + "status": "public", "date_published": "2017 May 1", "uuid": "dfe01772-5409-466b-96da-1dbfcb9c525a" }, @@ -92,7 +92,7 @@ "authors": "Bailey ST, Smith AM, Kardos J, Wobker SE, Wilson HL, Krishnan B, Saito R, Lee HJ, Zhang J, Eaton SC, Williams LA, Manocha U, Peters DJ, Pan X, Carroll TJ, Felsher DW, Walter V, Zhang Q, Parker JS, Yeh JJ, Moffitt RA, Leung JY, Kim WY.", "journal": "Nature communications", "identifiers": ["PMID:28593993", "PMCID:PMC5472759"], - "status": "released", + "status": "public", "volume":"8", "page":"15770", "date_published": "2017 Jun 8", @@ -105,7 +105,7 @@ "authors": "Zhang Y, Udayakumar D, Cai L, Hu Z, Kapur P, Kho EY, Pavía-Jiménez A, Fulkerson M, de Leon AD, Yuan Q, Dimitrov IE, Yokoo T, Ye J, Mitsche MA, Kim H, McDonald JG, Xi Y, Madhuranthakam AJ, Dwivedi DK, Lenkinski RE, Cadeddu JA, Margulis V, Brugarolas J, DeBerardinis RJ, Pedrosa I.", "journal": "JCI insight", "identifiers": ["PMID:28768909", "PMCID:PMC5543910"], - "status": "released", + "status": "public", "volume":"2", "issue":"15", "date_published": "2017 August 3", @@ -118,7 +118,7 @@ "authors": "Canvasser NE, Kay FU, Xi Y, Pinho DF, Costa D, de Leon AD, Khatri G, Leyendecker JR, Yokoo T, Lay A, Kavoussi N, Koseoglu E, Cadeddu JA, Pedrosa I.", "journal": "The Journal of urology", "identifiers": ["PMID:28457802"], - "status": "released", + "status": "public", "volume":"198", "issue":"4", "page": "780-786", @@ -132,7 +132,7 @@ "authors": "Diaz de Leon A, Pedrosa I.", "journal": "Radiologic clinics of North America", "identifiers": ["PMID:28991563", "PMCID:PMC5669050"], - "status": "released", + "status": "public", "volume":"55", "issue":"6", "page": "235-1250", @@ -146,7 +146,7 @@ "authors": "Ho TH, Kapur P, Eckel-Passow JE, Christie A, Joseph RW, Serie DJ, Cheville JC, Thompson RH, Homayoun F, Panwar V, Brugarolas J, Parker AS.", "journal": "Journal of clinical oncology : official journal of the American Society of Clinical Oncology", "identifiers": ["PMID:28976794", "PMCID:PMC5678341"], - "status": "released", + "status": "public", "volume":"35", "issue":"32", "page": "3706-3713", @@ -160,7 +160,7 @@ "authors": "Madhuranthakam AJ, Yuan Q, Pedrosa I.", "journal": "Topics in magnetic resonance imaging : TMRI", "identifiers": ["PMID:29176470", "PMCID:PMC5726296"], - "status": "released", + "status": "public", "volume":"26", "issue":"6", "page": "251-258", @@ -174,7 +174,7 @@ "authors": "Xi Y, Yuan Q, Zhang Y, Madhuranthakam AJ, Fulkerson M, Margulis V, Brugarolas J, Kapur P, Cadeddu JA, Pedrosa I.", "journal": "European radiology", "identifiers": ["PMID:28681074", "PMCID:PMC5718968"], - "status": "released", + "status": "public", "volume":"28", "issue":"1", "page": "124-132", @@ -188,7 +188,7 @@ "authors": "Dwivedi DK, Chatzinoff Y, Zhang Y, Yuan Q, Fulkerson M, Chopra R, Brugarolas J, Cadeddu JA, Kapur P, Pedrosa I.", "journal": "Urology", "identifiers": ["PMID:29056576", "PMCID:PMC5885749"], - "status": "released", + "status": "public", "volume":"112", "page": "209-214", "date_published": "2018 February", @@ -201,7 +201,7 @@ "authors": "Wang X, Pirasteh A, Brugarolas J, Rofsky NM, Lenkinski RE, Pedrosa I, Madhuranthakam AJ.", "journal": "Magnetic resonance in medicine", "identifiers": ["PMID:29446127"], - "status": "released", + "status": "public", "date_published": "2018 February 14", "uuid": "a5717da1-d139-47ac-aaab-7dae9a7df876" }, @@ -212,7 +212,7 @@ "authors": "Courtney KD, Infante JR, Lam ET, Figlin RA, Rini BI, Brugarolas J, Zojwalla NJ, Lowe AM, Wang K, Wallace EM, Josey JA, Choueiri TK.", "journal": "Journal of clinical oncology : official journal of the American Society of Clinical Oncology", "identifiers": ["PMID:29257710", "PMCID:PMC5946714"], - "status": "released", + "status": "public", "volume":"36", "issue": "9", "page": "867-874", @@ -226,7 +226,7 @@ "authors": "Kay FU, Canvasser NE, Xi Y, Pinho DF, Costa DN, Diaz de Leon A, Khatri G, Leyendecker JR, Yokoo T, Lay AH, Kavoussi N, Koseoglu E, Cadeddu JA, Pedrosa I.", "journal": "Radiology", "identifiers": ["PMID:29390196", "PMCID:PMC5929366"], - "status": "released", + "status": "public", "volume":"287", "issue": "2", "page": "543-553", @@ -240,7 +240,7 @@ "authors": "Kay FU, Pedrosa I", "journal": "Radiologic clinics of North America", "identifiers": ["PMID:28126214", "PMCID:PMC5607740", "doi:10.1016/j.rcl.2016.10.003"], - "status": "released", + "status": "public", "volume":"55", "issue": "2", "page": "243-258", @@ -254,7 +254,7 @@ "authors": "Lou Y, Cao J, Ahn C.", "journal": "Communications in statistics: theory and methods", "identifiers": ["PMID:30930527", "PMCID:PMC6436812", "doi:10.1080/03610926.2016.1260744"], - "status": "released", + "status": "public", "volume":"46", "issue": "22", "page": "11204-11213", @@ -268,7 +268,7 @@ "authors": "Costa DN, Chatzinoff Y, Passoni NM, Kapur P, Roehrborn CG, Xi Y, Rofsky NM, Torrealba J, Francis F, Futch C, Hagens P, Notgrass H, Otero-Muinelo S, Pedrosa I, Chopra R.", "journal": "Investigative radiology", "identifiers": ["PMID:28379863", "PMCID:PMC5544596"], - "status": "released", + "status": "public", "volume":"52", "issue": "9", "page": "507-513", @@ -282,7 +282,7 @@ "authors": "Hunter RW, Liu Y, Manjunath H, Acharya A, Jones BT, Zhang H, Chen B, Ramalingam H, Hammer RE, Xie Y, Richardson JA, Rakheja D, Carroll TJ, Mendell JT.", "journal": "Genes & development", "identifiers": ["PMID:29950491", "PMCID:PMC6075040", "doi:10.1101/gad.315804.118"], - "status": "released", + "status": "public", "volume":"32", "issue": "13-14", "page": "903-908", @@ -296,7 +296,7 @@ "authors": "Chen KS, Stroup EK, Budhipramono A, Rakheja D, Nichols-Vinueza D, Xu L, Stuart SH, Shukla AA, Fraire C, Mendell JT, Amatruda JF.", "journal": "Genes & development", "identifiers": ["PMID:30026293", "PMCID:PMC6075147", "doi:10.1101/gad.313783.118"], - "status": "released", + "status": "public", "volume":"32", "issue": "15-16", "page": "996-1007", @@ -310,7 +310,7 @@ "authors": "Wang T, Lu R, Kapur P, Jaiswal BS, Hannan R, Zhang Z, Pedrosa I, Luke JJ, Zhang H, Goldstein LD, Yousuf Q, Gu YF, McKenzie T, Joyce A, Kim MS, Wang X, Luo D, Onabolu O, Stevens C, Xie Z, Chen M, Filatenkov A, Torrealba J, Luo X, Guo W, He J, Stawiski E, Modrusan Z, Durinck S, Seshagiri S, Brugarolas J.", "journal": "Cancer discovery", "identifiers": ["PMID:29884728", "PMCID:PMC6125163", "doi:10.1158/2159-8290.CD-17-1246"], - "status": "released", + "status": "public", "volume":"8", "issue": "9", "page": "1142-1155", @@ -324,7 +324,7 @@ "authors": "Krajewski KM, Pedrosa I.", "journal": "Journal of clinical oncology : official journal of the American Society of Clinical Oncology", "identifiers": ["PMID:30372386", "PMCID:PMC6299343", "doi:10.1200/JCO.2018.79.1236"], - "status": "released", + "status": "public", "date_published": "2018 October 29", "uuid": "072e3678-de65-452a-984a-162af86e03e0" }, @@ -335,7 +335,7 @@ "authors": "Courtney KD, Bezwada D, Mashimo T, Pichumani K, Vemireddy V, Funk AM, Wimberly J, McNeil SS, Kapur P, Lotan Y, Margulis V, Cadeddu JA, Pedrosa I, DeBerardinis RJ, Malloy CR, Bachoo RM, Maher EA.", "journal": "Cell metabolism", "identifiers": ["PMID:30146487", "PMCID:PMC6221993", "doi:10.1016/j.cmet.2018.07.020"], - "status": "released", + "status": "public", "volume":"28", "issue": "5", "page": "793-800", @@ -349,7 +349,7 @@ "authors": "Bowman IA, Bent A, Le T, Christie A, Wardak Z, Arriaga Y, Courtney K, Hammers H, Barnett S, Mickey B, Patel T, Whitworth T, Stojadinovic S, Hannan R, Nedzi L, Timmerman R, Brugarolas J.", "journal": "Clinical genitourinary cancer", "identifiers": ["PMID:30538068", "doi:10.1016/j.clgc.2018.11.007"], - "status": "released", + "status": "public", "volume":"17", "issue": "2", "page": "e263-e272", @@ -363,7 +363,7 @@ "authors": "Wardak Z, Christie A, Bowman A, Stojadinovic S, Nedzi L, Barnett S, Patel T, Mickey B, Whitworth T, Hannan R, Brugarolas J, Timmerman R.", "journal": "Clinical genitourinary cancer", "identifiers": ["PMID:30595522", "doi:10.1016/j.clgc.2018.11.006"], - "status": "released", + "status": "public", "volume":"17", "issue": "2", "page": "e273-e280", @@ -377,7 +377,7 @@ "authors": "Yun EJ, Lin CJ, Dang A, Hernandez E, Guo J, Chen WM, Allison J, Kim N, Kapur P, Brugarolas J, Wu K, He D, Lai CH, Lin H, Saha D, Baek ST, Chen BPC, Hsieh JT.", "journal": "Clinical cancer research : an official journal of the American Association for Cancer Research", "identifiers": ["PMID:31000589", "doi:10.1158/1078-0432.CCR-18-3004"], - "status": "released", + "status": "public", "date_published": "2019 April 18", "uuid": "a52fbf54-280e-49b8-b67a-21a0991a75eb" }, @@ -388,7 +388,7 @@ "authors": "Kenneth S. Chen, Sarai H. Stuart, Emily K. Stroup, Abhay S. Shukla, Jason Wang, Veena Rajaram, Gordan M. Vujanic, Tamra Slone, Dinesh Rakheja, and James F. Amatruda", "journal": "JCO precision oncology", "identifiers": ["PMID:31893257", "PMCID:PMC6938390"], - "status": "released", + "status": "public", "date_published": "2018 Apr 25", "uuid": "b3f4b4c7-1527-4e58-a5a3-380f00de727a" }, @@ -399,7 +399,7 @@ "authors": "Diaz de Leon A, Davenport MS, Silverman SG, Schieda N, Cadeddu JA, Pedrosa I.", "journal": "American journal of roentgenology", "identifiers": ["PMID:30995092", "doi:10.2214/AJR.19.21172"], - "status": "released", + "status": "public", "page": "1-10", "date_published": "2019 April 17", "uuid": "18674e02-ecb1-41dc-ac98-cdd5825a5bb3" diff --git a/src/encoded/tests/data/inserts/surgery.json b/src/encoded/tests/data/inserts/surgery.json index 03bfc67e46..bb25aef1ab 100644 --- a/src/encoded/tests/data/inserts/surgery.json +++ b/src/encoded/tests/data/inserts/surgery.json @@ -1,6 +1,5 @@ [ { - "path_id":"PR359MHZ", "patient": "KCEPT359MHZ", "date": "1855-05-03", "hospital_location": "UTSW", @@ -9,7 +8,6 @@ "uuid": "5f29b472-cdb1-478e-ae1a-a133e11cc24b" }, { - "path_id":"PR708FIJ", "patient": "KCEPT708IJT", "date": "1855-01-03", "hospital_location": "UTSW", @@ -18,7 +16,6 @@ "uuid": "1bebec41-446b-457d-b707-7cc9d1a34560" }, { - "path_id":"PR708IJT", "patient": "KCEPT708IJT", "date": "1853-04-03", "hospital_location": "Parkland", @@ -27,7 +24,6 @@ "uuid": "97b0b585-a84b-4844-a429-b55ffd255e2b" }, { - "path_id":"PR480NBU", "patient": "KCEPT480NBU", "date": "1836-05-08", "hospital_location": "Parkland", @@ -36,7 +32,6 @@ "uuid": "55f7efa7-8ca1-4a10-a07c-05ab39a128bd" }, { - "path_id":"PR802XRB", "patient": "KCEPT802XRB", "date": "1862-02-03", "hospital_location": "UTSW", @@ -45,7 +40,6 @@ "uuid": "ea1ef19e-ac9c-47a3-81db-8a622a534937" }, { - "path_id":"PR186NZW", "patient": "KCEPT186NZW", "date": "1827-08-03", "hospital_location": "UTSW", @@ -54,7 +48,6 @@ "uuid": "d192c2c2-b68a-4177-9703-6573b36215ec" }, { - "path_id":"PR139SOR", "patient": "KCEPT139SOR", "date": "1877-12-16", "hospital_location": "UTSW", @@ -63,7 +56,6 @@ "uuid": "af523fef-db5f-4e66-8c76-88b78db38475" }, { - "path_id":"PR021XWS", "patient": "KCEPT021XWS", "date": "1822-05-24", "hospital_location": "Outside", @@ -72,7 +64,6 @@ "uuid": "19896169-c9ed-41ba-ac9b-5e910da87784" }, { - "path_id":"PR692UHR", "patient": "KCEPT692UHR", "date": "1838-05-11", "hospital_location": "UTSW", @@ -81,7 +72,6 @@ "uuid": "f72ebc3f-90db-48b6-aa85-e2ac5f18af78" }, { - "path_id":"PR294KIZ", "patient": "KCEPT294KIZ", "date": "1901-08-14", "hospital_location": "UTSW", @@ -90,7 +80,6 @@ "uuid": "9873da0d-9af3-4309-a5a9-0107951dbab9" }, { - "path_id":"PR398JLK", "patient": "KCEPT398JLK", "date": "1847-04-20", "hospital_location": "UTSW", @@ -99,7 +88,6 @@ "uuid": "485c1724-2080-439a-ac50-d073aa0749c7" }, { - "path_id":"PR756AEN", "patient": "KCEPT756AEN", "date": "1853-10-31", "hospital_location": "UTSW", @@ -108,7 +96,6 @@ "uuid": "8428f265-80b3-4ed9-9128-826da1e2847c" }, { - "path_id":"PR396JUN", "patient": "KCEPT396JUN", "date": "1870-04-11", "hospital_location": "UTSW", @@ -117,7 +104,6 @@ "uuid": "eec0bbf7-37c3-4438-adb2-7003712cb5ea" }, { - "path_id":"PR318AXY", "patient": "KCEPT318AXY", "date": "1859-05-01", "hospital_location": "UTSW", @@ -126,5 +112,3 @@ "uuid": "a3a0bc7e-63e0-49ad-953c-a7947dac7d62" } ] - - diff --git a/src/encoded/tests/data/inserts/surgery_procedure.json b/src/encoded/tests/data/inserts/surgery_procedure.json index 803c57d476..4171d11add 100644 --- a/src/encoded/tests/data/inserts/surgery_procedure.json +++ b/src/encoded/tests/data/inserts/surgery_procedure.json @@ -23,7 +23,7 @@ }, { "surgery": "KCESX708FIJ", - "procedure_type": "Metastectomy", + "procedure_type": "Excision", "hospital_location": "Parkland", "status": "released", "uuid": "7807ad0f-32f3-475a-a544-00014f2acc15" @@ -41,7 +41,7 @@ }, { "surgery": "KCESX480NBU", - "procedure_type": "Metastectomy", + "procedure_type": "Excision", "status": "released", "uuid": "9f85a354-f0af-4e0c-ab13-c0171655e328" }, @@ -64,7 +64,7 @@ }, { "surgery": "KCESX802XRB", - "procedure_type": "Metastectomy", + "procedure_type": "Excision", "status": "released", "uuid": "dfc7df5b-383a-4413-9bed-62c3f1cfd1cc" }, @@ -111,7 +111,7 @@ }, { "surgery": "KCESX294KIZ", - "procedure_type": "Metastectomy", + "procedure_type": "Excision", "status": "released", "uuid": "bf2b0628-2d9b-4e17-b7de-1bd545ca5a8f" }, diff --git a/src/encoded/tests/data/inserts/tvp_a1.json b/src/encoded/tests/data/inserts/tvp_a1.json new file mode 100644 index 0000000000..206a09c61c --- /dev/null +++ b/src/encoded/tests/data/inserts/tvp_a1.json @@ -0,0 +1,42 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "tele_birthmo": "01", + "tele_birthyr": "1960", + "tele_maristat": "1 Married", + "tele_sex": "1 Male", + "tele_livsitua": "1 Lives alone", + "tele_independ": "1 Able to live independently", + "tele_residenc": "1 Single, or multi-family private residence (apartment, condo, house)", + "tele_zip": "754", + "form_status": "Complete", + "status": "released", + "uuid": "ae9dd33f-1c28-4e82-b0f7-1fe22b7f1f7c" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "tele_birthmo": "01", + "tele_birthyr": "1960", + "tele_maristat": "1 Married", + "tele_sex": "2 Female", + "tele_livsitua": "1 Lives alone", + "tele_independ": "1 Able to live independently", + "tele_residenc": "1 Single, or multi-family private residence (apartment, condo, house)", + "tele_zip": "754", + "form_status": "Complete", + "status": "released", + "uuid": "bc58831e-9d6a-409d-a837-c75596cb64f3" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/tvp_a2.json b/src/encoded/tests/data/inserts/tvp_a2.json new file mode 100644 index 0000000000..4fa038cd7c --- /dev/null +++ b/src/encoded/tests/data/inserts/tvp_a2.json @@ -0,0 +1,62 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "tele_inbirmo": "03", + "tele_inbiryr": "2009", + "tele_insex": "1 Male", + "tele_newinf": "1 Yes", + "tele_inhisp": "1 Yes", + "tele_inhispor": "2 Puerto Rican", + "tele_inrace": "1 White", + "tele_inracex": "test", + "tele_inrasec": "2 Black or African American", + "tele_inrater": "3 American Indian or Alaska Native", + "tele_inraterx": "test", + "tele_ineduc": "99", + "tele_inrelto": "2 Child (by blood or through marriage or adoption)", + "tele_inknown": "30", + "tele_inlivwth": "0 No", + "tele_invisits": "3 Weekly", + "tele_incalls": "2 At least 3 times per week", + "tele_inrely": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "b7cd17b8-83b9-4099-ab95-10674cc2f8c5" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "tele_inbirmo": "03", + "tele_inbiryr": "2009", + "tele_insex": "1 Male", + "tele_newinf": "1 Yes", + "tele_inhisp": "1 Yes", + "tele_inhispor": "2 Puerto Rican", + "tele_inrace": "1 White", + "tele_inracex": "test", + "tele_inrasec": "2 Black or African American", + "tele_inrater": "3 American Indian or Alaska Native", + "tele_inraterx": "test", + "tele_ineduc": "99", + "tele_inrelto": "2 Child (by blood or through marriage or adoption)", + "tele_inknown": "30", + "tele_inlivwth": "0 No", + "tele_invisits": "3 Weekly", + "tele_incalls": "2 At least 3 times per week", + "tele_inrely": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "0caa4ea6-fc74-4244-80db-33ed936be31f" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/tvp_a3.json b/src/encoded/tests/data/inserts/tvp_a3.json new file mode 100644 index 0000000000..89b5cc86fe --- /dev/null +++ b/src/encoded/tests/data/inserts/tvp_a3.json @@ -0,0 +1,58 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "tele_genetic_mutation": { + "tele_nwinfmut": "0 No (SKIP TO QUESTION 5)" + }, + "tele_note_a3": { + "tele_nwinfpar": "0 No (SKIP TO QUESTION 6)" + }, + "tele_note_a3_2": { + "tele_full_siblilngs": { + "tele_sibs": "3", + "tele_nwinfsib": "0 No (SKIP TO QUESTION 7)" + }, + "tele_biological_children": { + "tele_kids": "3", + "tele_nwinfkid": "0 No (END FORM HERE)" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "6466c57d-c768-4d1c-83c8-86c13c28097d" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "tele_genetic_mutation": { + "tele_nwinfmut": "0 No (SKIP TO QUESTION 5)" + }, + "tele_note_a3": { + "tele_nwinfpar": "0 No (SKIP TO QUESTION 6)" + }, + "tele_note_a3_2": { + "tele_full_siblings": { + "tele_sibs": "3", + "tele_nwinfsib": "0 No (SKIP TO QUESTION 7)" + }, + "tele_biological_children": { + "tele_kids": "3", + "tele_nwinfkid": "0 No (END FORM HERE)" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "40d5ba54-fba1-40ea-b7c2-1f6d5fcad1de" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/tvp_a4.json b/src/encoded/tests/data/inserts/tvp_a4.json new file mode 100644 index 0000000000..1b3696a60a --- /dev/null +++ b/src/encoded/tests/data/inserts/tvp_a4.json @@ -0,0 +1,52 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "tele_anymeds": "1 Yes", + "tele_drugid_1": "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "tele_drugid_2": "103428 acetaminophen - HYDROcodone (Vicodin)", + "tele_drugid_3": "200051 Adalat", + "tele_drugid_4": "200015 Advil", + "tele_not_listed_drugs": { + "tele_drugid_31": "test", + "tele_drug_name_31": "test", + "tele_drugid_32": "test-test", + "tele_drug_name_32": "test-test", + "tele_drugid_33": "test-test-test", + "tele_drug_name_33": "test-test-test" + }, + "form_status": "Complete", + "status": "released", + "uuid": "b58f9b52-e39f-4052-b964-f2c2149a89c3" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "tele_anymeds": "1 Yes", + "tele_drugid_1": "100049 acetaminophen (Anacin, Tempra, Tylenol)", + "tele_drugid_2": "103428 acetaminophen - HYDROcodone (Vicodin)", + "tele_drugid_3": "200051 Adalat", + "tele_drugid_4": "200015 Advil", + "tele_not_listed_drugs": { + "tele_drugid_31": "test", + "tele_drug_name_31": "test", + "tele_drugid_32": "test-test", + "tele_drug_name_32": "test-test", + "tele_drugid_33": "test-test-test", + "tele_drug_name_33": "test-test-test" + }, + "form_status": "Complete", + "status": "released", + "uuid": "b7fce6ef-c50c-4b16-a8cf-d93977263b5c" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/tvp_b4.json b/src/encoded/tests/data/inserts/tvp_b4.json new file mode 100644 index 0000000000..a1a2172a9e --- /dev/null +++ b/src/encoded/tests/data/inserts/tvp_b4.json @@ -0,0 +1,52 @@ +[{ + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "tele_sec1": { + "tele_memory": "0 - None No memory loss, or slight inconsistent forgetfulness.", + "tele_orient": "0.5 - Questionable Fully oriented except for slight difficulty with time relationships.", + "tele_judgment": "0.5 - Questionable Slight impairment in solving problems, similarities, and differences.", + "tele_commun": "1 - Mild Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "tele_homehobb": "2 - Moderate Only simple chores preserved; very restricted interests, poorly maintained.", + "tele_perscare": "1 - Mild Needs prompting.", + "tele_cdrsum": 20, + "tele_cdrglob": "0.5 = Questionable impariment" + }, + "tele_sec2": { + "tele_comport": "3 - Severe Severe behavioral changes, making interpersonal interactions all unidirectional.", + "tele_cdrlang": "0 - None No language difficulty or occasional mild tip-of-the-tongue." + }, + "form_status": "Complete", + "status": "released", + "uuid": "b8339154-4e68-4248-8e1a-3381fe728cc9" +}, +{ + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "tele_sec1": { + "tele_memory": "0 - None No memory loss, or slight inconsistent forgetfulness.", + "tele_orient": "0.5 - Questionable Fully oriented except for slight difficulty with time relationships.", + "tele_judgment": "0.5 - Questionable Slight impairment in solving problems, similarities, and differences.", + "tele_commun": "1 - Mild Unable to function independently at these activities, although may still be engaged in some; appears normal to casual inspection.", + "tele_homehobb": "2 - Moderate Only simple chores preserved; very restricted interests, poorly maintained.", + "tele_perscare": "1 - Mild Needs prompting.", + "tele_cdrsum": 13, + "tele_cdrglob": "0.5 = Questionable impariment" + }, + "tele_sec2": { + "tele_comport": "3 - Severe Severe behavioral changes, making interpersonal interactions all unidirectional.", + "tele_cdrlang": "0 - None No language difficulty or occasional mild tip-of-the-tongue." + }, + "form_status": "Complete", + "status": "released", + "uuid": "bdaf392f-ceeb-4f4e-a465-1598d42a54e6" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/tvp_b5.json b/src/encoded/tests/data/inserts/tvp_b5.json new file mode 100644 index 0000000000..85d2628960 --- /dev/null +++ b/src/encoded/tests/data/inserts/tvp_b5.json @@ -0,0 +1,78 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "tele_npiqinf": "1 Spouse", + "tele_npiqinfx": "test", + "tele_del": "1 Yes", + "tele_delsev": "1 Mild (noticeable, but not a significant change)", + "tele_hall": "0 No", + "tele_hallsev": "2 Moderate (significant, but not a dramatic change)", + "tele_agit": "9 Unknown", + "tele_agitsev": "3 Severe (very marked or prominent, a dramatic change)", + "tele_depd": "1 Yes", + "tele_depdsev": "9 Unknown", + "tele_anx": "1 Yes", + "tele_anxsev": "1 Mild (noticeable, but not a significant change)", + "tele_elat": "0 No", + "tele_elatsev": "2 Moderate (significant, but not a dramatic change)", + "tele_apa": "9 Unknown", + "tele_apasev": "3 Severe (very marked or prominent, a dramatic change)", + "tele_disn": "9 Unknown", + "tele_disnsev": "9 Unknown", + "tele_irr": "1 Yes", + "tele_irrsev": "1 Mild (noticeable, but not a significant change)", + "tele_mot": "0 No", + "tele_motsev": "2 Moderate (significant, but not a dramatic change)", + "tele_nite": "9 Unknown", + "tele_nitesev": "3 Severe (very marked or prominent, a dramatic change)", + "tele_app": "9 Unknown", + "tele_appsev": "1 Mild (noticeable, but not a significant change)", + "form_status": "Complete", + "status": "released", + "uuid": "64d8bcaa-ffcb-4d7e-9b45-606c26bd5811" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "tele_npiqinf": "1 Spouse", + "tele_npiqinfx": "test", + "tele_del": "0 No", + "tele_delsev": "1 Mild (noticeable, but not a significant change)", + "tele_hall": "1 Yes", + "tele_hallsev": "2 Moderate (significant, but not a dramatic change)", + "tele_agit": "9 Unknown", + "tele_agitsev": "3 Severe (very marked or prominent, a dramatic change)", + "tele_depd": "1 Yes", + "tele_depdsev": "9 Unknown", + "tele_anx": "1 Yes", + "tele_anxsev": "1 Mild (noticeable, but not a significant change)", + "tele_elat": "0 No", + "tele_elatsev": "2 Moderate (significant, but not a dramatic change)", + "tele_apa": "9 Unknown", + "tele_apasev": "3 Severe (very marked or prominent, a dramatic change)", + "tele_disn": "9 Unknown", + "tele_disnsev": "9 Unknown", + "tele_irr": "1 Yes", + "tele_irrsev": "1 Mild (noticeable, but not a significant change)", + "tele_mot": "0 No", + "tele_motsev": "2 Moderate (significant, but not a dramatic change)", + "tele_nite": "9 Unknown", + "tele_nitesev": "3 Severe (very marked or prominent, a dramatic change)", + "tele_app": "9 Unknown", + "tele_appsev": "1 Mild (noticeable, but not a significant change)", + "form_status": "Complete", + "status": "released", + "uuid": "30cdd917-518f-4062-8ff0-16bc98dedf77" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/tvp_b7.json b/src/encoded/tests/data/inserts/tvp_b7.json new file mode 100644 index 0000000000..7a2729c773 --- /dev/null +++ b/src/encoded/tests/data/inserts/tvp_b7.json @@ -0,0 +1,48 @@ +[{ + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "tele_help_with": { + "tele_bills": "8 Not applicable (e.g., never did)", + "tele_taxes": "0 Normal", + "tele_shopping": "1 Has difficulty, but does by self", + "tele_games":"2 Requires assistance", + "tele_stove": "3 Dependent", + "tele_mealprep":"9 Unknown", + "tele_events": "8 Not applicable (e.g., never did)", + "tele_payattn": "0 Normal", + "tele_remdates":"1 Has difficulty, but does by self", + "tele_travel": "2 Requires assistance" +}, + "form_status": "Complete", + "status": "released", + "uuid": "f0fdbc18-b878-458c-824e-b49f4726e88e" +}, +{ + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "tele_help_with": { + "tele_bills": "8 Not applicable (e.g., never did)", + "tele_taxes": "0 Normal", + "tele_shopping": "1 Has difficulty, but does by self", + "tele_games":"2 Requires assistance", + "tele_stove": "3 Dependent", + "tele_mealprep":"9 Unknown", + "tele_events": "8 Not applicable (e.g., never did)", + "tele_payattn": "0 Normal", + "tele_remdates":"1 Has difficulty, but does by self", + "tele_travel": "2 Requires assistance" +}, + "form_status": "Complete", + "status": "released", + "uuid": "f03f7ea4-4b13-4673-b0c5-e2991139230c" +}] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/tvp_d2.json b/src/encoded/tests/data/inserts/tvp_d2.json new file mode 100644 index 0000000000..21f836755a --- /dev/null +++ b/src/encoded/tests/data/inserts/tvp_d2.json @@ -0,0 +1,104 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "tele_medical_conditions": { + "tele_cancer": "1 Yes, primary/non-metastatic", + "tele_cancsite": "test", + "tele_cond_present": { + "tele_diabet": "0 No", + "tele_myoinf": "1 Yes", + "tele_conghrt": "8 Not assessed", + "tele_afibrill": "0 No", + "tele_hypert": "1 Yes", + "tele_angina": "8 Not assessed", + "tele_hypchol": "0 No", + "tele_vb12def": "1 Yes", + "tele_thydis": "8 Not assessed", + "tele_arth": "0 No", + "tele_artype": "1 Rheumatoid", + "tele_artypex": "test", + "tele_note_d2_3": { + "tele_artupex": "1 Upper extremity", + "tele_artloex": "1 Lower extremity", + "tele_artspin": "1 Spine", + "tele_artunkn": "1 Unknown" + }, + "tele_urineinc": "0 No", + "tele_bowlinc": "1 Yes", + "tele_sleepap": "8 Not assessed", + "tele_remdis": "0 No", + "tele_hyposom": "1 Yes", + "tele_sleepoth": "8 Not assessed", + "tele_sleepotx": "test", + "tele_angiocp": "0 No", + "tele_angiopci": "1 Yes", + "tele_pacemake": "8 Not assessed", + "tele_hvalve": "0 No", + "tele_antienc": "1 Yes", + "tele_antiencx": "test", + "tele_othcond": "0 No", + "tele_othcondx": "test" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "c9a09edb-6876-4d46-820e-90a483111f6b" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "tele_medical_conditions": { + "tele_cancer": "1 Yes, primary/non-metastatic", + "tele_cancsite": "test", + "tele_cond_present": { + "tele_diabet": "0 No", + "tele_myoinf": "1 Yes", + "tele_conghrt": "8 Not assessed", + "tele_afibrill": "0 No", + "tele_hypert": "1 Yes", + "tele_angina": "8 Not assessed", + "tele_hypchol": "0 No", + "tele_vb12def": "1 Yes", + "tele_thydis": "8 Not assessed", + "tele_arth": "0 No", + "tele_artype": "1 Rheumatoid", + "tele_artypex": "test", + "tele_note_d2_3": { + "tele_artupex": "1 Upper extremity", + "tele_artloex": "1 Lower extremity", + "tele_artspin": "1 Spine", + "tele_artunkn": "1 Unknown" + }, + "tele_urineinc": "0 No", + "tele_bowlinc": "1 Yes", + "tele_sleepap": "8 Not assessed", + "tele_remdis": "0 No", + "tele_hyposom": "1 Yes", + "tele_sleepoth": "8 Not assessed", + "tele_sleepotx": "test", + "tele_angiocp": "0 No", + "tele_angiopci": "1 Yes", + "tele_pacemake": "8 Not assessed", + "tele_hvalve": "0 No", + "tele_antienc": "1 Yes", + "tele_antiencx": "test", + "tele_othcond": "0 No", + "tele_othcondx": "test" + } + }, + "form_status": "Complete", + "status": "released", + "uuid": "a4ec3d3d-d017-4401-aeed-1af80970e08c" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/tvp_t1.json b/src/encoded/tests/data/inserts/tvp_t1.json new file mode 100644 index 0000000000..a20f36d80e --- /dev/null +++ b/src/encoded/tests/data/inserts/tvp_t1.json @@ -0,0 +1,46 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "tvp_reason": { + "telcog": "0 No", + "telill": "1 Yes", + "telhome": "0 No", + "telrefu": "1 Yes", + "telothr": "1 Yes", + "telothrx": "test" + }, + "telinper": "9 Unknown", + "telmile": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "76ec6997-30f8-4291-bc65-481ba215890f" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-04", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "tvp_reason": { + "telcog": "1 Yes", + "telill": "0 No", + "telhome": "1 Yes", + "telrefu": "0 No", + "telothr": "1 Yes", + "telothrx": "test" + }, + "telinper": "9 Unknown", + "telmile": "0 No", + "form_status": "Complete", + "status": "released", + "uuid": "c3342b6c-0c26-4f2c-971b-c13321615a16" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/tvp_z1x.json b/src/encoded/tests/data/inserts/tvp_z1x.json new file mode 100644 index 0000000000..0b3fd12fab --- /dev/null +++ b/src/encoded/tests/data/inserts/tvp_z1x.json @@ -0,0 +1,126 @@ +[ + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-25", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "tele_note_z1x_1": { + "tele_langt": "1 English" + }, + "tele_note_z1x_2": { + "tele_langa": "1 English" + }, + "tele_note_z1x_3": { + "tele_langa": "2 Spanish" + }, + "tele_note_z1x_4": { + "title": "A3 Subject Family History", + "type": "object", + "properties": { + "tele_a3sub": "1 Yes", + "tele_a3not": "95 - Physical problem", + "tele_langa": "1 English" + } + }, + "tele_note_z1x_5": { + "tele_a4sub": "1 Yes", + "tele_a4not": "96 - Cognitive/behavior problem", + "tele_langa": "2 Spanish" + }, + "tele_note_z1x_6": { + "tele_langb": "1 English" + }, + "tele_note_z1x_7": { + "title": "B5 BEHAVIORAL ASSESSMENT NPI-Q", + "tele_b5sub": "1 Yes", + "tele_b5not": "97 - Other problem", + "tele_langb": "2 Spanish" + }, + "tele_note_z1x_8": { + "tele_b7sub": "0 No", + "tele_b7not": "98 - Verbal refusal", + "tele_langb": "2 Spanish" + }, + "tele_note_z1x_9": { + "tele_langb": "1 English" + }, + "tele_note_z1x_10": { + "tele_langd": "1 English" + }, + "tele_note_z1x_11": { + "tele_langd": "2 Spanish" + }, + "tele_cls_form": { + "tele_clssub": "0 No", + "tele_langcls": "1 English" + }, + "form_status": "Complete", + "status": "released", + "uuid": "41c3a036-22b1-40fc-9b73-3423606d3628" + }, + { + "patient": "000001", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-14", + "visitnum": "2", + "header_complete": "Complete", + "initials": "OK", + "tele_note_z1x_1": { + "tele_langt": "2 Spanish" + }, + "tele_note_z1x_2": { + "tele_langa": "2 Spanish" + }, + "tele_note_z1x_3": { + "tele_langa": "1 English" + }, + "tele_note_z1x_4": { + "title": "A3 Subject Family History", + "type": "object", + "properties": { + "tele_a3sub": "1 Yes", + "tele_a3not": "95 - Physical problem", + "tele_langa": "1 English" + } + }, + "tele_note_z1x_5": { + "tele_a4sub": "1 Yes", + "tele_a4not": "96 - Cognitive/behavior problem", + "tele_langa": "2 Spanish" + }, + "tele_note_z1x_6": { + "tele_langb": "1 English" + }, + "tele_note_z1x_7": { + "title": "B5 BEHAVIORAL ASSESSMENT NPI-Q", + "tele_b5sub": "1 Yes", + "tele_b5not": "97 - Other problem", + "tele_langb": "2 Spanish" + }, + "tele_note_z1x_8": { + "tele_b7sub": "0 No", + "tele_b7not": "98 - Verbal refusal", + "tele_langb": "2 Spanish" + }, + "tele_note_z1x_9": { + "tele_langb": "1 English" + }, + "tele_note_z1x_10": { + "tele_langd": "1 English" + }, + "tele_note_z1x_11": { + "tele_langd": "2 Spanish" + }, + "tele_cls_form": { + "tele_clssub": "0 No", + "tele_langcls": "1 English" + }, + "form_status": "Complete", + "status": "released", + "uuid": "97c2c023-8418-4a95-b5af-2d572137f66c" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/updrs.json b/src/encoded/tests/data/inserts/updrs.json new file mode 100644 index 0000000000..367dc71104 --- /dev/null +++ b/src/encoded/tests/data/inserts/updrs.json @@ -0,0 +1,57 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "pdnormal": true, + "speech": "0 Normal", + "face_exp": "1 Minimal hypomimia, could be normal \"poker face\"", + "trem_at_rest": { + "fac_lip_chin": "0 Absent", + "r_hand": "1 Slight and infrequently present", + "l_hand": "2 Mild in amplitude and persistent; or moderate in amplitude, but only intermittently present", + "r_foot": "3 Moderate in amplitude and present most of the time", + "l_foot": "4 Marked in amplitude and present most of the time" + }, + "action_trem_hands": { + "act_r_hand": "0 Absent", + "act_l_hand": "1 Slight; present with action" + }, + "rigidity": { + "rig_neck": "0 Absent", + "r_up": "4 Severe; range of motion achieved with difficulty", + "l_up": "8 Untestable", + "r_low": "2 Mild to moderate", + "l_low": "4 Severe; range of motion achieved with difficulty", + "l_up_untest": "test" + }, + "finger_taps": { + "taps_r": "0 Normal", + "taps_l": "1 Mild slowing and/or reduction in amplitude" + }, + "hand_move": { + "movem_r": "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement", + "movem_l": "3 Severely impaired; frequent hesitation in initiating movements or arrests in ongoing movement" + }, + "move_of_hands": { + "rap_alt_r": "4 Can barely perform the task", + "rap_alt_l": "0 Normal" + }, + "leg_agil": { + "leg_agil_r": "1 Mild slowing and/or reduction in amplitude", + "leg_agil_l": "2 Moderately impaired; definite and early fatiguing; may have occasional arrests in movement" + }, + "arise_chair": "3 Tends to fall back and may have to try more than one time, but can get up without help", + "posture": "0 Normal", + "gait": "1 Walks slowly; may shuffle with short steps, but no festination (hastening steps) or propulsion", + "post_stab": "2 Absence of postural response; would fall if not caught by examiner", + "bradykin": "3 Moderate slowness, poverty or small amplitude of movement", + "form_status": "Complete", + "status": "released", + "uuid": "f47319ef-2010-48d8-b76b-5490cf526f17" + } +] \ No newline at end of file diff --git a/src/encoded/tests/data/inserts/user.json b/src/encoded/tests/data/inserts/user.json index 518ac9002f..ddd57fb113 100644 --- a/src/encoded/tests/data/inserts/user.json +++ b/src/encoded/tests/data/inserts/user.json @@ -714,7 +714,7 @@ "uuid": "7e763d5a-634b-4181-a812-4361183359e9" }, { - "uuid": "e7bb4fa6-ef92-41b7-871a-5f64db3848fe", + "email": "david@glicksoftware.com", "first_name": "David", "groups": [ @@ -744,7 +744,7 @@ "uuid": "627eedbc-7cb3-4de3-9743-a86266e435a6" }, { - "email": "vsmalladi@gmail.com", + "email": "venkat.malladi@utsouthwestern.edu", "first_name": "Venkat", "groups": [ "admin", @@ -776,7 +776,7 @@ "uuid": "6800d05f-7213-48b1-9ad8-254c73c5b83f" }, { - "email": "mznier@gmail.com", + "email": "mingzhu.nie@utsouthwestern.edu", "first_name": "Mingzhu", "groups": [ "admin", @@ -791,6 +791,7 @@ ], "uuid": "41c729d0-f3ed-4d7c-b9fb-4cff87c92c04" }, + { "email": "guillaume.jim@gmail.com", "first_name": "Guillaume", @@ -808,7 +809,7 @@ "uuid": "07713b7e-f71b-4a69-8fab-ab73896684d9" }, { - "email": "mingjiecn@gmail.com", + "email": "mingjie.li@utsouthwestern.edu", "first_name": "Mingjie", "groups": [ "admin", diff --git a/src/encoded/tests/data/inserts/visit_contact.json b/src/encoded/tests/data/inserts/visit_contact.json new file mode 100644 index 0000000000..0058a93c76 --- /dev/null +++ b/src/encoded/tests/data/inserts/visit_contact.json @@ -0,0 +1,58 @@ +[ + { + "patient": "000000", + "formver": "3", + "adcid": "25 University of Texas Southwestern", + "visdate": "2001-02-01", + "visitnum": "1", + "header_complete": "Complete", + "initials": "OK", + "isadcvis": "1 Yes", + "adcvistype": "1 Initial", + "isrchvis": "1 Yes", + "rchvistype": "1 Initial", + "study1": "A Skin Biopsy", + "phase1": "0 0", + "study2": "AB Caregiver Enrichment Program", + "phase2": "1 1", + "vishow": "1 In person", + "vissite": "1 UTSW", + "consent": { + "cinfo": "1 Yes", + "csampblood": "1 Yes", + "csampswab": "0 N0", + "csamppunct": "1 Yes", + "cdonatebr": "0 0 No", + "csampbrain": "1 Yes", + "csampbrainshare": "9 Not answered", + "cfaminvite": "1 Yes", + "cfcellline": "1 Yes", + "autcons": "2 Refused" + }, + "nacc_diag": { + "clindem": "1 Yes", + "notdem": "1, 1 Not demented control subject, no neurological disorder", + "alzdem": "1, 1 PR", + "mixed": "1 Yes", + "nonaddem": "1 Frontal lobe dementias (e.g. Pick's, FTD)", + "psychos": "0 No", + "dep_a0_2": "1 Yes", + "del_a0_2": "0 No", + "utswclinicdx": "1 Primary", + "clin_dx1": "1D First Degree Relative", + "clin_dx2": "A1 Alzheimer's Frontal (Secondary Dx)", + "utswnpsydx": "2 Secondary", + "neuro_dx1": "A2 Alzheimer's Left (Secondary Dx)", + "neuro_dx2": "AA Amyloid Angiopathy", + "utswconsensusdx": "1 Primary", + "prim_consen_dx": "AD Alzheimer's Disease - Definite", + "sec_consen_dx": "AF AD pathology, insufficient for AD diagnosis", + "eov_status": "1 Active: further in-person visits expected", + "fupdate": "1987-09-08", + "crsrchavail": "1 Yes" + }, + "form_status": "Complete", + "status": "released", + "uuid": "7f2d993f-800d-49d3-833d-9e707c18f268" + } +] \ No newline at end of file diff --git a/src/encoded/types/base.py b/src/encoded/types/base.py index ee25fefeb9..e25108d886 100644 --- a/src/encoded/types/base.py +++ b/src/encoded/types/base.py @@ -83,12 +83,13 @@ def _award_viewing_group(award_uuid, root): # Transitioning to the same status (released -> released) allows for the child objects to be crawled # without actually making a patch if the new and current statuses are the same. STATUS_TRANSITION_TABLE = { - 'released': ['released', 'in progress', 'submitted'], - 'in progress': ['in progress'], - 'deleted': ['deleted', 'in progress', 'current', 'submitted'], + 'released': ['released', 'restricted','in progress', 'submitted'], + 'restricted':['restricted'], + 'in progress': ['in progress','restricted',], + 'deleted': ['deleted', 'in progress', 'restricted','current', 'submitted'], 'revoked': ['revoked', 'released', 'archived'], 'archived': ['archived', 'released'], - 'submitted': ['submitted', 'in progress'], + 'submitted': ['submitted', 'restricted','in progress'], 'replaced': [], 'disabled': ['disabled', 'current'], 'current': ['current'], @@ -101,6 +102,7 @@ def _award_viewing_group(award_uuid, root): STATUS_HIERARCHY = { 'released': 100, 'current': 100, + 'restricted':90, 'in progress': 90, 'submitted': 80, 'uploading': 80, @@ -160,6 +162,8 @@ class Item(snovault.Item): 'released': ALLOW_CURRENT, 'deleted': DELETED, 'replaced': DELETED, + 'restricted':ALLOW_VIEWING_GROUP_VIEW, + 'public': ALLOW_CURRENT, # shared_status 'current': ALLOW_CURRENT, diff --git a/src/encoded/types/biodataset.py b/src/encoded/types/biodataset.py deleted file mode 100644 index e46cfc4648..0000000000 --- a/src/encoded/types/biodataset.py +++ /dev/null @@ -1,420 +0,0 @@ -from snovault import ( - abstract_collection, - calculated_property, - collection, - load_schema, -) -from .base import ( - Item, - paths_filtered_by_status, -) - -from urllib.parse import quote_plus -from urllib.parse import urljoin -from .shared_calculated_properties import ( - CalculatedAssaySynonyms, - CalculatedFileSetAssay, - CalculatedFileSetBiosample, - CalculatedSeriesAssay, - CalculatedSeriesBiosample, - CalculatedSeriesTreatment, - CalculatedSeriesTarget, - CalculatedVisualize -) - -from itertools import chain -import datetime - - -def item_is_revoked(request, path): - return request.embed(path, '@@object?skip_calculated=true').get('status') == 'revoked' - - -def calculate_assembly(request, files_list, status): - assembly = set() - viewable_file_status = ['released', 'in progress'] - - for path in files_list: - properties = request.embed(path, '@@object?skip_calculated=true') - if properties['status'] in viewable_file_status: - if 'assembly' in properties: - assembly.add(properties['assembly']) - return list(assembly) - - -@abstract_collection( - name='biodatasets', - unique_key='accession', - properties={ - 'title': "Biodatasets", - 'description': 'Listing of all types of dataset.', - }) -class Biodataset(Item): - base_types = ['Biodataset'] + Item.base_types - embedded = [ - 'files', - 'files.bioreplicate', - 'files.bioreplicate.bioexperiment', - 'files.bioreplicate.bioexperiment.lab', - 'files.submitted_by', - 'files.lab', - 'revoked_files', - 'revoked_files.bioreplicate', - 'revoked_files.bioreplicate.bioexperiment', - 'revoked_files.bioreplicate.bioexperiment.lab', - 'revoked_files.submitted_by', - 'submitted_by', - 'lab', - 'award', - 'award.pi.lab', - 'award.pi', - 'references' - ] - audit_inherit = [ - 'original_files', - 'revoked_files', - 'contributing_files' - 'submitted_by', - 'lab', - 'award', - 'documents.lab', - ] - set_status_up = [ - 'documents' - ] - set_status_down = [] - name_key = 'accession' - rev = { - 'original_files': ('Biofile', 'biodataset'), - } - - @calculated_property(schema={ - "title": "Original files", - "type": "array", - "items": { - "type": ['string', 'object'], - "linkFrom": "Biofile.biodataset", - }, - "notSubmittable": True, - }) - def original_files(self, request, original_files): - return paths_filtered_by_status(request, original_files) - - @calculated_property(schema={ - "title": "Contributing files", - "type": "array", - "items": { - "type": "string", - "linkTo": "Biofile", - }, - }) - def contributing_files(self, request, original_files, status): - derived_from = set() - for path in original_files: - properties = request.embed(path, '@@object?skip_calculated=true') - derived_from.update( - paths_filtered_by_status(request, properties.get('derived_from', [])) - ) - outside_files = list(derived_from.difference(original_files)) - if status in ('released'): - return paths_filtered_by_status( - request, outside_files, - include=('released',), - ) - else: - return paths_filtered_by_status( - request, outside_files, - exclude=('revoked', 'deleted', 'replaced'), - ) - - @calculated_property(schema={ - "title": "Files", - "type": "array", - "items": { - "type": "string", - "linkTo": "Biofile", - }, - }) - def files(self, request, original_files, status): - if status in ('released', 'archived'): - return paths_filtered_by_status( - request, original_files, - include=('released', 'archived'), - ) - else: - return paths_filtered_by_status( - request, original_files, - exclude=('revoked', 'deleted', 'replaced'), - ) - - @calculated_property(schema={ - "title": "Revoked files", - "type": "array", - "items": { - "type": "string", - "linkTo": "Biofile", - }, - }) - def revoked_files(self, request, original_files): - return [ - path for path in original_files - if item_is_revoked(request, path) - ] - - @calculated_property(define=True, schema={ - "title": "Genome assembly", - "type": "array", - "items": { - "type": "string", - }, - }) - def assembly(self, request, original_files, status): - return calculate_assembly(request, original_files, status) - - @calculated_property(condition='assembly', schema={ - "title": "Hub", - "type": "string", - }) - def hub(self, request): - return request.resource_path(self, '@@hub', 'hub.txt') - - @calculated_property(condition='date_released', schema={ - "title": "Month released", - "type": "string", - }) - def month_released(self, date_released): - return datetime.datetime.strptime(date_released, '%Y-%m-%d').strftime('%B, %Y') - - -class BiofileSet(Biodataset): - item_type = 'biofile_set' - base_types = ['BiofileSet'] + Biodataset.base_types - schema = load_schema('encoded:schemas/biofile_set.json') - embedded = Biodataset.embedded - - @calculated_property(schema={ - "title": "Contributing files", - "type": "array", - "items": { - "type": "string", - "linkTo": "Biofile", - }, - }) - def contributing_files(self, request, original_files, related_files, status): - files = set(original_files + related_files) - derived_from = set() - for path in files: - properties = request.embed(path, '@@object?skip_calculated=true') - derived_from.update( - paths_filtered_by_status(request, properties.get('derived_from', [])) - ) - outside_files = list(derived_from.difference(files)) - if status in ('released'): - return paths_filtered_by_status( - request, outside_files, - include=('released',), - ) - else: - return paths_filtered_by_status( - request, outside_files, - exclude=('revoked', 'deleted', 'replaced'), - ) - - @calculated_property(define=True, schema={ - "title": "Files", - "type": "array", - "items": { - "type": "string", - "linkTo": "Biofile", - }, - }) - def files(self, request, original_files, related_files, status): - if status in ('released'): - return paths_filtered_by_status( - request, chain(original_files, related_files), - include=('released',), - ) - else: - return paths_filtered_by_status( - request, chain(original_files, related_files), - exclude=('revoked', 'deleted', 'replaced'), - ) - - @calculated_property(schema={ - "title": "Revoked files", - "type": "array", - "items": { - "type": "string", - "linkTo": "Biofile", - }, - }) - def revoked_files(self, request, original_files, related_files): - return [ - path for path in chain(original_files, related_files) - if item_is_revoked(request, path) - ] - - @calculated_property(define=True, schema={ - "title": "Genome assembly", - "type": "array", - "items": { - "type": "string", - }, - }) - def assembly(self, request, original_files, related_files, status): - return calculate_assembly(request, list(chain(original_files, related_files))[:101], status) - - -@collection( - name='bioreferences', - unique_key='accession', - properties={ - 'title': "Bioreference file set", - 'description': 'A set of reference files used by KCE.', - }) -class Bioreference(BiofileSet): - item_type = 'bioreference' - schema = load_schema('encoded:schemas/bioreference.json') - embedded = BiofileSet.embedded + ['files.biodataset','award', - 'lab'] - - -@collection( - name='bioprojects', - unique_key='accession', - properties={ - 'title': "Bioproject file set", - 'description': 'A set of files that comprise a project.', - }) -class Bioproject(BiofileSet, CalculatedFileSetAssay, CalculatedFileSetBiosample, CalculatedAssaySynonyms): - item_type = 'bioproject' - schema = load_schema('encoded:schemas/bioproject.json') - embedded = BiofileSet.embedded + [ - 'files.biodataset', - 'files.bioreplicate.biolibrary', - 'files.bioreplicate', - 'files.bioreplicate.bioexperiment', - 'award', - 'lab' - ] - - -@abstract_collection( - name='bioseries', - unique_key='accession', - properties={ - 'title': "Bioseries", - 'description': 'Listing of all types of series datasets.', - }) -class Bioseries(Biodataset, CalculatedSeriesAssay, CalculatedSeriesBiosample, CalculatedSeriesTarget, CalculatedSeriesTreatment, CalculatedAssaySynonyms): - item_type = 'bioseries' - base_types = ['Bioseries'] + Biodataset.base_types - schema = load_schema('encoded:schemas/bioseries.json') - embedded = Biodataset.embedded + [ - 'references', - 'related_datasets.biospecimen', - 'related_datasets.files', - 'related_datasets.lab', - 'related_datasets.submitted_by', - 'related_datasets.award.pi.lab', - 'related_datasets.bioreplicate.biolibrary', - 'related_datasets.bioreplicate.biolibrary.biospecimen.submitted_by', - 'related_datasets.bioreplicate.biolibrary.biospecimen', - 'related_datasets.bioreplicate.biolibrary.biospecimen.donor', - 'related_datasets.possible_controls', - 'related_datasets.possible_controls.lab', - 'related_datasets.references', - 'files.platform', - 'files.lab', - 'files.bioreplicate.biolibrary.biospecimen', - 'files.biolibrary.biospecimen', - 'award', - 'lab' - ] - - @calculated_property(schema={ - "title": "Revoked datasets", - "type": "array", - "items": { - "type": "string", - "linkTo": "Biofile", - }, - }) - def revoked_datasets(self, request, related_datasets): - return [ - path for path in related_datasets - if item_is_revoked(request, path) - ] - - @calculated_property(define=True, schema={ - "title": "Genome assembly", - "type": "array", - "items": { - "type": "string", - }, - }) - def assembly(self, request, original_files, related_datasets, status): - combined_assembly = set() - for assembly_from_original_files in calculate_assembly(request, original_files, status): - combined_assembly.add(assembly_from_original_files) - for biodataset in related_datasets: - - properties = request.embed(biodataset, '@@object') - if properties['status'] not in ('deleted', 'replaced'): - for assembly_from_related_dataset in properties['assembly']: - combined_assembly.add(assembly_from_related_dataset) - return list(combined_assembly) - - -@collection( - name='bioexperiment-series', - unique_key='accession', - properties={ - 'title': "Bioexperiment series", - 'description': 'A series that groups two or more experiments.', - }) -class BioexperimentSeries(Bioseries): - item_type = 'bioexperiment_series' - schema = load_schema('encoded:schemas/bioexperiment_series.json') - name_key = 'accession' - embedded = [ - 'contributing_awards', - 'contributors', - 'award', - 'lab', - 'related_datasets.lab', - 'related_datasets.award', - 'related_datasets.bioreplicate.biolibrary.biospecimen', - ] - - @calculated_property(schema={ - "title": "Assay title", - "type": "array", - "items": { - "type": "string", - }, - }) - def assay_title(self, request, related_datasets): - return request.select_distinct_values('assay_title', *related_datasets) - - @calculated_property(schema={ - "title": "Awards", - "type": "array", - "items": { - "type": 'string', - "linkTo": "Award", - }, - }) - def contributing_awards(self, request, related_datasets): - return request.select_distinct_values('award', *related_datasets) - - @calculated_property(schema={ - "title": "Labs", - "type": "array", - "items": { - "type": 'string', - "linkTo": "Lab", - }, - }) - def contributors(self, request, related_datasets): - return request.select_distinct_values('lab', *related_datasets) diff --git a/src/encoded/types/bioexperiment.py b/src/encoded/types/bioexperiment.py deleted file mode 100644 index 2bd4c7cbc4..0000000000 --- a/src/encoded/types/bioexperiment.py +++ /dev/null @@ -1,241 +0,0 @@ -from pyramid.traversal import find_root -from snovault import ( - calculated_property, - collection, - load_schema, -) -from .base import ( - ALLOW_SUBMITTER_ADD, - Item, - paths_filtered_by_status, - SharedItem -) -from .biodataset import Biodataset -from .shared_calculated_properties import ( - CalculatedAssaySynonyms, - CalculatedAssayTermID, - CalculatedVisualize -) - -from .assay_data import assay_terms - - -@collection( - name='bioexperiments', - unique_key='accession', - properties={ - 'title': 'Bioexperiments', - 'description': 'Bioexperiment information page', - }, -) -class Bioexperiment(Biodataset, - CalculatedAssaySynonyms, - CalculatedAssayTermID, - CalculatedVisualize): - item_type = 'bioexperiment' - schema = load_schema('encoded:schemas/bioexperiment.json') - embedded = Biodataset.embedded + [ - 'award', - 'lab', - "submitted_by", - 'documents', - 'bioreplicate', - 'bioreplicate.biolibrary', - 'bioreplicate.biolibrary.documents', - 'bioreplicate.biolibrary.biospecimen', - 'bioreplicate.biolibrary.biospecimen.part_of', - 'bioreplicate.biolibrary.biospecimen.part_of', - 'possible_controls', - 'bioreplicate.biolibrary.biospecimen.documents', - "references", - "files", - "files.platform", - 'related_series', - - - ] - rev = Biodataset.rev.copy() - rev.update({ - 'related_series': ('Bioseries', 'related_datasets'), - 'bioreplicate': ('Bioreplicate', 'bioexperiment'), - 'superseded_by': ('Bioexperiment', 'supersedes') - - }) - - - audit_inherit = [ - 'original_files', - 'original_files.bioreplicate', - 'original_files.platform', - 'revoked_files', - 'revoked_files.bioreplicate', - 'submitted_by', - 'lab', - 'award', - 'documents', - - ] - set_status_up = [ - 'original_files', - 'bioreplicate', - 'documents', - ] - set_status_down = [ - 'original_files', - 'bioreplicate', - ] - - - @calculated_property( - schema={ - "title": "Bioreplicate", - "type": "array", - "items": { - "type": 'string', - "linkTo": "Bioreplicate" - }, - } - ) - def bioreplicate(self, request, bioreplicate): - return paths_filtered_by_status(request, bioreplicate) - - @calculated_property(schema={ - "title": "Biospecimen summary", - "type": "array", - "items": { - "comment": "See experiment.json for a list of available identifiers.", - "type": "object", - } - }) - def biospecimen_summary(self, request, bioreplicate=None): - biospecimen_summary_list = [] - - biospecimen_summary_dict = { - "accession": "", - "openspecimen_id": "", - "patient": "", - "sample_type": "", - "tissue_derivatives": "", - "tissue_type": "", - "anatomic_site": "", - "species": "", - "primary_site": "", - } - if bioreplicate is not None: - for biorep in bioreplicate: - bioreplicateObject = request.embed(biorep, '@@object') - if bioreplicateObject['status'] == 'deleted': - continue - if 'biolibrary' in bioreplicateObject: - biolibraryObject = request.embed(bioreplicateObject['biolibrary'], '@@object') - if biolibraryObject['status'] == 'deleted': - continue - if 'biospecimen' in biolibraryObject: - biospecimenObject = request.embed( - biolibraryObject['biospecimen'], '@@object') - if biospecimenObject['status'] == 'deleted': - continue - if 'accession' in biospecimenObject: - biospecimen_summary_dict['accession'] = biospecimenObject['accession'] - if 'patient' in biospecimenObject: - biospecimen_summary_dict['patient'] = biospecimenObject['patient'] - if 'openspecimen_id' in biospecimenObject: - biospecimen_summary_dict['openspecimen_id'] = biospecimenObject['openspecimen_id'] - if 'sample_type' in biospecimenObject: - biospecimen_summary_dict['sample_type'] = biospecimenObject['sample_type'] - if "anatomic_site" in biospecimenObject: - biospecimen_summary_dict['anatomic_site'] = biospecimenObject['anatomic_site'] - if 'tissue_derivatives' in biospecimenObject: - biospecimen_summary_dict['tissue_derivatives'] = biospecimenObject["tissue_derivatives"] - if 'tissue_type' in biospecimenObject: - biospecimen_summary_dict['tissue_type'] = biospecimenObject["tissue_type"] - if 'species' in biospecimenObject: - biospecimen_summary_dict['species'] = biospecimenObject["species"] - if 'primary_site' in biospecimenObject: - biospecimen_summary_dict['primary_site'] = biospecimenObject["primary_site"] - - biospecimen_summary_list.append(biospecimen_summary_dict) - - return biospecimen_summary_list - - @calculated_property(schema={ - "title": "Replication type", - "description": "Calculated field that indicates the replication model", - "type": "string" - }) - def replication_type(self, request, bioreplicate=None, assay_term_name=None): - # ENCD-4251 loop through replicates and select one replicate, which has - # the smallest technical_replicate_number, per biological replicate. - # That replicate should have a libraries property which, as calculated - # in replicate.libraries (ENCD-4251), should have collected all - # possible technical replicates belong to the biological replicate. - - bio_rep_dict = {} - - for rep in bioreplicate: - replicate_object = request.embed(rep, '@@object') - if replicate_object['status'] == 'deleted': - continue - bio_rep_num = replicate_object['biological_replicate_number'] - if bio_rep_num not in bio_rep_dict: - bio_rep_dict[bio_rep_num] = replicate_object - continue - tech_rep_num = replicate_object['technical_replicate_number'] - if tech_rep_num < bio_rep_dict[bio_rep_num]['technical_replicate_number']: - bio_rep_dict[bio_rep_num] = replicate_object - - biospecimen_number_list = [] - - for replicate_object in bio_rep_dict.values(): - if 'biolibrary' in replicate_object and replicate_object['biolibrary']: - biolibraryObject = request.embed(replicate_object['biolibrary'], '@@object') - - - if 'biospecimen' in biolibraryObject: - biospecimen_object = request.embed(biolibraryObject['biospecimen'], '@@object') - biospecimen_number_list.append( - replicate_object.get('biological_replicate_number') - ) - biospecimen_species = biospecimen_object.get('species') - biospecimen_type = biospecimen_object.get('sample_type'), - - else: - # REPLICATES WITH NO LIBRARIES WILL BE CAUGHT BY AUDIT (TICKET 3268) - # If I have a replicate without a library, - # I cannot make a call about the replicate structure - return None - - # exclude ENCODE2 - if (len(set(biospecimen_number_list)) < 2): - return 'unreplicated' - - if biospecimen_type == 'cell line': - return 'isogenic' - - - - return 'anisogenic' - - @calculated_property(schema={ - "title": "Superseded by", - "type": "array", - "items": { - "type": ['string', 'object'], - "linkFrom": "Bioexperiment.supersedes", - }, - "notSubmittable": True, - }) - def superseded_by(self, request, superseded_by): - return paths_filtered_by_status(request, superseded_by) - - @calculated_property(schema={ - "title": "Biorelated series", - "type": "array", - "items": { - "type": ['string', 'object'], - "linkFrom": "Bioseries.related_datasets", - }, - "notSubmittable": True, - }) - def related_series(self, request, related_series): - return paths_filtered_by_status(request, related_series) diff --git a/src/encoded/types/biofile.py b/src/encoded/types/biofile.py deleted file mode 100644 index 6eb01e457c..0000000000 --- a/src/encoded/types/biofile.py +++ /dev/null @@ -1,358 +0,0 @@ -from botocore.exceptions import ClientError -from botocore.config import Config -from snovault import ( - AfterModified, - BeforeModified, - CONNECTION, - calculated_property, - collection, - load_schema, -) -from snovault.schema_utils import schema_validator -from snovault.validation import ValidationFailure -from .base import ( - Item, - paths_filtered_by_status -) -from pyramid.httpexceptions import ( - HTTPForbidden, - HTTPTemporaryRedirect, - HTTPNotFound, -) -from pyramid.response import Response -from pyramid.settings import asbool -from pyramid.traversal import traverse -from pyramid.view import view_config -from urllib.parse import ( - parse_qs, - urlparse, -) -import base64 -import boto3 -import botocore -import datetime -import logging -import json -import pytz -import time -from encoded.upload_credentials import UploadCredentials -from snovault.util import ensure_list_and_filter_none -from snovault.util import take_one_or_return_none -from snovault.util import try_to_get_field_from_item_with_skip_calculated_first - - - -@collection( - name='biofiles', - unique_key='accession', - properties={ - 'title': 'Biofiles', - 'description': 'Listing of Files', - }) -class Biofile(Item): - item_type = 'biofile' - schema = load_schema('encoded:schemas/biofile.json') - name_key = 'accession' - rev = { - 'paired_with': ('Biofile', 'paired_with'), - # 'bioquality_metrics': ('BioqualityMetric', 'bioquality_metric_of'), - 'superseded_by': ('Biofile', 'supersedes'), - } - embedded = [ - 'platform', - 'award', - 'bioreplicate', - 'bioreplicate.bioexperiment', - 'bioreplicate.biolibrary', - 'submitted_by', - 'biolibrary', - # 'bioquality_metrics', - # 'analysis_step_version.analysis_step', - # 'analysis_step_version.analysis_step.pipelines', - # 'analysis_step_version.software_versions', - # 'analysis_step_version.software_versions.software', - - ] - audit_inherit = [ - # 'analysis_step_version.analysis_step', - # 'analysis_step_version.analysis_step.pipelines', - # 'analysis_step_version.analysis_step.versions', - # 'analysis_step_version.software_versions', - # 'analysis_step_version.software_versions.software' - ] - set_status_up = [ - # 'bioquality_metrics', - 'platform', - - - - ] - set_status_down = [] - public_s3_statuses = ['released', 'archived'] - private_s3_statuses = ['in progress', 'replaced', 'deleted', 'revoked'] - - @calculated_property(schema={ - "title": "Title", - "description": "The title of the file either the accession or the external_accession.", - "comment": "Do not submit. This is a calculated property", - "type": "string", - }) - def title(self, accession=None, external_accession=None): - return accession or external_accession - - @calculated_property(schema={ - "title": "Superseded by", - "description": "The file(s) that supersede this file (i.e. are more preferable to use).", - "comment": "Do not submit. Values in the list are reverse links of a file that supersedes.", - "type": "array", - "items": { - "type": ['string', 'object'], - "linkFrom": "Biofile.supersedes", - }, - "notSubmittable": True, - }) - def superseded_by(self, request, superseded_by): - return paths_filtered_by_status(request, superseded_by) - - @calculated_property( - condition=lambda paired_end=None: paired_end == '1') - def paired_with(self, root, request): - paired_with = self.get_rev_links('paired_with') - if not paired_with: - return None - item = root.get_by_uuid(paired_with[0]) - return request.resource_path(item) - - @calculated_property(schema={ - "title": "Output category", - "description": "The overall catagory of the file content.", - "comment": "Do not submit. This field is calculated from output_type_output_category.", - "type": "string", - "enum": [ - "raw data", - "alignment", - "signal", - "annotation", - "quantification", - "reference" - ] - }) - def output_category(self, output_type): - return self.schema['output_type_output_category'].get(output_type) - - @calculated_property(schema={ - "title": "Read length units", - "description": "The units for read length.", - "comment": "Do not submit. This is a fixed value.", - "type": "string", - "enum": [ - "nt" - ] - }) - def read_length_units(self, read_length=None, mapped_read_length=None): - if read_length is not None or mapped_read_length is not None: - return "nt" - @calculated_property(schema={ - "title": "Download URL", - "description": "The download path for S3 to obtain the actual file.", - "comment": "Do not submit. This is issued by the server.", - "type": "string", - }) - def href(self, request, file_format, accession=None, external_accession=None): - accession = accession or external_accession - file_extension = self.schema['file_format_file_extension'][file_format] - filename = '{}{}'.format(accession, file_extension) - return request.resource_path(self, '@@download', filename) - @calculated_property(schema={ - "title": "File type", - "description": "The concatenation of file_format and file_format_type", - "comment": "Do not submit. This field is calculated from file_format and file_format_type.", - "type": "string" - }) - def file_type(self, file_format, file_format_type=None): - if file_format_type is None: - return file_format - else: - return file_format + ' ' + file_format_type - - @calculated_property( - condition='bioreplicate', - define=True, - schema={ - "title": "Biolibrary", - "description": "The nucleic acid library sequenced to produce this file.", - "comment": "See biolibrary.json for available identifiers.", - "type": "string", - "linkTo": "Biolibrary" - } - ) - def biolibrary(self, request, bioreplicate): - return request.embed(bioreplicate, '@@object?skip_calculated=true').get('biolibrary') - - @calculated_property( - condition='biodataset', - define=True, - schema={ - "title": "Assay term name", - "type": "string", - "notSubmittable": True - } - ) - def assay_term_name(self, request, biodataset): - return take_one_or_return_none( - ensure_list_and_filter_none( - try_to_get_field_from_item_with_skip_calculated_first( - request, - 'assay_term_name', - biodataset - ) - ) - ) - # @calculated_property( - # condition='biodataset', - # define=True, - # schema={ - # "title": "Target", - # "type": "string", - # "linkTo": "Target", - # "notSubmittable": True, - # } - # ) - # def target(self, request, biodataset): - # return take_one_or_return_none( - # ensure_list_and_filter_none( - # try_to_get_field_from_item_with_skip_calculated_first( - # request, - # 'target', - # biodataset - # ) - # ) - # ) - # @calculated_property(schema={ - # "title": "QC Metric", - # "description": "The list of QC metric objects associated with this file.", - # "comment": "Do not submit. Values in the list are reverse links of a quality metric with this file in quality_metric_of field.", - # "type": "array", - # "items": { - # "type": ['string', 'object'], - # "linkFrom": "BioqualityMetric.bioquality_metric_of", - # }, - # "notSubmittable": True, - # }) - # def bioquality_metrics(self, request, bioquality_metrics): - # return paths_filtered_by_status(request, bioquality_metrics) - - # @calculated_property(schema={ - # "title": "Analysis step version", - # "description": "The step version of the pipeline from which this file is an output.", - # "comment": "Do not submit. This field is calculated from step_run.", - # "type": "string", - # "linkTo": "AnalysisStepVersion" - # }) - # def analysis_step_version(self, request, root, step_run=None): - # if step_run is None: - # return - # step_run_obj = traverse(root, step_run)['context'] - # step_version_uuid = step_run_obj.__json__(request).get('analysis_step_version') - # if step_version_uuid is not None: - # return request.resource_path(root[step_version_uuid]) - - @calculated_property(schema={ - "title": "Biological replicates", - "description": "The biological replicate numbers associated with this file.", - "comment": "Do not submit. This field is calculated through the derived_from relationship back to the raw data.", - "type": "array", - "items": { - "title": "Biological replicate number", - "description": "The identifying number of each relevant biological replicate", - "type": "integer", - } - }) - def biological_replicates(self, request, registry, root, bioreplicate=None): - if bioreplicate is not None: - replicate_obj = traverse(root, bioreplicate)['context'] - replicate_biorep = replicate_obj.__json__(request)['biological_replicate_number'] - return [replicate_biorep] - - conn = registry[CONNECTION] - derived_from_closure = property_closure(request, 'derived_from', self.uuid) - dataset_uuid = self.__json__(request)['biodataset'] - obj_props = (conn.get_by_uuid(uuid).__json__(request) for uuid in derived_from_closure) - replicates = { - props['bioreplicate'] - for props in obj_props - if props['biodataset'] == dataset_uuid and 'bioreplicate' in props - } - bioreps = { - conn.get_by_uuid(uuid).__json__(request)['biological_replicate_number'] - for uuid in replicates - } - return sorted(bioreps) - - @calculated_property(schema={ - "title": "Technical replicates", - "description": "The technical replicate numbers associated with this file.", - "comment": "Do not submit. This field is calculated through the derived_from relationship back to the raw data.", - "type": "array", - "items": { - "title": "Technical replicate number", - "description": "The identifying number of each relevant technical replicate", - "type": "string" - } - }) - def technical_replicates(self, request, registry, root, bioreplicate=None): - if bioreplicate is not None: - replicate_obj = traverse(root, bioreplicate)['context'] - replicate_biorep = replicate_obj.__json__(request)['biological_replicate_number'] - replicate_techrep = replicate_obj.__json__(request)['technical_replicate_number'] - tech_rep_string = str(replicate_biorep)+"_"+str(replicate_techrep) - return [tech_rep_string] - - conn = registry[CONNECTION] - derived_from_closure = property_closure(request, 'derived_from', self.uuid) - dataset_uuid = self.__json__(request)['biodataset'] - obj_props = (conn.get_by_uuid(uuid).__json__(request) for uuid in derived_from_closure) - replicates = { - props['bioreplicate'] - for props in obj_props - if props['biodataset'] == dataset_uuid and 'bioreplicate' in props - } - techreps = { - str(conn.get_by_uuid(uuid).__json__(request)['biological_replicate_number']) + - '_' + str(conn.get_by_uuid(uuid).__json__(request)['technical_replicate_number']) - for uuid in replicates - } - return sorted(techreps) - - # @calculated_property( - # condition=show_cloud_metadata, - # schema={ - # "title": "Cloud metadata", - # "description": "Metadata required for cloud transfer.", - # "comment": "Do not submit. Values are calculated from file metadata.", - # "type": "object", - # "notSubmittable": True, - # } - # ) - # def cloud_metadata(self, md5sum, file_size): - # try: - # external = self._get_external_sheet() - # except HTTPNotFound: - # return None - # conn = boto3.client('s3', config=Config( - # signature_version=botocore.UNSIGNED, - # )) - # location = conn.generate_presigned_url( - # ClientMethod='get_object', - # Params={ - # 'Bucket': external['bucket'], - # 'Key': external['key'] - # }, - # ExpiresIn=0 - # ) - # return { - # 'url': location, - # 'md5sum_base64': base64.b64encode(bytes.fromhex(md5sum)).decode("utf-8"), - # 'file_size': file_size - # } - diff --git a/src/encoded/types/biolibrary.py b/src/encoded/types/biolibrary.py deleted file mode 100644 index 5705554fc9..0000000000 --- a/src/encoded/types/biolibrary.py +++ /dev/null @@ -1,62 +0,0 @@ -from snovault import ( - calculated_property, - collection, - load_schema, -) -from .base import ( - Item, - paths_filtered_by_status, -) -import re - - -@collection( - name='biolibraries', - unique_key='accession', - properties={ - 'title': 'Biolibraries', - 'description': 'Biolibraries used or available', - }) -class Biolibrary(Item): - item_type = 'biolibrary' - schema = load_schema('encoded:schemas/biolibrary.json') - name_key = 'accession' - rev = { - 'biofile': ('biofile', 'biolibrary'), - 'bioreplicate': ('bioreplicate', 'biolibrary'), - } - embedded = [ - 'biospecimen', - 'biospecimen.documents', - 'biofile', - 'bioreplicate', - 'documents' - ] - audit_inherit = [ - ] - set_status_up = [ - - ] - set_status_down = [] - - @calculated_property(schema={ - "title": "Biofile", - "type": "array", - "items": { - "type": 'string', - "linkTo": "Biofile" - }, - }) - def biofile(self, request, biofile): - return paths_filtered_by_status(request, biofile) - - @calculated_property(schema={ - "title": "bioreplicate", - "type": "array", - "items": { - "type": 'string', - "linkTo": "bioreplicate" - }, - }) - def bioreplicate(self, request, bioreplicate): - return paths_filtered_by_status(request, bioreplicate) diff --git a/src/encoded/types/bioreplicate.py b/src/encoded/types/bioreplicate.py deleted file mode 100644 index 0efdf994bc..0000000000 --- a/src/encoded/types/bioreplicate.py +++ /dev/null @@ -1,51 +0,0 @@ -from snovault import ( - calculated_property, - collection, - load_schema, -) -from .base import ( - ALLOW_SUBMITTER_ADD, - Item, - paths_filtered_by_status, -) -import re - - -@collection( - name='bioreplicates', - acl=ALLOW_SUBMITTER_ADD, - properties={ - 'title': 'Bioreplicates', - 'description': 'Listing of BioReplicates', - }) -class Bioreplicate(Item): - item_type = 'bioreplicate' - schema = load_schema('encoded:schemas/bioreplicate.json') - rev = { - 'biofile': ('Biofile', 'bioreplicate'), - } - - embedded = [ - 'bioexperiment', - 'biolibrary', - 'biolibrary.biospecimen', - 'biofile' - ] - audit_inherit = [ - ] - set_status_up = [ - ] - set_status_down = [] - - @calculated_property( - schema={ - "title": "Biofile", - "type": "array", - "items": { - "type": 'string', - "linkTo": "Biofile" - }, - } - ) - def biofile(self, request, biofile): - return paths_filtered_by_status(request, biofile) diff --git a/src/encoded/types/biospecimen.py b/src/encoded/types/biospecimen.py deleted file mode 100644 index 4c6da7266c..0000000000 --- a/src/encoded/types/biospecimen.py +++ /dev/null @@ -1,100 +0,0 @@ -from snovault import ( - calculated_property, - collection, - load_schema, -) -from .base import ( - Item, - paths_filtered_by_status, -) -import re - - - -@collection( - name='biospecimens', - unique_key='accession', - properties={ - 'title': 'Biospecimens', - 'description': 'Biospecimens used or available', - }) -class Biospecimen(Item): - item_type = 'biospecimen' - schema = load_schema('encoded:schemas/biospecimen.json') - name_key = 'accession' - rev = { - 'biolibrary': ('Biolibrary', 'biospecimen'), - 'ihc':('Ihc','biospecimen') - } - embedded = [ - 'biolibrary', - 'biolibrary.biofile', - 'biolibrary.bioreplicate', - 'surgery', - 'surgery.pathology_report', - 'surgery.surgery_procedure', - 'ihc', - 'award', - 'documents' - ] - audit_inherit = [ - ] - set_status_up = [ - 'originated_from', - ] - set_status_down = [] - - @calculated_property(schema={ - "title": "Biolibrary", - "type": "array", - "items": { - "type": 'string', - "linkTo": "Biolibrary" - }, - }) - def biolibrary(self, request, biolibrary): - return paths_filtered_by_status(request, biolibrary) - - @calculated_property(schema={ - "title": "Biospecimen IHC", - "type": "array", - "items": { - "type": 'string', - "linkTo": "Ihc" - }, - }) - def ihc(self, request, ihc): - return paths_filtered_by_status(request, ihc) - - matrix = { - 'y': { - 'facets': [ - 'status', - 'sample_type', - 'tissue_derivatives', - 'tissue_type', - 'anatomic_site', - 'species', - 'specimen_lineage', - 'activity_status', - 'biolibrary.nucleic_acid_term_name', - 'biolibrary.biofile.file_format', - 'biolibrary.biofile.output_type', - 'sur_path_tumor_size', - 'surgery.surgery_procedure.procedure_type', - 'surgery.pathology_report.t_stage', - 'surgery.pathology_report.n_stage', - 'surgery.pathology_report.m_stage', - 'surgery.pathology_report.ajcc_tnm_stage', - ], - 'group_by': ['tissue_type', 'tissue_derivatives'], - 'label': 'collection', - }, - 'x': { - 'facets': [ - 'surgery.pathology_report.histology_filter', - ], - 'group_by': 'surgery.pathology_report.histology_filter', - 'label': 'histology', - }, - } diff --git a/src/encoded/types/concussion_history.py b/src/encoded/types/concussion_history.py new file mode 100644 index 0000000000..15035caa3a --- /dev/null +++ b/src/encoded/types/concussion_history.py @@ -0,0 +1,56 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="concussion_histories", + unique_key="uuid", + properties={ + "title": "Local forms-Concussion History", + "description": "Local form Initial visiting patients Concussion History forms results pages", + }, +) +class Concussion_history(Item): + item_type = "concussion_history" + schema = load_schema("encoded:schemas/concussion_history.json") + embedded = [ + + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/concussion_history_follow_up.py b/src/encoded/types/concussion_history_follow_up.py new file mode 100644 index 0000000000..2c04dc890d --- /dev/null +++ b/src/encoded/types/concussion_history_follow_up.py @@ -0,0 +1,32 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re + + +@collection( + name="concussion_histories_follow_up", + unique_key="uuid", + properties={ + "title": "Local forms-Concussion History Follow Up Form", + "description": "Local form Initial visiting patients Concussion History follow up forms results pages", + }, +) +class Concussion_history_follow_up(Item): + item_type = "concussion_history_follow_up" + schema = load_schema("encoded:schemas/concussion_history_follow_up.json") + embedded = [ + + ] + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_a1.py b/src/encoded/types/fvp_a1.py new file mode 100644 index 0000000000..01d310af40 --- /dev/null +++ b/src/encoded/types/fvp_a1.py @@ -0,0 +1,99 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_a1v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A1V3 Forms", + "description": "UDS follow up forms A1V3:Subject Demographic results pages", + }, +) +class Fvp_a1v3(Item): + item_type = "fvp_a1v3" + schema = load_schema("encoded:schemas/fvp_a1v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_a1v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A1V2 Forms", + "description": "UDS follow up forms A1V2:Subject Demographic results pages", + }, +) +class Fvp_a1v2(Item): + item_type = "fvp_a1v2" + schema = load_schema("encoded:schemas/fvp_a1v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_a1v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A1V1 Forms", + "description": "UDS follow up forms A1V1:Subject Demographic results pages", + }, +) +class Fvp_a1v1(Item): + item_type = "fvp_a1v1" + schema = load_schema("encoded:schemas/fvp_a1v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_a2.py b/src/encoded/types/fvp_a2.py new file mode 100644 index 0000000000..cd06f8686f --- /dev/null +++ b/src/encoded/types/fvp_a2.py @@ -0,0 +1,100 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_a2v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A2V3 Forms", + "description": "UDS follow-up visiting patients A2V3 forms results pages", + }, +) +class Fvp_a2v3(Item): + item_type = "fvp_a2v3" + schema = load_schema("encoded:schemas/fvp_a2v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_a2v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A2V2 Forms", + "description": "UDS follow-up visiting patients A2V2 forms results pages", + }, +) +class Fvp_a2v2(Item): + item_type = "fvp_a2v2" + schema = load_schema("encoded:schemas/fvp_a2v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + + +@collection( + name="fvp_a2v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A2V1 Forms", + "description": "UDS follow-up visiting patients A2V1 forms results pages", + }, +) +class Fvp_a2v1(Item): + item_type = "fvp_a2v1" + schema = load_schema("encoded:schemas/fvp_a2v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_a3.py b/src/encoded/types/fvp_a3.py new file mode 100644 index 0000000000..804401626c --- /dev/null +++ b/src/encoded/types/fvp_a3.py @@ -0,0 +1,99 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_a3v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A3V3 Forms", + "description": "UDS follow up forms A3V3:Subject Family History results pages", + }, +) +class Fvp_a3v3(Item): + item_type = "fvp_a3v3" + schema = load_schema("encoded:schemas/fvp_a3v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_a3v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A3V2 Forms", + "description": "UDS follow up forms A3V2:Subject Family History results pages", + }, +) +class Fvp_a3v2(Item): + item_type = "fvp_a3v2" + schema = load_schema("encoded:schemas/fvp_a3v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_a3v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A3V1 Forms", + "description": "UDS follow up forms A3V1:Subject Family History results pages", + }, +) +class Fvp_a3v1(Item): + item_type = "fvp_a3v1" + schema = load_schema("encoded:schemas/fvp_a3v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_a4.py b/src/encoded/types/fvp_a4.py new file mode 100644 index 0000000000..a7739aa82e --- /dev/null +++ b/src/encoded/types/fvp_a4.py @@ -0,0 +1,100 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_a4v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A4V3 Forms", + "description": "UDS follow up forms A4V3:Subject Demographic results pages", + }, +) +class Fvp_a4v3(Item): + item_type = "fvp_a4v3" + schema = load_schema("encoded:schemas/fvp_a4v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_a4v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A4V2 Forms", + "description": "UDS follow up forms A4V2:Subject Demographic results pages", + }, +) +class Fvp_a4v2(Item): + item_type = "fvp_a4v2" + schema = load_schema("encoded:schemas/fvp_a4v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + + +@collection( + name="fvp_a4v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A4V1 Forms", + "description": "UDS follow up forms A4V1:Subject Demographic results pages", + }, +) +class Fvp_a4v1(Item): + item_type = "fvp_a4v1" + schema = load_schema("encoded:schemas/fvp_a4v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_a5.py b/src/encoded/types/fvp_a5.py new file mode 100644 index 0000000000..7d257ae57a --- /dev/null +++ b/src/encoded/types/fvp_a5.py @@ -0,0 +1,80 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + +@collection( + name="fvp_a5v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A5V2 Forms", + "description": "UDS follow up forms A5V2:Subject Health History results pages", + }, +) +class Fvp_a5v2(Item): + item_type = "fvp_a5v2" + schema = load_schema("encoded:schemas/fvp_a5v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + + +@collection( + name="fvp_a5v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A5V1 Forms", + "description": "UDS follow up forms A5V1:Subject Health History results pages", + }, +) +class Fvp_a5v1(Item): + item_type = "fvp_a5v1" + schema = load_schema("encoded:schemas/fvp_a5v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_b1.py b/src/encoded/types/fvp_b1.py new file mode 100644 index 0000000000..f480bdd533 --- /dev/null +++ b/src/encoded/types/fvp_b1.py @@ -0,0 +1,100 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_b1v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B1V3 Forms", + "description": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B1V3: EVALUATION FORM - PHYSICAL", + }, +) +class Fvp_b1v3(Item): + item_type = "fvp_b1v3" + schema = load_schema("encoded:schemas/fvp_b1v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + + +@collection( + name="fvp_b1v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B1V2 Forms", + "description": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B1V2: EVALUATION FORM - PHYSICAL", + }, +) +class Fvp_b1v2(Item): + item_type = "fvp_b1v2" + schema = load_schema("encoded:schemas/fvp_b1v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_b1v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B1V1 Forms", + "description": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B1V1: EVALUATION FORM - PHYSICAL", + }, +) +class Fvp_b1v1(Item): + item_type = "fvp_b1v1" + schema = load_schema("encoded:schemas/fvp_b1v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_b2.py b/src/encoded/types/fvp_b2.py new file mode 100644 index 0000000000..0a819c6f20 --- /dev/null +++ b/src/encoded/types/fvp_b2.py @@ -0,0 +1,78 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name='fvp_b2v2', + unique_key='uuid', + properties={ + "title": "UDS_FVP_B2V2 Forms", + "description": "UDS Follow-up visiting patients B2V2 forms results pages", + }) +class Fvp_b2v2(Item): + item_type = 'fvp_b2v2' + schema = load_schema('encoded:schemas/fvp_b2v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='fvp_b2v1', + unique_key='uuid', + properties={ + "title": "UDS_FVP_B2V1 Forms", + "description": "UDS Follow-up visiting patients B2V1 forms results pages", + }) +class Fvp_b2v1(Item): + item_type = 'fvp_b2v1' + schema = load_schema('encoded:schemas/fvp_b2v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/fvp_b3.py b/src/encoded/types/fvp_b3.py new file mode 100644 index 0000000000..1d9539f220 --- /dev/null +++ b/src/encoded/types/fvp_b3.py @@ -0,0 +1,78 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name='fvp_b3v2', + unique_key='uuid', + properties={ + "title": "UDS_FVP_B3V2 Forms", + "description": "UDS Follow-up visiting patients B3V2 forms results pages", + }) +class Fvp_b3v2(Item): + item_type = 'fvp_b3v2' + schema = load_schema('encoded:schemas/fvp_b3v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='fvp_b3v1', + unique_key='uuid', + properties={ + "title": "UDS_FVP_B3V1 Forms", + "description": "UDS Follow-up visiting patients B3V1 forms results pages", + }) +class Fvp_b3v1(Item): + item_type = 'fvp_b3v1' + schema = load_schema('encoded:schemas/fvp_b3v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/fvp_b4.py b/src/encoded/types/fvp_b4.py new file mode 100644 index 0000000000..ae830bffb5 --- /dev/null +++ b/src/encoded/types/fvp_b4.py @@ -0,0 +1,99 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_b4v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B4V3 Forms", + "description": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B4V3: CDR® Dementia Staging Instrument plus NACC FTLD Behavior & Language Domains ( CDR® NACC FTLD)", + }, +) +class Fvp_b4v3(Item): + item_type = "fvp_b4v3" + schema = load_schema("encoded:schemas/fvp_b4v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_b4v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B4V2 Forms", + "description": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B4V2: CDR® Dementia Staging Instrument plus NACC FTLD Behavior & Language Domains ( CDR® NACC FTLD)", + }, +) +class Fvp_b4v2(Item): + item_type = "fvp_b4v2" + schema = load_schema("encoded:schemas/fvp_b4v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_b4v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B4V1 Forms", + "description": "NACC Uniform Data Set (UDS) - FOLLOW-UP FORM B4V1: CDR® Dementia Staging Instrument plus NACC FTLD Behavior & Language Domains ( CDR® NACC FTLD)", + }, +) +class Fvp_b4v1(Item): + item_type = "fvp_b4v1" + schema = load_schema("encoded:schemas/fvp_b4v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_b5.py b/src/encoded/types/fvp_b5.py new file mode 100644 index 0000000000..99ac2385f6 --- /dev/null +++ b/src/encoded/types/fvp_b5.py @@ -0,0 +1,101 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_b5v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B5V3 Forms", + "description": "UDS follow-up visiting patients B5V3 forms results pages", + }, +) +class Fvp_b5v3(Item): + item_type = "fvp_b5v3" + schema = load_schema("encoded:schemas/fvp_b5v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_b5v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B5V2 Forms", + "description": "UDS follow-up visiting patients B5V2 forms results pages", + }, +) +class Fvp_b5v2(Item): + item_type = "fvp_b5v2" + schema = load_schema("encoded:schemas/fvp_b5v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + + + +@collection( + name="fvp_b5v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B5V1 Forms", + "description": "UDS follow-up visiting patients B5V1 forms results pages", + }, +) +class Fvp_b5v1(Item): + item_type = "fvp_b5v1" + schema = load_schema("encoded:schemas/fvp_b5v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_b6.py b/src/encoded/types/fvp_b6.py new file mode 100644 index 0000000000..e4be01e666 --- /dev/null +++ b/src/encoded/types/fvp_b6.py @@ -0,0 +1,100 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_b6v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B6V3 Forms", + "description": "UDS follow-up visiting patients B6V3 forms results pages", + }, +) +class Fvp_b6v3(Item): + item_type = "fvp_b6v3" + schema = load_schema("encoded:schemas/fvp_b6v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_b6v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B6V2 Forms", + "description": "UDS follow-up visiting patients B6V2 forms results pages", + }, +) +class Fvp_b6v2(Item): + item_type = "fvp_b6v2" + schema = load_schema("encoded:schemas/fvp_b6v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + + +@collection( + name="fvp_b6v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B6V1 Forms", + "description": "UDS follow-up visiting patients B6V1 forms results pages", + }, +) +class Fvp_b6v1(Item): + item_type = "fvp_b6v1" + schema = load_schema("encoded:schemas/fvp_b6v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_b7.py b/src/encoded/types/fvp_b7.py new file mode 100644 index 0000000000..2fccfe2a6d --- /dev/null +++ b/src/encoded/types/fvp_b7.py @@ -0,0 +1,99 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_b7v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B7V3 Forms", + "description": "UDS follow-up visiting patients B7V3 forms results pages", + }, +) +class Fvp_b7v3(Item): + item_type = "fvp_b7v3" + schema = load_schema("encoded:schemas/fvp_b7v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_b7v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B7V2 Forms", + "description": "UDS follow-up visiting patients B7V2 forms results pages", + }, +) +class Fvp_b7v2(Item): + item_type = "fvp_b7v2" + schema = load_schema("encoded:schemas/fvp_b7v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_b7v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B7V1 Forms", + "description": "UDS follow-up visiting patients B7V1 forms results pages", + }, +) +class Fvp_b7v1(Item): + item_type = "fvp_b7v1" + schema = load_schema("encoded:schemas/fvp_b7v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_b8.py b/src/encoded/types/fvp_b8.py new file mode 100644 index 0000000000..f827e059d6 --- /dev/null +++ b/src/encoded/types/fvp_b8.py @@ -0,0 +1,103 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_b8v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B8V3 Forms", + "description": "UDS follow-up visiting patients B8V3 forms results pages", + }, +) +class Fvp_b8v3(Item): + item_type = "fvp_b8v3" + schema = load_schema("encoded:schemas/fvp_b8v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_b8v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B8V2 Forms", + "description": "UDS follow-up visiting patients B8V2 forms results pages", + }, +) +class Fvp_b8v2(Item): + item_type = "fvp_b8v2" + schema = load_schema("encoded:schemas/fvp_b8v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + + +@collection( + name="fvp_b8v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B8V1 Forms", + "description": "UDS follow-up visiting patients B8V1 forms results pages", + }, +) +class Fvp_b8v1(Item): + item_type = "fvp_b8v1" + schema = load_schema("encoded:schemas/fvp_b8v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + + + \ No newline at end of file diff --git a/src/encoded/types/fvp_b9.py b/src/encoded/types/fvp_b9.py new file mode 100644 index 0000000000..d0e30c5d91 --- /dev/null +++ b/src/encoded/types/fvp_b9.py @@ -0,0 +1,100 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_b9v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B9V3 Forms", + "description": "UDS follow-up visiting patients B9V3 forms results pages", + }, +) +class Fvp_b9v3(Item): + item_type = "fvp_b9v3" + schema = load_schema("encoded:schemas/fvp_b9v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_b9v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B9V2 Forms", + "description": "UDS follow-up visiting patients B9V2 forms results pages", + }, +) +class Fvp_b9v2(Item): + item_type = "fvp_b9v2" + schema = load_schema("encoded:schemas/fvp_b9v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + + +@collection( + name="fvp_b9v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_B9V1 Forms", + "description": "UDS follow-up visiting patients B9V1 forms results pages", + }, +) +class Fvp_b9v1(Item): + item_type = "fvp_b9v1" + schema = load_schema("encoded:schemas/fvp_b9v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_c1.py b/src/encoded/types/fvp_c1.py new file mode 100644 index 0000000000..b686709d39 --- /dev/null +++ b/src/encoded/types/fvp_c1.py @@ -0,0 +1,99 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_c1v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_C1V2 Forms", + "description": "UDS follow-up visiting patients C1V2 forms results pages", + }, +) +class Fvp_c1v3(Item): + item_type = "fvp_c1v3" + schema = load_schema("encoded:schemas/fvp_c1v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_c1v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_C1V2 Forms", + "description": "UDS follow-up visiting patients C1V2 forms results pages", + }, +) +class Fvp_c1v2(Item): + item_type = "fvp_c1v2" + schema = load_schema("encoded:schemas/fvp_c1v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_c1v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_C1V1 Forms", + "description": "UDS follow-up visiting patients C1V1 forms results pages", + }, +) +class Fvp_c1v1(Item): + item_type = "fvp_c1v1" + schema = load_schema("encoded:schemas/fvp_c1v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_c2.py b/src/encoded/types/fvp_c2.py new file mode 100644 index 0000000000..69ca8b853b --- /dev/null +++ b/src/encoded/types/fvp_c2.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_c2v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A2 Forms", + "description": "UDS follow-up visiting patients A2 forms results pages", + }, +) +class Fvp_c2v3(Item): + item_type = "fvp_c2v3" + schema = load_schema("encoded:schemas/fvp_c2v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_d1.py b/src/encoded/types/fvp_d1.py new file mode 100644 index 0000000000..165721ca94 --- /dev/null +++ b/src/encoded/types/fvp_d1.py @@ -0,0 +1,99 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_d1v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_D1V3 Forms", + "description": "UDS follow-up visiting patients D1V3 forms results pages", + }, +) +class Fvp_d1v3(Item): + item_type = "fvp_d1v3" + schema = load_schema("encoded:schemas/fvp_d1v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_d1v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_D1V2 Forms", + "description": "UDS follow-up visiting patients D1V2 forms results pages", + }, +) +class Fvp_d1v2(Item): + item_type = "fvp_d1v2" + schema = load_schema("encoded:schemas/fvp_d1v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="fvp_d1v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_D1V1 Forms", + "description": "UDS follow-up visiting patients D1V1 forms results pages", + }, +) +class Fvp_d1v1(Item): + item_type = "fvp_d1v1" + schema = load_schema("encoded:schemas/fvp_d1v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_d2.py b/src/encoded/types/fvp_d2.py new file mode 100644 index 0000000000..172df6d498 --- /dev/null +++ b/src/encoded/types/fvp_d2.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_d2v3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_D2 Forms", + "description": "UDS follow-up visiting patients D2 forms results pages", + }, +) +class Fvp_d2v3(Item): + item_type = "fvp_d2v3" + schema = load_schema("encoded:schemas/fvp_d2v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_e1.py b/src/encoded/types/fvp_e1.py new file mode 100644 index 0000000000..b042137b9f --- /dev/null +++ b/src/encoded/types/fvp_e1.py @@ -0,0 +1,78 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name='fvp_e1v2', + unique_key='uuid', + properties={ + "title": "UDS_FVP_E1V2 Forms", + "description": "UDS Follow-up visiting patients E1V2 forms results pages", + }) +class Fvp_e1v2(Item): + item_type = 'fvp_e1v2' + schema = load_schema('encoded:schemas/fvp_e1v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='fvp_e1v1', + unique_key='uuid', + properties={ + "title": "UDS_FVP_E1V1 Forms", + "e1v1scription": "UDS Follow-up visiting patients E1V1 forms results pages", + }) +class Fvp_e1v1(Item): + item_type = 'fvp_e1v1' + schema = load_schema('encoded:schemas/fvp_e1v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/fvp_z1.py b/src/encoded/types/fvp_z1.py new file mode 100644 index 0000000000..0fd604404a --- /dev/null +++ b/src/encoded/types/fvp_z1.py @@ -0,0 +1,79 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name='fvp_z1v2', + unique_key='uuid', + properties={ + "title": "UDS_FVP_Z1V2 Forms", + "description": "UDS Follow-up visiting patients Z1V2 forms results pages", + }) +class Fvp_z1v2(Item): + item_type = 'fvp_z1v2' + schema = load_schema('encoded:schemas/fvp_z1v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='fvp_z1v1', + unique_key='uuid', + properties={ + "title": "UDS_FVP_Z1V1 Forms", + "description": "UDS Follow-up visiting patients Z1V1 forms results pages", + }) +class Fvp_z1v1(Item): + item_type = 'fvp_z1v1' + schema = load_schema('encoded:schemas/fvp_z1v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/fvp_z1x.py b/src/encoded/types/fvp_z1x.py new file mode 100644 index 0000000000..9c3efa00e0 --- /dev/null +++ b/src/encoded/types/fvp_z1x.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="fvp_z1xv3s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_Z1X Forms", + "description": "UDS follow-up visiting patients Z1X forms results pages", + }, +) +class Fvp_z1xv3(Item): + item_type = "fvp_z1xv3" + schema = load_schema("encoded:schemas/fvp_z1xv3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/ivp_a1v2.py b/src/encoded/types/ivp_a1v2.py new file mode 100644 index 0000000000..57de254928 --- /dev/null +++ b/src/encoded/types/ivp_a1v2.py @@ -0,0 +1,78 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + +@collection( + name="ivp_a1v2s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A1V2 Forms", + "description": "UDS initial visits forms A1V2:Subject Demographic results pages", + }, +) +class Ivp_a1v2(Item): + item_type = "ivp_a1v2" + schema = load_schema("encoded:schemas/ivp_a1v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="ivp_a1v1s", + unique_key="uuid", + properties={ + "title": "UDS_FVP_A1V1 Forms", + "description": "UDS initial visits forms A1V1:Subject Demographic results pages", + }, +) +class Ivp_a1v1(Item): + item_type = "ivp_a1v1" + schema = load_schema("encoded:schemas/ivp_a1v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/ivp_a1v3.py b/src/encoded/types/ivp_a1v3.py new file mode 100644 index 0000000000..1253210299 --- /dev/null +++ b/src/encoded/types/ivp_a1v3.py @@ -0,0 +1,56 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +from pyramid.traversal import find_root, resource_path +import re +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="ivp_a1v3s", + unique_key="uuid", + properties={ + "title": "UDS_IVP_A1V3 Forms", + "description": "UDS initial visits forms A1V3:Subject Demographic results pages", + }, +) +class Ivp_a1v3(Item): + item_type = "ivp_a1v3" + schema = load_schema("encoded:schemas/ivp_a1v3.json") + embedded = [ + ] + + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/ivp_a2v2.py b/src/encoded/types/ivp_a2v2.py new file mode 100644 index 0000000000..abb9646d87 --- /dev/null +++ b/src/encoded/types/ivp_a2v2.py @@ -0,0 +1,76 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS +@collection( + name="ivp_a2v2s", + unique_key="uuid", + properties={ + "title": "UDS_IVP_A2V2 Forms", + "description": "UDS initial visits forms A2V2:Informant Demographics results pages", + }, +) +class Ivp_a2v2(Item): + item_type = "ivp_a2v2" + schema = load_schema("encoded:schemas/ivp_a2v2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] + +@collection( + name="ivp_a2v1s", + unique_key="uuid", + properties={ + "title": "UDS_IVP_A2V2 Forms", + "description": "UDS initial visits forms A2V2:Informant Demographics results pages", + }, +) +class Ivp_a2v1(Item): + item_type = "ivp_a2v1" + schema = load_schema("encoded:schemas/ivp_a2v1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/ivp_a2v3.py b/src/encoded/types/ivp_a2v3.py new file mode 100644 index 0000000000..7250bb34b3 --- /dev/null +++ b/src/encoded/types/ivp_a2v3.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="ivp_a2v3s", + unique_key="uuid", + properties={ + "title": "UDS_IVP_A2V3 Forms", + "description": "UDS initial visits forms A2V3:Informant Demographics results pages", + }, +) +class Ivp_a2v3(Item): + item_type = "ivp_a2v3" + schema = load_schema("encoded:schemas/ivp_a2v3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/ivp_a3.py b/src/encoded/types/ivp_a3.py new file mode 100644 index 0000000000..18e096bf91 --- /dev/null +++ b/src/encoded/types/ivp_a3.py @@ -0,0 +1,103 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + +@collection( + name='ivp_a3v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_A3V3 Forms", + "description": "UDS Initial visiting patients A3V3 forms results pages", + }) +class Ivp_a3v3(Item): + item_type = 'ivp_a3v3' + schema = load_schema('encoded:schemas/ivp_a3v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_a3v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_A3V2 Forms", + "description": "UDS Initial visiting patients A3V2 forms results pages", + }) +class Ivp_a3v2(Item): + item_type = 'ivp_a3v2' + schema = load_schema('encoded:schemas/ivp_a3v2.json') + embedded =[] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_a3v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_A3V1 Forms", + "description": "UDS Initial visiting patients A3V1 forms results pages", + }) +class Ivp_a3v1(Item): + item_type = 'ivp_a3v1' + schema = load_schema('encoded:schemas/ivp_a3v1.json') + embedded =[] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/ivp_a4.py b/src/encoded/types/ivp_a4.py new file mode 100644 index 0000000000..9b97184839 --- /dev/null +++ b/src/encoded/types/ivp_a4.py @@ -0,0 +1,105 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + + +@collection( + name='ivp_a4v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_A4V3 Forms", + "description": "UDS Initial visiting patients A4V3 forms results pages", + }) +class Ivp_a4v3(Item): + item_type = 'ivp_a4v3' + schema = load_schema('encoded:schemas/ivp_a4v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_a4v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_A4V2 Forms", + "description": "UDS Initial visiting patients A4V2 forms results pages", + }) +class Ivp_a4v2(Item): + item_type = 'ivp_a4v2' + schema = load_schema('encoded:schemas/ivp_a4v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_a4v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_A4V1 Forms", + "description": "UDS Initial visiting patients A4V1 forms results pages", + }) +class Ivp_a4v1(Item): + item_type = 'ivp_a4v1' + schema = load_schema('encoded:schemas/ivp_a4v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/ivp_a5.py b/src/encoded/types/ivp_a5.py new file mode 100644 index 0000000000..fa62c679ab --- /dev/null +++ b/src/encoded/types/ivp_a5.py @@ -0,0 +1,103 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + +@collection( + name='ivp_a5v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_A5V3 Forms", + "description": "UDS Initial visiting patients A5V3 forms results pages", + }) +class Ivp_a5v3(Item): + item_type = 'ivp_a5v3' + schema = load_schema('encoded:schemas/ivp_a5v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_a5v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_A5V2 Forms", + "description": "UDS Initial visiting patients A5V2 forms results pages", + }) +class Ivp_a5v2(Item): + item_type = 'ivp_a5v2' + schema = load_schema('encoded:schemas/ivp_a5v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_a5v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_A5V1 Forms", + "description": "UDS Initial visiting patients A5V1 forms results pages", + }) +class Ivp_a5v1(Item): + item_type = 'ivp_a5v1' + schema = load_schema('encoded:schemas/ivp_a5v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_b1.py b/src/encoded/types/ivp_b1.py new file mode 100644 index 0000000000..fee6aed608 --- /dev/null +++ b/src/encoded/types/ivp_b1.py @@ -0,0 +1,101 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + +@collection( + name='ivp_b1v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B1V3 Forms", + "description": "UDS Initial visiting patients B1V3 forms results pages", + }) +class Ivp_b1v3(Item): + item_type = 'ivp_b1v3' + schema = load_schema('encoded:schemas/ivp_b1v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_b1v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B1V2 Forms", + "description": "UDS Initial visiting patients B1V2 forms results pages", + }) +class Ivp_b1v2(Item): + item_type = 'ivp_b1v2' + schema = load_schema('encoded:schemas/ivp_b1v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_b1v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B1V1 Forms", + "description": "UDS Initial visiting patients B1V1 forms results pages", + }) +class Ivp_b1v1(Item): + item_type = 'ivp_b1v1' + schema = load_schema('encoded:schemas/ivp_b1v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_b2.py b/src/encoded/types/ivp_b2.py new file mode 100644 index 0000000000..510d85f558 --- /dev/null +++ b/src/encoded/types/ivp_b2.py @@ -0,0 +1,78 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name='ivp_b2v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B2V2 Forms", + "description": "UDS Initial visiting patients B2V2 forms results pages", + }) +class Ivp_b2v2(Item): + item_type = 'ivp_b2v2' + schema = load_schema('encoded:schemas/ivp_b2v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_b2v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B2V1 Forms", + "description": "UDS Initial visiting patients B2V1 forms results pages", + }) +class Ivp_b2v1(Item): + item_type = 'ivp_b2v1' + schema = load_schema('encoded:schemas/ivp_b2v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/ivp_b3.py b/src/encoded/types/ivp_b3.py new file mode 100644 index 0000000000..3d4e0b7fda --- /dev/null +++ b/src/encoded/types/ivp_b3.py @@ -0,0 +1,78 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name='ivp_b3v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B2V2 Forms", + "description": "UDS Initial visiting patients B2V2 forms results pages", + }) +class Ivp_b3v2(Item): + item_type = 'ivp_b3v2' + schema = load_schema('encoded:schemas/ivp_b3v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_b3v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B3V1 Forms", + "description": "UDS Initial visiting patients B3V1 forms results pages", + }) +class Ivp_b3v1(Item): + item_type = 'ivp_b3v1' + schema = load_schema('encoded:schemas/ivp_b3v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_b4.py b/src/encoded/types/ivp_b4.py new file mode 100644 index 0000000000..c88792a683 --- /dev/null +++ b/src/encoded/types/ivp_b4.py @@ -0,0 +1,105 @@ +from snovault import ( + + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + + +@collection( + name='ivp_b4v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B4V3 Forms", + "description": "UDS Initial visiting patients B4V3 forms results pages", + }) +class Ivp_b4v3(Item): + item_type = 'ivp_b4v3' + schema = load_schema('encoded:schemas/ivp_b4v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_b4v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B4V2 Forms", + "description": "UDS Initial visiting patients B4V2 forms results pages", + }) +class Ivp_b4v2(Item): + item_type = 'ivp_b4v2' + schema = load_schema('encoded:schemas/ivp_b4v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_b4v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B4V1 Forms", + "description": "UDS Initial visiting patients B4V1 forms results pages", + }) +class Ivp_b4v1(Item): + item_type = 'ivp_b4v1' + schema = load_schema('encoded:schemas/ivp_b4v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/ivp_b5.py b/src/encoded/types/ivp_b5.py new file mode 100644 index 0000000000..edb12deba7 --- /dev/null +++ b/src/encoded/types/ivp_b5.py @@ -0,0 +1,102 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + +@collection( + name='ivp_b5v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B5V3 Forms", + "description": "UDS Initial visiting patients B5V3 forms results pages", + }) +class Ivp_b5v3(Item): + item_type = 'ivp_b5v3' + schema = load_schema('encoded:schemas/ivp_b5v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_b5v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B5V2 Forms", + "description": "UDS Initial visiting patients B5V2 forms results pages", + }) +class Ivp_b5v2(Item): + item_type = 'ivp_b5v2' + schema = load_schema('encoded:schemas/ivp_b5v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_b5v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B5V1 Forms", + "description": "UDS Initial visiting patients B5V1 forms results pages", + }) +class Ivp_b5v1(Item): + item_type = 'ivp_b5v1' + schema = load_schema('encoded:schemas/ivp_b5v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_b6.py b/src/encoded/types/ivp_b6.py new file mode 100644 index 0000000000..74ea412577 --- /dev/null +++ b/src/encoded/types/ivp_b6.py @@ -0,0 +1,102 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + +@collection( + name='ivp_b6v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B6V3 Forms", + "description": "UDS Initial visiting patients B6V3 forms results pages", + }) +class Ivp_b6v3(Item): + item_type = 'ivp_b6v3' + schema = load_schema('encoded:schemas/ivp_b6v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_b6v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B6V2 Forms", + "description": "UDS Initial visiting patients B6V2 forms results pages", + }) +class Ivp_b6v2(Item): + item_type = 'ivp_b6v2' + schema = load_schema('encoded:schemas/ivp_b6v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_b6v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B6V1 Forms", + "description": "UDS Initial visiting patients B6V1 forms results pages", + }) +class Ivp_b6v1(Item): + item_type = 'ivp_b6v1' + schema = load_schema('encoded:schemas/ivp_b6v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_b7.py b/src/encoded/types/ivp_b7.py new file mode 100644 index 0000000000..24fb6afdc4 --- /dev/null +++ b/src/encoded/types/ivp_b7.py @@ -0,0 +1,104 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + + +@collection( + name='ivp_b7v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B7V3 Forms", + "description": "UDS Initial visiting patients B7V3 forms results pages", + }) +class Ivp_b7v3(Item): + item_type = 'ivp_b7v3' + schema = load_schema('encoded:schemas/ivp_b7v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_b7v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B7V2 Forms", + "description": "UDS Initial visiting patients B7V2 forms results pages", + }) +class Ivp_b7v2(Item): + item_type = 'ivp_b7v2' + schema = load_schema('encoded:schemas/ivp_b7v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_b7v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B7V1 Forms", + "description": "UDS Initial visiting patients B7V1 forms results pages", + }) +class Ivp_b7v1(Item): + item_type = 'ivp_b7v1' + schema = load_schema('encoded:schemas/ivp_b7v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/ivp_b8.py b/src/encoded/types/ivp_b8.py new file mode 100644 index 0000000000..285b30ea35 --- /dev/null +++ b/src/encoded/types/ivp_b8.py @@ -0,0 +1,104 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + + +@collection( + name='ivp_b8v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B8V3 Forms", + "description": "UDS Initial visiting patients B8V3 forms results pages", + }) +class Ivp_b8v3(Item): + item_type = 'ivp_b8v3' + schema = load_schema('encoded:schemas/ivp_b8v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_b8v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B8V2 Forms", + "description": "UDS Initial visiting patients B8V2 forms results pages", + }) +class Ivp_b8v2(Item): + item_type = 'ivp_b8v2' + schema = load_schema('encoded:schemas/ivp_b8v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_b8v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B8V1 Forms", + "description": "UDS Initial visiting patients B8V1 forms results pages", + }) +class Ivp_b8v1(Item): + item_type = 'ivp_b8v1' + schema = load_schema('encoded:schemas/ivp_b8v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_b9.py b/src/encoded/types/ivp_b9.py new file mode 100644 index 0000000000..40c6a5ca64 --- /dev/null +++ b/src/encoded/types/ivp_b9.py @@ -0,0 +1,104 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + + +@collection( + name='ivp_b9v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B9V3 Forms", + "description": "UDS Initial visiting patients B9V3 forms results pages", + }) +class Ivp_b9v3(Item): + item_type = 'ivp_b9v3' + schema = load_schema('encoded:schemas/ivp_b9v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_b9v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B9V2 Forms", + "description": "UDS Initial visiting patients B9V2 forms results pages", + }) +class Ivp_b9v2(Item): + item_type = 'ivp_b9v2' + schema = load_schema('encoded:schemas/ivp_b9v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_b9v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_B9V1 Forms", + "description": "UDS Initial visiting patients B9V1 forms results pages", + }) +class Ivp_b9v1(Item): + item_type = 'ivp_b9v1' + schema = load_schema('encoded:schemas/ivp_b9v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_c1.py b/src/encoded/types/ivp_c1.py new file mode 100644 index 0000000000..caf73da4b5 --- /dev/null +++ b/src/encoded/types/ivp_c1.py @@ -0,0 +1,82 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + + + +@collection( + name='ivp_c1v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_C1V2 Forms", + "description": "UDS Initial visiting patients C1V2 forms results pages", + }) +class Ivp_c1v2(Item): + item_type = 'ivp_c1v2' + schema = load_schema('encoded:schemas/ivp_c1v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_c1v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_C1V1 Forms", + "description": "UDS Initial visiting patients C1V1 forms results pages", + }) +class Ivp_c1v1(Item): + item_type = 'ivp_c1v1' + schema = load_schema('encoded:schemas/ivp_c1v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_c2.py b/src/encoded/types/ivp_c2.py new file mode 100644 index 0000000000..4c6589769c --- /dev/null +++ b/src/encoded/types/ivp_c2.py @@ -0,0 +1,82 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + + +@collection( + name='ivp_c2v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_C2V3 Forms", + "description": "UDS Initial visiting patients C2V3 forms results pages", + }) +class Ivp_c2v3(Item): + item_type = 'ivp_c2v3' + schema = load_schema('encoded:schemas/ivp_c2v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_c2v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_C2V2 Forms", + "description": "UDS Initial visiting patients C2V2 forms results pages", + }) +class Ivp_c2v2(Item): + item_type = 'ivp_c2v2' + schema = load_schema('encoded:schemas/ivp_c2v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_d1.py b/src/encoded/types/ivp_d1.py new file mode 100644 index 0000000000..41a5ba5947 --- /dev/null +++ b/src/encoded/types/ivp_d1.py @@ -0,0 +1,104 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + + +@collection( + name='ivp_d1v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_D1V3 Forms", + "description": "UDS Initial visiting patients D1V3 forms results pages", + }) +class Ivp_d1v3(Item): + item_type = 'ivp_d1v3' + schema = load_schema('encoded:schemas/ivp_d1v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_d1v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_D1V2 Forms", + "description": "UDS Initial visiting patients D1V2 forms results pages", + }) +class Ivp_d1v2(Item): + item_type = 'ivp_d1v2' + schema = load_schema('encoded:schemas/ivp_d1v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_d1v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_D1V1 Forms", + "description": "UDS Initial visiting patients D1V1 forms results pages", + }) +class Ivp_d1v1(Item): + item_type = 'ivp_d1v1' + schema = load_schema('encoded:schemas/ivp_d1v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_d2.py b/src/encoded/types/ivp_d2.py new file mode 100644 index 0000000000..7acf7afc53 --- /dev/null +++ b/src/encoded/types/ivp_d2.py @@ -0,0 +1,82 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + + +@collection( + name='ivp_d2v3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_D2V3 Forms", + "description": "UDS Initial visiting patients D2V3 forms results pages", + }) +class Ivp_d2v3(Item): + item_type = 'ivp_d2v3' + schema = load_schema('encoded:schemas/ivp_d2v3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + +@collection( + name='ivp_d2v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_D2V2 Forms", + "description": "UDS Initial visiting patients D2V2 forms results pages", + }) +class Ivp_d2v2(Item): + item_type = 'ivp_d2v2' + schema = load_schema('encoded:schemas/ivp_d2v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_e1.py b/src/encoded/types/ivp_e1.py new file mode 100644 index 0000000000..57c7c5baa6 --- /dev/null +++ b/src/encoded/types/ivp_e1.py @@ -0,0 +1,78 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name='ivp_e1v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_E1V2 Forms", + "description": "UDS Initial visiting patients E1V2 forms results pages", + }) +class Ivp_e1v2(Item): + item_type = 'ivp_e1v2' + schema = load_schema('encoded:schemas/ivp_e1v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_e1v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_E1V1 Forms", + "description": "UDS Initial visiting patients E1V1 forms results pages", + }) +class Ivp_e1v1(Item): + item_type = 'ivp_e1v1' + schema = load_schema('encoded:schemas/ivp_e1v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_z1.py b/src/encoded/types/ivp_z1.py new file mode 100644 index 0000000000..18eb6c1d6a --- /dev/null +++ b/src/encoded/types/ivp_z1.py @@ -0,0 +1,78 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name='ivp_z1v2', + unique_key='uuid', + properties={ + "title": "UDS_IVP_Z1V2 Forms", + "description": "UDS Initial visiting patients Z1V2 forms results pages", + }) +class Ivp_z1v2(Item): + item_type = 'ivp_z1v2' + schema = load_schema('encoded:schemas/ivp_z1v2.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + +@collection( + name='ivp_z1v1', + unique_key='uuid', + properties={ + "title": "UDS_IVP_Z1V1 Forms", + "description": "UDS Initial visiting patients Z1V1 forms results pages", + }) +class Ivp_z1v1(Item): + item_type = 'ivp_z1v1' + schema = load_schema('encoded:schemas/ivp_z1v1.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] diff --git a/src/encoded/types/ivp_z1x.py b/src/encoded/types/ivp_z1x.py new file mode 100644 index 0000000000..c2aacc76d4 --- /dev/null +++ b/src/encoded/types/ivp_z1x.py @@ -0,0 +1,61 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +# from snovault.util import Path +from pyramid.security import Authenticated +from .base import ( + Item, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + + + + +@collection( + name='ivp_z1xv3', + unique_key='uuid', + properties={ + "title": "UDS_IVP_Z1XV3 Forms", + "description": "UDS Initial visiting patients Z1XV3 forms results pages", + }) +class Ivp_z1xv3(Item): + item_type = 'ivp_z1xv3' + schema = load_schema('encoded:schemas/ivp_z1xv3.json') + embedded = [] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [ + + ] + set_status_down = [] + + diff --git a/src/encoded/types/m1.py b/src/encoded/types/m1.py new file mode 100644 index 0000000000..b41501912f --- /dev/null +++ b/src/encoded/types/m1.py @@ -0,0 +1,56 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="m1s", + unique_key="uuid", + properties={ + "title": "UDS_M1 Forms", + "description": "UDS visiting patients M1 forms results pages", + }, +) +class M1(Item): + item_type = "m1" + schema = load_schema("encoded:schemas/m1.json") + embedded = [ + + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/moca.py b/src/encoded/types/moca.py new file mode 100644 index 0000000000..c9a5b827b1 --- /dev/null +++ b/src/encoded/types/moca.py @@ -0,0 +1,32 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re + + +@collection( + name="mocas", + unique_key="uuid", + properties={ + "title": "Local_form MoCA Forms", + "description": "Local form visiting patients MoCA forms results pages", + }, +) +class Moca(Item): + item_type = "moca" + schema = load_schema("encoded:schemas/moca.json") + embedded = [ + + ] + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/pathology_report.py b/src/encoded/types/pathology_report.py deleted file mode 100644 index d72c503297..0000000000 --- a/src/encoded/types/pathology_report.py +++ /dev/null @@ -1,82 +0,0 @@ -from snovault import ( - calculated_property, - collection, - load_schema, -) -from .base import ( - Item, - # SharedItem, - paths_filtered_by_status, -) -from pyramid.traversal import find_root, resource_path -import re -from .histology_filters import histology_filters - - -@collection( - name="pathology-reports", - unique_key="accession", - properties={ - "title": "Pathology tumor reports", - "description": "Pathology tumor reports results pages", - }, -) -class PathologyReport(Item): - item_type = "pathology_report" - schema = load_schema("encoded:schemas/pathology_report.json") - name_key = "accession" - embedded = [ - "ihc", - ] - rev = { - "ihc": ("Ihc", "pathology_report"), - } - audit_inherit = [] - set_status_up = [] - set_status_down = [] - - - @calculated_property( define=True, schema={ - "title": "Pathology Report Tumor Range", - "description": "Customized tumor range for pathology report", - "type": "string", - }) - - - def pathology_report_tumor_range(self, request, tumor_size=None): - if tumor_size is not None: - if tumor_size >=10: - pathology_report_tumor_range="10+ cm" - elif tumor_size >= 7: - pathology_report_tumor_range="7-10 cm" - elif tumor_size >= 3: - pathology_report_tumor_range="3-7 cm" - else: - pathology_report_tumor_range="0-3 cm" - else: - pathology_report_tumor_range="unknown" - return pathology_report_tumor_range - - - @calculated_property( - schema={ - "title": "ihc link PR", - "type": "array", - "items": {"type": "string", "linkTo": "Ihc"}, - } - ) - def ihc(self, request, ihc): - return paths_filtered_by_status(request, ihc) - - @calculated_property( - schema={ - "title": "Histology", - "description": "Calculated histology subtype", - "type": "string", - } - ) - def histology_filter(self, request, histology): - - return histology_filters.get(histology) - - diff --git a/src/encoded/types/patient.py b/src/encoded/types/patient.py index df51a02817..56c977991f 100644 --- a/src/encoded/types/patient.py +++ b/src/encoded/types/patient.py @@ -41,1756 +41,1606 @@ (Deny, Everyone, 'visible_for_edit') ] + ONLY_ADMIN_VIEW_DETAILS -def group_values_by_lab(request, labs): - values_by_key = defaultdict(list) - for path in labs: - properties = request.embed(path, '@@object?skip_calculated=true') - values_by_key[properties.get('lab')].append(properties) - return dict(values_by_key) - - -def group_values_by_vital(request, vitals): - values_by_key = defaultdict(list) - for path in vitals: - properties = request.embed(path, '@@object?skip_calculated=true') - values_by_key[properties.get('vital')].append(properties) - return dict(values_by_key) - - -def supportive_med_frequency(request, supportive_medication): - frequency_by_key = defaultdict(list) - supportive_meds = [] - for path in supportive_medication: - properties = request.embed(path, '@@object?skip_calculated=true') - start_date = properties.get('start_date') - frequency_by_key[properties.get('name')].append(start_date) - - for k, v in frequency_by_key.items(): - med_freq = {} - med_freq['name'] = k - med_freq['start_date'] = min(v) - med_freq['frequency'] = len(v) - supportive_meds.append(med_freq) - return supportive_meds - - -def last_follow_up_date_fun(request, labs, vitals, germline,ihc, consent,radiation,medical_imaging,medication,supportive_medication,surgery, death_date): - if death_date is not None: - last_follow_up_date = death_date - else: - all_traced_dates=[] - if len(vitals) > 0: - for path in vitals: - properties = request.embed(path, '@@object?skip_calculated=true') - vital_dates=properties.get("date") - all_traced_dates.append(vital_dates) - if len(labs) > 0: - for path in labs: - properties = request.embed(path, '@@object?skip_calculated=true') - lab_dates=properties.get("date") - all_traced_dates.append(lab_dates) - if len(surgery) > 0: - for path in surgery: - properties = request.embed(path, '@@object?skip_calculated=true') - sur_dates=properties.get("date") - all_traced_dates.append(sur_dates) - if len(germline) > 0: - for path in germline: - properties = request.embed(path, '@@object?skip_calculated=true') - ger_dates=properties.get("service_date") - all_traced_dates.append(ger_dates) - if len(ihc) > 0: - for path in ihc: - properties = request.embed(path, '@@object?skip_calculated=true') - ihc_dates=properties.get("service_date") - all_traced_dates.append(ihc_dates) - if len(radiation) > 0: - for path in radiation: - properties = request.embed(path, '@@object?skip_calculated=true') - if 'end_date' in properties: - rad_dates=properties.get("end_date") - else: - rad_dates=properties.get("start_date") - all_traced_dates.append(rad_dates) - if len(medical_imaging) > 0: - for path in medical_imaging: - properties = request.embed(path, '@@object?skip_calculated=true') - med_img_dates=properties.get("procedure_date") - all_traced_dates.append(med_img_dates) - if len(medication) > 0: - for path in medication: - properties = request.embed(path, '@@object?skip_calculated=true') - med_dates=properties.get("end_date") - all_traced_dates.append(med_dates) - if len(supportive_medication) > 0: - for path in supportive_medication: - properties = request.embed(path, '@@object?skip_calculated=true') - sup_med_dates=properties.get("start_date") - all_traced_dates.append(sup_med_dates) - - if len(all_traced_dates) > 0: - all_traced_dates.sort(key = lambda date: datetime.strptime(date, "%Y-%m-%d")) - last_follow_up_date = all_traced_dates[-1] - else: - last_follow_up_date = "Not available" - - return last_follow_up_date - -def getLabsAndVitalsRange(value, low, high, lowRange, normalRange, highRange): - if value < low: - if lowRange == "default": - return "Below (< " + str(low) + ")" - else: - return lowRange - elif value >= high: - if highRange == "default": - return "Above (" + str(high) + " >=)" - else: - return highRange - else: - if normalRange == "default": - return "Normal Range (" + str(low) + " >= and < " + str(high) +")" - - else: - return normalRange - - @collection( - name='patients', - unique_key='accession', - properties={ - 'title': 'Patients', - 'description': 'Listing Patients', -}) + name="patients", + unique_key="accession", + properties={ + "title": "Patients", + "description": "Redcap master_id forms: Basic patient information pages", + }, +) class Patient(Item): - item_type = 'patient' - schema = load_schema('encoded:schemas/patient.json') - name_key = 'accession' + item_type = "patient" + schema = load_schema("encoded:schemas/patient.json") + name_key = "accession" embedded = [ - 'labs', - 'vitals', - 'germline', - 'ihc', - 'consent', - 'radiation', - 'medical_imaging', - 'medications', - 'supportive_medications', - 'surgery', - 'surgery.surgery_procedure', - 'surgery.pathology_report', - 'biospecimen'] + 'ivp_a1v3', + 'ivp_a2v3', + 'ivp_a3v3', + 'ivp_a4v3', + 'ivp_a5v3', + 'ivp_b1v3', + 'ivp_b4v3', + 'ivp_b5v3', + 'ivp_b6v3', + 'ivp_b7v3', + 'ivp_b8v3', + 'ivp_b9v3', + 'ivp_c2v3', + 'ivp_d1v3', + 'ivp_d2v3', + 'ivp_z1xv3', + 'fvp_a1v3', + 'fvp_a2v3', + 'fvp_a3v3', + 'fvp_a4v3', + 'fvp_b1v3', + 'fvp_b4v3', + 'fvp_b5v3', + 'fvp_b6v3', + 'fvp_b7v3', + 'fvp_b8v3', + 'fvp_b9v3', + 'fvp_c1v3', + 'fvp_c2v3', + 'fvp_d1v3', + 'fvp_d2v3', + 'fvp_z1xv3', + + 'ivp_a1v2', + 'ivp_a2v2', + 'ivp_a3v2', + 'ivp_a4v2', + 'ivp_a5v2', + 'ivp_b1v2', + 'ivp_b2v2', + 'ivp_b3v2', + 'ivp_b4v2', + 'ivp_b5v2', + 'ivp_b6v2', + 'ivp_b7v2', + 'ivp_b8v2', + 'ivp_b9v2', + 'ivp_c1v2', + 'ivp_d1v2', + 'ivp_e1v2', + 'ivp_z1v2', + 'fvp_a1v2', + 'fvp_a2v2', + 'fvp_a3v2', + 'fvp_a4v2', + 'fvp_a5v2', + 'fvp_b1v2', + 'fvp_b2v2', + 'fvp_b3v2', + 'fvp_b4v2', + 'fvp_b5v2', + 'fvp_b6v2', + 'fvp_b7v2', + 'fvp_b8v2', + 'fvp_b9v2', + 'fvp_c1v2', + 'fvp_d1v2', + 'fvp_e1v2', + 'fvp_z1v2', + 'ivp_a1v1', + 'ivp_a2v1', + 'ivp_a3v1', + 'ivp_a4v1', + 'ivp_a5v1', + 'ivp_b1v1', + 'ivp_b2v1', + 'ivp_b3v1', + 'ivp_b4v1', + 'ivp_b5v1', + 'ivp_b6v1', + 'ivp_b7v1', + 'ivp_b8v1', + 'ivp_b9v1', + 'ivp_c1v1', + 'ivp_d1v1', + 'ivp_e1v1', + 'ivp_z1v1', + 'fvp_a1v1', + 'fvp_a2v1', + 'fvp_a3v1', + 'fvp_a4v1', + 'fvp_a5v1', + 'fvp_b1v1', + 'fvp_b2v1', + 'fvp_b3v1', + 'fvp_b4v1', + 'fvp_b5v1', + 'fvp_b6v1', + 'fvp_b7v1', + 'fvp_b8v1', + 'fvp_b9v1', + 'fvp_c1v1', + 'fvp_d1v1', + 'fvp_e1v1', + 'fvp_z1v1', + + 'tvp_a1', + 'tvp_a2', + 'tvp_a3', + 'tvp_a4', + 'tvp_b4', + 'tvp_b5', + 'tvp_b7', + 'tvp_d2', + 'tvp_t1', + 'tvp_z1x', + 'm1', + 'concussion_history', + 'concussion_history_follow_up', + 'moca', + 'updrs', + 'visit_contact', + 'physical_exam', + ] rev = { - 'labs': ('LabResult', 'patient'), - 'vitals': ('VitalResult', 'patient'), - 'germline': ('Germline', 'patient'), - 'ihc': ('Ihc', 'patient'), - 'consent': ('Consent', 'patient'), - 'radiation': ('Radiation', 'patient'), - 'medical_imaging': ('MedicalImaging', 'patient'), - 'medication': ('Medication', 'patient'), - 'supportive_medication': ('SupportiveMedication', 'patient'), - 'surgery': ('Surgery', 'patient'), - 'biospecimen': ('Biospecimen', 'patient') + 'ivp_a1v3': ('Ivp_a1v3', 'patient'), + 'ivp_a2v3': ('Ivp_a2v3', 'patient'), + 'ivp_a3v3': ('Ivp_a3v3', 'patient'), + 'ivp_a4v3': ('Ivp_a4v3', 'patient'), + 'ivp_a5v3': ('Ivp_a5v3', 'patient'), + 'ivp_b1v3': ('Ivp_b1v3', 'patient'), + 'ivp_b4v3': ('Ivp_b4v3', 'patient'), + 'ivp_b5v3': ('Ivp_b5v3', 'patient'), + 'ivp_b6v3': ('Ivp_b6v3', 'patient'), + 'ivp_b7v3': ('Ivp_b7v3', 'patient'), + 'ivp_b8v3': ('Ivp_b8v3', 'patient'), + 'ivp_b9v3': ('Ivp_b9v3', 'patient'), + 'ivp_c2v3': ('Ivp_c2v3', 'patient'), + 'ivp_d1v3': ('Ivp_d1v3', 'patient'), + 'ivp_d2v3': ('Ivp_d2v3', 'patient'), + 'ivp_z1xv3': ('Ivp_z1xv3', 'patient'), + 'fvp_a1v3': ('Fvp_a1v3', 'patient'), + 'fvp_a2v3': ('Fvp_a2v3', 'patient'), + 'fvp_a3v3': ('Fvp_a3v3', 'patient'), + 'fvp_a4v3': ('Fvp_a4v3', 'patient'), + 'fvp_b1v3': ('Fvp_b1v3', 'patient'), + 'fvp_b4v3': ('Fvp_b4v3', 'patient'), + 'fvp_b5v3': ('Fvp_b5v3', 'patient'), + 'fvp_b6v3': ('Fvp_b6v3', 'patient'), + 'fvp_b7v3': ('Fvp_b7v3', 'patient'), + 'fvp_b8v3': ('Fvp_b8v3', 'patient'), + 'fvp_b9v3': ('Fvp_b9v3', 'patient'), + 'fvp_c1v3': ('Fvp_c1v3', 'patient'), + 'fvp_c2v3': ('Fvp_c2v3', 'patient'), + 'fvp_d1v3': ('Fvp_d1v3', 'patient'), + 'fvp_d2v3': ('Fvp_d2v3', 'patient'), + 'fvp_z1xv3': ('Fvp_z1xv3', 'patient'), + + 'ivp_a1v2': ('Ivp_a1v2', 'patient'), + 'ivp_a2v2': ('Ivp_a2v2', 'patient'), + 'ivp_a3v2': ('Ivp_a3v2', 'patient'), + 'ivp_a4v2': ('Ivp_a4v2', 'patient'), + 'ivp_a5v2': ('Ivp_a5v2', 'patient'), + 'ivp_b1v2': ('Ivp_b1v2', 'patient'), + 'ivp_b2v2': ('Ivp_b2v2', 'patient'), + 'ivp_b3v2': ('Ivp_b3v2', 'patient'), + 'ivp_b4v2': ('Ivp_b4v2', 'patient'), + 'ivp_b5v2': ('Ivp_b5v2', 'patient'), + 'ivp_b6v2': ('Ivp_b6v2', 'patient'), + 'ivp_b7v2': ('Ivp_b7v2', 'patient'), + 'ivp_b8v2': ('Ivp_b8v2', 'patient'), + 'ivp_b9v2': ('Ivp_b9v2', 'patient'), + 'ivp_c1v2': ('Ivp_c1v2', 'patient'), + 'ivp_d1v2': ('Ivp_d1v2', 'patient'), + 'ivp_e1v2': ('Ivp_e1v2', 'patient'), + 'ivp_z1v2': ('Ivp_z1v2', 'patient'), + 'fvp_a1v2': ('Fvp_a1v2', 'patient'), + 'fvp_a2v2': ('Fvp_a2v2', 'patient'), + 'fvp_a3v2': ('Fvp_a3v2', 'patient'), + 'fvp_a4v2': ('Fvp_a4v2', 'patient'), + 'fvp_a5v2': ('Fvp_a5v2', 'patient'), + 'fvp_b1v2': ('Fvp_b1v2', 'patient'), + 'fvp_b2v2': ('Fvp_b2v2', 'patient'), + 'fvp_b3v2': ('Fvp_b3v2', 'patient'), + 'fvp_b4v2': ('Fvp_b4v2', 'patient'), + 'fvp_b5v2': ('Fvp_b5v2', 'patient'), + 'fvp_b6v2': ('Fvp_b6v2', 'patient'), + 'fvp_b7v2': ('Fvp_b7v2', 'patient'), + 'fvp_b8v2': ('Fvp_b8v2', 'patient'), + 'fvp_b9v2': ('Fvp_b9v2', 'patient'), + 'fvp_c1v2': ('Fvp_c1v2', 'patient'), + 'fvp_d1v2': ('Fvp_d1v2', 'patient'), + 'fvp_e1v2': ('Fvp_e1v2', 'patient'), + 'fvp_z1v2': ('Fvp_z1v2', 'patient'), + 'ivp_a1v1': ('Ivp_a1v1', 'patient'), + 'ivp_a2v1': ('Ivp_a2v1', 'patient'), + 'ivp_a3v1': ('Ivp_a3v1', 'patient'), + 'ivp_a4v1': ('Ivp_a4v1', 'patient'), + 'ivp_a5v1': ('Ivp_a5v1', 'patient'), + 'ivp_b1v1': ('Ivp_b1v1', 'patient'), + 'ivp_b2v1': ('Ivp_b2v1', 'patient'), + 'ivp_b3v1': ('Ivp_b3v1', 'patient'), + 'ivp_b4v1': ('Ivp_b4v1', 'patient'), + 'ivp_b5v1': ('Ivp_b5v1', 'patient'), + 'ivp_b6v1': ('Ivp_b6v1', 'patient'), + 'ivp_b7v1': ('Ivp_b7v1', 'patient'), + 'ivp_b8v1': ('Ivp_b8v1', 'patient'), + 'ivp_b9v1': ('Ivp_b9v1', 'patient'), + 'ivp_c1v1': ('Ivp_c1v1', 'patient'), + 'ivp_d1v1': ('Ivp_d1v1', 'patient'), + 'ivp_e1v1': ('Ivp_e1v1', 'patient'), + 'ivp_z1v1': ('Ivp_z1v1', 'patient'), + 'fvp_a1v1': ('Fvp_a1v1', 'patient'), + 'fvp_a2v1': ('Fvp_a2v1', 'patient'), + 'fvp_a3v1': ('Fvp_a3v1', 'patient'), + 'fvp_a4v1': ('Fvp_a4v1', 'patient'), + 'fvp_a5v1': ('Fvp_a5v1', 'patient'), + 'fvp_b1v1': ('Fvp_b1v1', 'patient'), + 'fvp_b2v1': ('Fvp_b2v1', 'patient'), + 'fvp_b3v1': ('Fvp_b3v1', 'patient'), + 'fvp_b4v1': ('Fvp_b4v1', 'patient'), + 'fvp_b5v1': ('Fvp_b5v1', 'patient'), + 'fvp_b6v1': ('Fvp_b6v1', 'patient'), + 'fvp_b7v1': ('Fvp_b7v1', 'patient'), + 'fvp_b8v1': ('Fvp_b8v1', 'patient'), + 'fvp_b9v1': ('Fvp_b9v1', 'patient'), + 'fvp_c1v1': ('Fvp_c1v1', 'patient'), + 'fvp_d1v1': ('Fvp_d1v1', 'patient'), + 'fvp_e1v1': ('Fvp_e1v1', 'patient'), + 'fvp_z1v1': ('Fvp_z1v1', 'patient'), + + 'tvp_a1': ('Tvp_a1', 'patient'), + 'tvp_a2': ('Tvp_a2', 'patient'), + 'tvp_a3': ('Tvp_a3', 'patient'), + 'tvp_a4': ('Tvp_a4', 'patient'), + 'tvp_b4': ('Tvp_b4', 'patient'), + 'tvp_b5': ('Tvp_b5', 'patient'), + 'tvp_b7': ('Tvp_b7', 'patient'), + 'tvp_d2': ('Tvp_d2', 'patient'), + 'tvp_t1': ('Tvp_t1', 'patient'), + 'tvp_z1x': ('Tvp_z1x', 'patient'), + 'm1': ('M1', 'patient'), + 'concussion_history': ('Concussion_history', 'patient'), + 'concussion_history_follow_up': ('Concussion_history_follow_up', 'patient'), + 'updrs': ('Updrs', 'patient'), + 'visit_contact': ('Visit_contact', 'patient'), + 'physical_exam': ('Physical_exam', 'patient'), + 'moca': ('Moca', 'patient'), + } + + audit_inherit = [ + + ] set_status_up = [] set_status_down = [] @calculated_property(schema={ - "title": "Last Follow-up Date", - "description": "Calculated last follow-up date,format as YYYY-MM-DD", - "type": "string", + "title": "Ivp_a1v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_a1v3" + }, }) - def last_follow_up_date(self, request, labs, vitals, germline,ihc, consent,radiation,medical_imaging,medication,supportive_medication,surgery, death_date=None): - return last_follow_up_date_fun(request, labs, vitals, germline,ihc, consent,radiation,medical_imaging,medication,supportive_medication,surgery, death_date) - + def ivp_a1v3(self, request, ivp_a1v3): + return paths_filtered_by_status(request, ivp_a1v3) - @calculated_property( schema={ - "title": "Labs", + @calculated_property(schema={ + "title": "Ivp_a2v3", "type": "array", "items": { - "type": "string", - "linkTo": "LabResult", + "type": 'string', + "linkTo": "Ivp_a2v3" }, }) - def labs(self, request, labs): - return group_values_by_lab(request, labs) + def ivp_a2v3(self, request, ivp_a2v3): + return paths_filtered_by_status(request, ivp_a2v3) - @calculated_property( schema={ - "title": "Vitals", + @calculated_property(schema={ + "title": "Ivp_a3v3", "type": "array", "items": { - "type": "string", - "linkTo": "VitalResult", + "type": 'string', + "linkTo": "Ivp_a3v3" }, }) - def vitals(self, request, vitals): - return group_values_by_vital(request, vitals) + def ivp_a3v3(self, request, ivp_a3v3): + return paths_filtered_by_status(request, ivp_a3v3) @calculated_property(schema={ - "title": "Germline Mutations", + "title": "Ivp_a4v3", "type": "array", "items": { "type": 'string', - "linkTo": "Germline" + "linkTo": "Ivp_a4v3" }, }) - def germline(self, request, germline): - return paths_filtered_by_status(request, germline) + def ivp_a4v3(self, request, ivp_a4v3): + return paths_filtered_by_status(request, ivp_a4v3) - - - @calculated_property(condition='germline', schema={ - "title": "Positive Germline Mutations", + @calculated_property(schema={ + "title": "Ivp_a5v3", "type": "array", "items": { - "type": "string", + "type": 'string', + "linkTo": "Ivp_a5v3" }, }) - def germline_summary(self, request, germline): - germline_summary = [] - for mutation in germline: - mutatation_object = request.embed(mutation, '@@object') - if mutatation_object['significance'] in ['Positive', 'Variant', 'Positive and Variant']: - mutation_summary = mutatation_object['target'] - germline_summary.append(mutation_summary) - return germline_summary + def ivp_a5v3(self, request, ivp_a5v3): + return paths_filtered_by_status(request, ivp_a5v3) @calculated_property(schema={ - "title":"IHC result", - "type":"array", - "items":{ - "type":'string', - "linkTo":'ihc' - } + "title": "Ivp_b1v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b1v3" + }, }) - - def ihc(self,request,ihc): - return paths_filtered_by_status(request,ihc) - + def ivp_b1v3(self, request, ivp_b1v3): + return paths_filtered_by_status(request, ivp_b1v3) @calculated_property(schema={ - "title": "Radiation Treatment", + "title": "Ivp_b4v3", "type": "array", "items": { "type": 'string', - "linkTo": "Radiation" + "linkTo": "Ivp_b4v3" }, }) - def radiation(self, request, radiation): - return paths_filtered_by_status(request, radiation) + def ivp_b4v3(self, request, ivp_b4v3): + return paths_filtered_by_status(request, ivp_b4v3) - @calculated_property(define=True, schema={ - "title": "Radiation Treatment Summary", - "type": "string", + @calculated_property(schema={ + "title": "Ivp_b5v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b5v3" + }, }) - def radiation_summary(self, request, radiation=None): - if len(radiation) > 0: - radiation_summary = "Treatment Received" - else: - radiation_summary = "No Treatment Received" - return radiation_summary + def ivp_b5v3(self, request, ivp_b5v3): + return paths_filtered_by_status(request, ivp_b5v3) - @calculated_property(define=True, schema={ - "title": "Metastasis status ", - "type": "string", + @calculated_property(schema={ + "title": "Ivp_b6v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b6v3" + }, }) - def metastasis_status(self, request, radiation=None, surgery=None): - status = "No" - if len(radiation) > 0: + def ivp_b6v3(self, request, ivp_b6v3): + return paths_filtered_by_status(request, ivp_b6v3) - for radiation_record in radiation: - radiation_object = request.embed(radiation_record, '@@object') - #site mapping - if radiation_object['site_general'] != "Kidney, right" and radiation_object['site_general'] != "Kidney, thrombus" and radiation_object['site_general'] != "Kidney, left" and radiation_object['site_general'] != "Retroperitoneum / renal bed, left" and radiation_object['site_general'] != "Retroperitoneum / renal bed, right": - status = "Yes" - else: - if len(surgery) > 0: - for surgery_record in surgery: - surgery_object = request.embed(surgery_record, '@@object') - path_reports = surgery_object['pathology_report'] - if len(path_reports) > 0: - for path_report in path_reports: - path_report_obj = request.embed(path_report, '@@object') - if path_report_obj['path_source_procedure'] == 'path_metastasis': - status = "Yes" - return status - - @calculated_property(define=True, schema={ - "title": "Vital Status", - "type": "string", + @calculated_property(schema={ + "title": "Ivp_b7v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b7v3" + }, }) - def vital_status(self, request, death_date=None): - if death_date is None: - vital_status = "Alive" - else: - vital_status = "Deceased" - return vital_status + def ivp_b7v3(self, request, ivp_b7v3): + return paths_filtered_by_status(request, ivp_b7v3) + @calculated_property(schema={ + "title": "Ivp_b8v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b8v3" + }, + }) + def ivp_b8v3(self, request, ivp_b8v3): + return paths_filtered_by_status(request, ivp_b8v3) @calculated_property(schema={ - "title": "Medical Imaging", + "title": "Ivp_b9v3", "type": "array", "items": { "type": 'string', - "linkTo": "MedicalImaging" + "linkTo": "Ivp_b9v3" }, }) - def medical_imaging(self, request, medical_imaging): - return paths_filtered_by_status(request, medical_imaging) + def ivp_b9v3(self, request, ivp_b9v3): + return paths_filtered_by_status(request, ivp_b9v3) + @calculated_property(schema={ + "title": "Ivp_c2v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_c2v3" + }, + }) + def ivp_c2v3(self, request, ivp_c2v3): + return paths_filtered_by_status(request, ivp_c2v3) @calculated_property(schema={ - "title": "Consent", + "title": "Ivp_d1v3", "type": "array", "items": { "type": 'string', - "linkTo": "Consent" + "linkTo": "Ivp_d1v3" }, }) - def consent(self, request, consent): - return paths_filtered_by_status(request, consent) + def ivp_d1v3(self, request, ivp_d1v3): + return paths_filtered_by_status(request, ivp_d1v3) - @calculated_property( schema={ - "title": "Medications", + @calculated_property(schema={ + "title": "Ivp_d2v3", "type": "array", "items": { - "type": "string", - "linkTo": "Medication", + "type": 'string', + "linkTo": "Ivp_d2v3" }, }) - def medications(self, request, medication): - return paths_filtered_by_status(request, medication) + def ivp_d2v3(self, request, ivp_d2v3): + return paths_filtered_by_status(request, ivp_d2v3) - @calculated_property(condition='medication', schema={ - "title": "Medication duration", + @calculated_property(schema={ + "title": "Ivp_z1xv3", "type": "array", "items": { - "type": "string", + "type": 'string', + "linkTo": "Ivp_z1xv3" }, }) - def medication_range(self, request, medication): + def ivp_z1xv3(self, request, ivp_z1xv3): + return paths_filtered_by_status(request, ivp_z1xv3) - for med in medication: - medication_object = request.embed(med, '@@object') - date_format="%Y-%m-%d" - start_date=datetime.strptime(medication_object['start_date'],date_format ) - end_date=datetime.strptime(medication_object['end_date'],date_format ) - medication_duration=(end_date-start_date).days/30 + @calculated_property(schema={ + "title": "Fvp_a1v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a1v3" + }, + }) + def fvp_a1v3(self, request, fvp_a1v3): + return paths_filtered_by_status(request, fvp_a1v3) - medication_range=[] - if 0<=medication_duration<3: - medication_range.append("0-3 months") - elif 3<=medication_duration<6: - medication_range.append("3-6 months") - elif 6<=medication_duration<9: - medication_range.append("6-9 months") - elif 9<=medication_duration<12: - medication_range.append("9-12 months") - elif 12<=medication_duration<18: - medication_range.append("12-18 months") - elif 18<=medication_duration<24: - medication_range.append("18-24 months") - elif 24<=medication_duration<30: - medication_range.append("24-30 months") - elif 30<=medication_duration<36: - medication_range.append("30-36 months") - elif 36<=medication_duration<48: - medication_range.append("36-48 months") - else : - medication_range.append("48+ months") - return medication_range + @calculated_property(schema={ + "title": "Fvp_a2v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a2v3" + }, + }) + def fvp_a2v3(self, request, fvp_a2v3): + return paths_filtered_by_status(request, fvp_a2v3) + @calculated_property(schema={ + "title": "Fvp_a3v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a3v3" + }, + }) + def fvp_a3v3(self, request, fvp_a3v3): + return paths_filtered_by_status(request, fvp_a3v3) - @calculated_property( schema={ - "title": "Supportive Medications", + @calculated_property(schema={ + "title": "Fvp_a4v3", "type": "array", "items": { - "type": "string", - "linkTo": "SupportiveMedication", + "type": 'string', + "linkTo": "Fvp_a4v3" }, }) - def supportive_medications(self, request, supportive_medication): - return supportive_med_frequency(request, supportive_medication) + def fvp_a4v3(self, request, fvp_a4v3): + return paths_filtered_by_status(request, fvp_a4v3) + @calculated_property(schema={ + "title": "Fvp_b1v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b1v3" + }, + }) + def fvp_b1v3(self, request, fvp_b1v3): + return paths_filtered_by_status(request, fvp_b1v3) @calculated_property(schema={ - "title": "Biospecimen", + "title": "Fvp_b4v3", "type": "array", "items": { "type": 'string', - "linkTo": "Biospecimen" + "linkTo": "Fvp_b4v3" }, }) + def fvp_b4v3(self, request, fvp_b4v3): + return paths_filtered_by_status(request, fvp_b4v3) - def biospecimen(self, request, biospecimen): - return paths_filtered_by_status(request, biospecimen) + @calculated_property(schema={ + "title": "Fvp_b5v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b5v3" + }, + }) + def fvp_b5v3(self, request, fvp_b5v3): + return paths_filtered_by_status(request, fvp_b5v3) + @calculated_property(schema={ + "title": "Fvp_b6v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b6v3" + }, + }) + def fvp_b6v3(self, request, fvp_b6v3): + return paths_filtered_by_status(request, fvp_b6v3) - @calculated_property( schema={ - "title": "Surgeries", + @calculated_property(schema={ + "title": "Fvp_b7v3", "type": "array", "items": { - "type": "string", - "linkTo": "Surgery", + "type": 'string', + "linkTo": "Fvp_b7v3" }, }) + def fvp_b7v3(self, request, fvp_b7v3): + return paths_filtered_by_status(request, fvp_b7v3) - def surgery(self, request, surgery): - return paths_filtered_by_status(request, surgery) + @calculated_property(schema={ + "title": "Fvp_b8v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b8v3" + }, + }) + def fvp_b8v3(self, request, fvp_b8v3): + return paths_filtered_by_status(request, fvp_b8v3) + @calculated_property(schema={ + "title": "Fvp_b9v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b9v3" + }, + }) + def fvp_b9v3(self, request, fvp_b9v3): + return paths_filtered_by_status(request, fvp_b9v3) - @calculated_property(define=True, schema={ - "title": "Dominant Tumor", - "type": "object", - "additionalProperties": False, - "properties":{ - "t_stage": { - "title": "pT Stage", - "description": "Pathological T stage, size primary tumor", - "type": "string", - }, - "n_stage": { - "title": "pN Stage", - "description": "Pathological N stage, nodal involvement", - "type": "string", - }, - "m_stage": { - "title": "pM Stage", - "description": "Pathological M stage, nodal involvement", - "type": "string", - }, - "histology": { - "title": "Histology", - "description": "The histology of tumor", - "type": "string", - }, - "histology_filter": { - "title": "Histology", - "description": "The histology of tumor", - "type": "string", - }, - "tumor_size": { - "title": "Tumor Size", - "description": "Greatest dimension of tumor was recorded in cm. ", - "type": "number" - }, - "tumor_size_units": { - "title": "Tumor Size units", - "type": "string", - "enum": [ - "cm" - ] - }, - "stage": { - "title": "AJCC TNM Stage", - "description": "AJCC TNM Stage", - "type": "string", - "enum": [ - "1", - "2", - "3", - "4", - "Not applicable", - "Not available" - ] - }, - "ajcc_version": { - "title": "AJCC Version", - "description": "AJCC Version used for staging", - "type": "string", - "enum": [ - "6th edition", - "7th edition", - "8th edition" - ] - }, - "date": { - "title": "Surgery Date", - "type": "string", - - }, - - }, - }) - def dominant_tumor(self, request, surgery=None): - dominant_tumor = dict() - tRanking = {"Not applicable": 0, "pTX": 1,"pT1": 2, "pT1a": 2, "pT1b": 2, "pT2": 3, "pT2a": 3, "pT2b": 3, "pT3": 4, "pT3a": 4, "pT3b": 4, "pT3c": 4, "pT4": 5} - nRanking = {"Not applicable": 0, "Not available": 1, "pNX": 1, "pN0": 2, "pN1": 3, "pN2": 4} - #non-RCC is ranked at -1, but we assume that we will not handle non-RCC data for now - histologyRanking = { - "Acquired cystic disease-associated renal cell carcinoma": 3, - "Angiomyolipoma": 0, - "Chromophobe renal cell carcinoma": 2, - "Chromophobe renal cell carcinoma, hybrid type": 2, - "Chromophobe renal cell carcinoma, classic": 2, - "Chromophobe renal cell carcinoma, eosinophilic": 2, - "Clear cell papillary renal cell carcinoma": 1, - "Clear cell renal cell carcinoma": 5, - "Collecting duct carcinoma": 6, - "Cystic nephroma": 0, - "Hereditary leiomyomatosis and RCC-associated RCC": 6, - "Metanephric adenoma": 0, - "MiT family translocation renal cell carcinoma": 4, - "Mucinous tubular and spindle cell carcinoma": 3, - "Multilocular cystic renal neoplasm of low malignant potential": 1, - "Oncocytic renal neoplasm, not further classified": 2, - "Oncocytic renal neoplasm, favor RO": 0, - "Oncocytic renal neoplasm, favor ChRCC": 2, - "Oncocytoma": 0, - "Poorly differentiated malignancy": 5, - "Sarcomatoid, NOS": 5, - "Papillary renal cell carcinoma": 3, - "Papillary renal cell carcinoma, type 1": 3, - "Papillary renal cell carcinoma, type 2": 4, - "Renal cell carcinoma, not further classified": 5, - "Renal medullary carcinoma": 6, - "SDH deficient renal cell carcinoma": 3, - "Tubulocystic renal cell carcinoma": 4, - "Unclassified RCC": 5, - - } - - tumors = [] - #collect all tumors info to make a list - if len(surgery) > 0: - for surgery_record in surgery: - surgery_object = request.embed(surgery_record, '@@object') - surgery_path_report = surgery_object['pathology_report'] - if len(surgery_path_report) > 0: - for path_report in surgery_path_report: - path_report_obj = request.embed(path_report, '@@object') - t_stage = path_report_obj.get('t_stage') - n_stage = path_report_obj.get('n_stage') - m_stage = path_report_obj.get('m_stage') - histology = path_report_obj.get('histology') - date = surgery_object.get('date') - # handle missing data. if stage info is missing, rank it the -1(lowest) - # Also we assume non-RCC is already exluded from path report data - if t_stage: - t_stage_rank = tRanking[t_stage] - else: - t_stage_rank = -1 - if n_stage: - n_stage_rank = nRanking[n_stage] - else: - n_stage_rank = -1 - if histology: - histology_rank = histologyRanking[histology] - else: - histology_rank = -1 - histology = path_report_obj.get('histology') - histology_filter = histology_filters.get(histology) - tumor = { - 't_stage': t_stage, - 't_stage_rank': t_stage_rank, - 'n_stage': n_stage, - 'n_stage_rank': n_stage_rank, - 'm_stage': m_stage, - 'histology': histology, - 'histology_filter': histology_filter, - 'histology_rank': histology_rank, - 'tumor_size': path_report_obj.get('tumor_size'), - 'tumor_size_units': path_report_obj.get('tumor_size_units'), - 'path_report': path_report_obj.get('accession'), - 'path_report_id': path_report_obj.get('@id'), - 'surgery': surgery_object.get('accession'), - 'surgery_id': surgery_object.get('@id'), - 'stage': path_report_obj.get('ajcc_tnm_stage'), - 'ajcc_version': path_report_obj.get('ajcc_version'), - 'date': date - } - - tumors.append(tumor) - - if len(tumors) == 1: - dominant_tumor = tumors[0] - elif len(tumors) > 1: - #sort by pT stage - tumors.sort(key=lambda tumor: tumor['t_stage_rank']) - pt_stage_rank = tumors[-1]['t_stage_rank'] - - #remove low pT ranking tummors - tumorsCopy = tumors.copy() - for tumor in tumorsCopy: - if tumor['t_stage_rank'] != pt_stage_rank: - tumors.remove(tumor) - # if only one tumor with highest pT rank left - if len(tumors) == 1: - dominant_tumor = tumors[0] - #if more than one tumor with highest pT rank left - else: - #compare the tumors that have highest pt stage when stage is pt1ab or pt2ab - #remove the low pt rank tumors - - if pt_stage_rank == 2 or pt_stage_rank == 3: - - hasB = False - for tumor in tumors: - - if tumor['t_stage'].endswith('b'): - hasB = True - break - if hasB: - #remove stage endswith a - tumorsCopy = tumors.copy() - for tumor in tumorsCopy: - if tumor['t_stage'].endswith('a'): - tumors.remove(tumor) - #compare the tumors that have highest pt stage when stage is pt3abc - #remove the low pt rank tumors - elif pt_stage_rank == 4: - hasC = False - hasB = False - for tumor in tumors: - if tumor['t_stage'].endswith('b'): - hasB = True - elif tumor['t_stage'].endswith('c'): - hasC = True - if hasC: - #remove stage endswith b and a: - tumorsCopy = tumors.copy() - for tumor in tumorsCopy: - if tumor['t_stage'].endswith('a'): - tumors.remove(tumor) - elif tumor['t_stage'].endswith('b'): - tumors.remove(tumor) - elif hasB: - #remove stage endswith a: - tumorsCopy = tumors.copy() - for tumor in tumorsCopy: - if tumor['t_stage'].endswith('a'): - tumors.remove(tumor) - #now only turely highest pt ranking tumors left - if len(tumors) == 1: - dominant_tumor = tumors[0] - else: - tumors.sort(key=lambda tumor: (tumor['n_stage_rank'], tumor['histology_rank'], tumor['tumor_size'], tumor['tumor_size'])) - tumors.sort(key=lambda tumor: tumor.get('date'), reverse=True) - #check if there are duplicated highest rank tumors - isDuplicated = False - if tumors[-1]['n_stage_rank'] == tumors[-2]['n_stage_rank'] and tumors[-1]['t_stage_rank'] == tumors[-2]['t_stage_rank'] and tumors[-1]['histology_rank'] == tumors[-2]['histology_rank'] and tumors[-1]['tumor_size'] == tumors[-2]['tumor_size'] and tumors[-1]['date'] == tumors[-2]['date']: - isDuplicated = True - - if not isDuplicated: - dominant_tumor = tumors[-1] - - - return dominant_tumor - - @calculated_property(define=True, schema={ - "title": "Surgery Treatment Summary", - "type": "string", - }) - def surgery_summary(self, request, surgery): - if len(surgery) > 0: - surgery_summary = "Yes" - else: - surgery_summary = "No" - return surgery_summary - - - - @calculated_property(schema={ - "title": "Diagnosis", - "description": "Infomation related to diagnosis", - "type": "object", - "additionalProperties": False, - "properties":{ - "first_treatment_date": { - "title": "Date of First Treatment", - "type": "string", - }, - "diagnosis_date": { - "title": "Diagnosis Date", - "description": "Date of Diagnosis", - "type": "string", - }, - "diagnosis_source": { - "title": "Diagnosis Source", - "description": "The source of the diagnosis date", - "type": "string", - }, - "age": { - "title": "Diagnosis age", - "description": "The age of diagnosis.", - "type": "string", - "pattern": "^((unknown)|([1-8]?\\d)|(90 or above))$" - }, - "age_unit": { - "title": "Diagnosis age unit", - "type": "string", - "default": "year", - "enum": [ - "year" - ] - }, - "age_range": { - "title": "Age at Diagnosis", - "type": "string" - }, - "follow_up_duration_range": { - "title": "Follow Up Duration", - "type": "string" - - } - - }, - }) - def diagnosis(self, request, surgery, radiation, medication,labs, vitals, - germline,ihc, consent,medical_imaging,supportive_medication, diagnosis_date_tumor_registry=None, death_date=None): - non_mets_dates = [] - mets_dates = [] - non_surgery_dates = [] - diagnosis_date = "Not available" - diagnosis_source = "Not applicable" - - # if there is Path report for Nephretomy or biopsy - if len(surgery) > 0: - for surgery_record in surgery: - surgery_object = request.embed(surgery_record, '@@object') - surgery_path_report = surgery_object['pathology_report'] - for path_report in surgery_path_report: - path_report_obj = request.embed(path_report, '@@object') - if path_report_obj['path_source_procedure'] == "path_nephrectomy" or path_report_obj['path_source_procedure'] == "path_biopsy": - non_mets_dates.append(surgery_object['date']) - elif path_report_obj['path_source_procedure'] == "path_metastasis": - mets_dates.append(surgery_object['date']) - - if len(non_mets_dates) > 0 : - non_mets_dates.sort(key = lambda date: datetime.strptime(date, '%Y-%m-%d')) - diagnosis_date = non_mets_dates[0] - diagnosis_source = "Pathology report" - elif diagnosis_date_tumor_registry is not None: - diagnosis_date = diagnosis_date_tumor_registry - diagnosis_source = "Tumor registry" - elif len(mets_dates) > 0: - mets_dates.sort(key = lambda date: datetime.strptime(date, '%Y-%m-%d')) - diagnosis_date = mets_dates[0] - diagnosis_source = "Pathology report" - elif len(medication) > 0 or len(radiation) > 0: - diagnosis_source = "Medication or radiation treatment" - for medication_record in medication: - medication_object = request.embed(medication_record, '@@object') - non_surgery_dates.append(medication_object['start_date']) - for radiation_record in radiation: - radiation_object = request.embed(radiation_record, '@@object') - non_surgery_dates.append(radiation_object['start_date']) - non_surgery_dates.sort(key = lambda date: datetime.strptime(date, '%Y-%m-%d')) - diagnosis_date = non_surgery_dates[0] - - age_range = "Unknown" - ageString = "Unknown" - follow_up_duration_range = "Not available" - - if diagnosis_date is not "Not available": - birth_date = datetime.strptime("1800-01-01", "%Y-%m-%d") - end_date = datetime.strptime(diagnosis_date, "%Y-%m-%d") - age = end_date.year - birth_date.year - ((end_date.month, end_date.day) < (birth_date.month, birth_date.day)) - ageString = str(age) - - # For age of diagnosis if age is about 90 - # we make this a string to represent - if age >= 90: - ageString = "90 or above" - - if age >= 80: - age_range = "80+" - elif age >= 60: - age_range = "60 - 79" - elif age >= 40: - age_range = "40 - 59" - elif age >= 20: - age_range = "20 - 39" - else: - age_range = "0 - 19" - - #Add follow up duration: - follow_up_start_date = datetime.strptime(diagnosis_date,"%Y-%m-%d") - last_follow_up_date = last_follow_up_date_fun(request, labs, vitals, germline,ihc, consent,radiation,medical_imaging,medication, supportive_medication, surgery, death_date) - if last_follow_up_date != "Not available": - follow_up_end_date = datetime.strptime(last_follow_up_date,"%Y-%m-%d") - follow_up_duration = (follow_up_end_date-follow_up_start_date).days/365 - - if follow_up_duration >= 5: - follow_up_duration_range = "5+ year" - elif follow_up_duration >= 3: - follow_up_duration_range = "3 - 5 year" - elif follow_up_duration >= 1.5: - follow_up_duration_range = "1.5 - 3 year" - else: - follow_up_duration_range = "0 - 1.5 year" - - - treatment_dates = [] - first_treatment_date = "Not available" - #Get the first_treatment_date - if len(surgery) > 0: - for surgery_record in surgery: - surgery_object = request.embed(surgery_record, '@@object') - treatment_dates.append(surgery_object['date']) - if len(radiation) > 0: - # add radiation dates - for radiation_record in radiation: - radiation_object = request.embed(radiation_record, '@@object') - treatment_dates.append(radiation_object['start_date']) - if len(medication) > 0: - # add medication dates - for medication_record in medication: - medication_object = request.embed(medication_record, '@@object') - treatment_dates.append(medication_object['start_date']) - if len(treatment_dates) > 0: - treatment_dates.sort(key = lambda date: datetime.strptime(date, '%Y-%m-%d')) - first_treatment_date = treatment_dates[0] - - diagnosis = dict() - diagnosis['diagnosis_date'] = diagnosis_date - diagnosis['diagnosis_source'] = diagnosis_source - diagnosis['age'] = ageString - diagnosis['age_unit'] = "year" - diagnosis['age_range'] = age_range - diagnosis['follow_up_duration_range'] = follow_up_duration_range - diagnosis['first_treatment_date'] = first_treatment_date - - return diagnosis - - - @calculated_property(schema={ - "title": "Labs and Vitals", - "description": "Infomation related to Biometrics and Blood Work Within 30 days prior to Date of Nephrectomy", - "type": "object", - "additionalProperties": False, - "properties":{ - "first_Nephrectomy_date_string": { - "title": "Date of First Nephrectomy", - "type": "string" - }, - "BMI": { - "title": "BMI", - "description": "Most recent BMI value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Underweight (<18.4 kg/m2)', - 'Normal (18.5-24.9 kg/m2)', - 'Overweight (25-29.9 kg/m2)', - 'Obese (>30 kg/m2)' - ] - }, - "BMIValue": { - "title": "BMI Value", - "type": "number" - }, - "BMIDate": { - "title": "Date of BMI", - "type": "string" - }, - "BP_Systolic": { - "title": "BP_Systolic", - "description": "Most recent BP_Systolic value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Normal (Below 120 mmHg)', - 'PreHypertension (121 - 139 mmHg)', - 'Hypertension (Above 140 mmHg)' - ] - }, - "BP_SystolicValue": { - "title": "BP_Systolic Value", - "type": "number" - }, - "BP_SystolicDate": { - "title": "Date of BP_Systolic", - "type": "string" - }, - "BP_Diastolic": { - "title": "BP_Diastolic", - "description": "Most recent BP_Diastolic value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Normal (Below 80 mmHg)', - 'PreHypertension (81 - 89 mmHg)', - 'Hypertension (Above 90 mmHg)' - ] - }, - "BP_DiastolicValue": { - "title": "BP_Diastolic Value", - "type": "number" - }, - "BP_DiastolicDate": { - "title": "Date of BP_Diastolic", - "type": "string" - }, - "Hemoglobin": { - "title": "Hemoglobin", - "description": "Most recent Hemoglobin value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Below (12.3 g/dL)', - 'Normal (12.4-17.3 g/dL)', - 'Above (Above 17.4 g/dL)' - ] - }, - "HemoglobinValue": { - "title": "Hemoglobin Value", - "type": "number" - }, - "HemoglobinDate": { - "title": "Date of Hemoglobin", - "type": "string" - }, - "Platelets": { - "title": "Platelets", - "description": "Most recent Platelets value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Below (140 10^3/ul)', - 'Normal Range (141-450 10^3/ul)', - 'Above (Above 451 10^3/ul)' - ] - }, - "PlateletsValue": { - "title": "Platelets Value", - "type": "number" - }, - "PlateletsDate": { - "title": "Date of Platelets", - "type": "string" - }, - "WBC": { - "title": "WBC", - "description": "Most recent WBC value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Below (3.9 10^3/ul)', - 'Normal Range (4.0-10.9 10^3/ul)', - 'Above (11.0 10^3/ul)' - ] - }, - "WBCValue": { - "title": "WBC Value", - "type": "number" - }, - "WBCDate": { - "title": "Date of WBC", - "type": "string" - }, - "Neutrophils": { - "title": "Neutrophils", - "description": "Most recent Neutrophils value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Below (1.4 10^3/ul)', - 'Normal Range (1.5-7.3 10^3/ul)', - 'Above (7.4 10^3/ul)' - ] - }, - "NeutrophilsValue": { - "title": "Neutrophils Value", - "type": "number" - }, - "NeutrophilsDate": { - "title": "Date of Neutrophils", - "type": "string" - }, - "Creatinine": { - "title": "Creatinine", - "description": "Most recent Creatinine value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Below (0.66 mg/dL)', - 'Normal Range (0.67-1.16 mg/dL)', - 'Above (1.17 mg/dL)' - ] - }, - "CreatinineValue": { - "title": "Creatinine Value", - "type": "number" - }, - "CreatinineDate": { - "title": "Date of Creatinine", - "type": "string" - }, - "Calcium": { - "title": "Calcium", - "description": "Most recent Calcium value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Below (8.7 mg/dL)', - 'Normal Range (8.8-10.1 mg/dL)', - 'Above (10.2 mg/dL)' - ] - }, - "CalciumValue": { - "title": "Calcium Value", - "type": "number" - }, - "CalciumDate": { - "title": "Date of Calcium", - "type": "string" - }, - "Albumin": { - "title": "Albumin", - "description": "Most recent Albumin value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Below (3.4 g/dL)', - 'Normal Range (3.5-5.2 g/dL)', - 'Above (5.3 g/dL)' - ] - }, - "AlbuminValue": { - "title": "Albumin Value", - "type": "number" - }, - "AlbuminDate": { - "title": "Date of Albumin", - "type": "string" - }, - "Sodium": { - "title": "Sodium", - "description": "Most recent Sodium value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Below (134 mmol/L)', - 'Normal Range (135-145 mmol/L)', - 'Above (146 mmol/L)' - ] - }, - "SodiumValue": { - "title": "Sodium Value", - "type": "number" - }, - "SodiumDate": { - "title": "Date of Sodium", - "type": "string" - }, - "LDH": { - "title": "LDH", - "description": "Most recent LDH value Within 30 days prior to Date of Nephrectomy", - "type": "string", - "enum": [ - 'Below (134 U/L)', - 'Normal Range (135-225 U/L)', - 'Above (226 U/L)' - ] - }, - "LDHValue": { - "title": "LDH Value", - "type": "number" - }, - "LDHDate": { - "title": "Date of LDH", - "type": "string" - } - - }, - }) - def labs_and_vitals(self, request, surgery,labs, vitals): - nephrectomy_dates = [] - first_Nephrectomy_date_string = "Not Available" - labs_and_vitals = { - 'first_Nephrectomy_date_string': "Not Available", - 'BMI': "Not Available", - 'BP_Systolic': "Not Available", - 'BP_Diastolic': "Not Available", - 'Hemoglobin': "Not Available", - 'Platelets': "Not Available", - 'WBC': "Not Available", - 'Neutrophils': "Not Available", - 'Creatinine': "Not Available", - 'Calcium': "Not Available", - 'Albumin': "Not Available", - 'Sodium': "Not Available", - 'LDH': "Not Available" - } - labs_and_vitals['first_Nephrectomy_date_string'] = first_Nephrectomy_date_string - # find the first Nephrectomy - if len(surgery) > 0: - for surgery_record in surgery: - surgery_object = request.embed(surgery_record, '@@object') - surgery_procedures = surgery_object['surgery_procedure'] - for surgery_procedure in surgery_procedures: - surgery_procedure_obj = request.embed(surgery_procedure, '@@object') - if surgery_procedure_obj['procedure_type'] == "Nephrectomy": - nephrectomy_dates.append(surgery_object['date']) - #compare the date to get the first date if there is nephrectomy_dates - if len(nephrectomy_dates)> 0: - nephrectomy_dates.sort(key = lambda date: datetime.strptime(date, '%Y-%m-%d')) - first_Nephrectomy_date_string = nephrectomy_dates[0] - first_Nephrectomy_date = datetime.strptime(first_Nephrectomy_date_string, '%Y-%m-%d') - labs_and_vitals['first_Nephrectomy_date_string'] = first_Nephrectomy_date_string - - #find dates Within 30 days prior to Date of Nephrectomy - if len(labs)>0: - albuminList = [] - calciumList = [] - creatinineList = [] - hemoglobinList = [] - ldhList = [] - neutrophilsList = [] - plateletsList = [] - sodiumList = [] - wbcList = [] - - for path in labs: - properties = request.embed(path, '@@object?skip_calculated=true') - lab_date_string = properties.get("date") - #compare the date - lab_date = datetime.strptime(lab_date_string, '%Y-%m-%d') - if (first_Nephrectomy_date - lab_date).days < 30 and (first_Nephrectomy_date - lab_date).days >= 0: - lab_type = properties.get("lab") - lab_value = properties.get("value") - lab = { - "date": lab_date_string, - "value": lab_value - } - if lab_type == "ALBUMIN": - albuminList.append(lab) - elif lab_type == "CALCIUM": - calciumList.append(lab) - elif lab_type == "CREATININE": - creatinineList.append(lab) - elif lab_type == "HEMOGLOBIN": - hemoglobinList.append(lab) - elif lab_type == "LACTATE_DE": - ldhList.append(lab) - elif lab_type == "NEUTROPHILS": - neutrophilsList.append(lab) - elif lab_type == "PLATELETS": - plateletsList.append(lab) - elif lab_type == "SODIUM": - sodiumList.append(lab) - else: - wbcList.append(lab) - if len(albuminList) > 0: - albuminList.sort(key = lambda lab: datetime.strptime(lab["date"], '%Y-%m-%d')) - albuminLab = albuminList[-1] - labs_and_vitals["Albumin"] = getLabsAndVitalsRange(albuminLab["value"], 3.5, 5.3, "default", "default", "default") - labs_and_vitals["AlbuminValue"] = albuminLab["value"] - labs_and_vitals["AlbuminDate"] = albuminLab["date"] - if len(calciumList) > 0: - calciumList.sort(key = lambda lab: datetime.strptime(lab["date"], '%Y-%m-%d')) - calciumLab = calciumList[-1] - labs_and_vitals["Calcium"] = getLabsAndVitalsRange(calciumLab["value"], 8.8, 10.2, "default", "default", "default") - labs_and_vitals["CalciumValue"] = calciumLab["value"] - labs_and_vitals["CalciumDate"] = calciumLab["date"] - if len(creatinineList) > 0: - creatinineList.sort(key = lambda lab: datetime.strptime(lab["date"], '%Y-%m-%d')) - creatinineLab = creatinineList[-1] - labs_and_vitals["Creatinine"] = getLabsAndVitalsRange(creatinineLab["value"], 0.67, 1.17, "default", "default", "default") - labs_and_vitals["CreatinineValue"] = creatinineLab["value"] - labs_and_vitals["CreatinineDate"] = creatinineLab["date"] - if len(hemoglobinList) > 0: - hemoglobinList.sort(key = lambda lab: datetime.strptime(lab["date"], '%Y-%m-%d')) - hemoglobinLab = hemoglobinList[-1] - labs_and_vitals["Hemoglobin"] = getLabsAndVitalsRange(hemoglobinLab["value"], 12.4, 17.4, "default", "default", "default") - labs_and_vitals["HemoglobinValue"] = hemoglobinLab["value"] - labs_and_vitals["HemoglobinDate"] = hemoglobinLab["date"] - if len(ldhList) > 0: - ldhList.sort(key = lambda lab: datetime.strptime(lab["date"], '%Y-%m-%d')) - ldhLab = ldhList[-1] - labs_and_vitals["LDH"] = getLabsAndVitalsRange(ldhLab["value"], 135, 226, "default", "default", "default") - labs_and_vitals["LDHValue"] = ldhLab["value"] - labs_and_vitals["LDHDate"] = ldhLab["date"] - if len(neutrophilsList) > 0: - neutrophilsList.sort(key = lambda lab: datetime.strptime(lab["date"], '%Y-%m-%d')) - neutrophilsLab = neutrophilsList[-1] - labs_and_vitals["Neutrophils"] = getLabsAndVitalsRange(neutrophilsLab["value"], 1.5, 7.4, "default", "default", "default") - labs_and_vitals["NeutrophilsValue"] = neutrophilsLab["value"] - labs_and_vitals["NeutrophilsDate"] = neutrophilsLab["date"] - if len(plateletsList) > 0: - plateletsList.sort(key = lambda lab: datetime.strptime(lab["date"], '%Y-%m-%d')) - plateletsLab = plateletsList[-1] - labs_and_vitals["Platelets"] = getLabsAndVitalsRange(plateletsLab["value"], 141, 451, "default", "default", "default") - labs_and_vitals["PlateletsValue"] = plateletsLab["value"] - labs_and_vitals["PlateletsDate"] = plateletsLab["date"] - if len(sodiumList) > 0: - sodiumList.sort(key = lambda lab: datetime.strptime(lab["date"], '%Y-%m-%d')) - sodiumLab = sodiumList[-1] - labs_and_vitals["Sodium"] = getLabsAndVitalsRange(sodiumLab["value"], 135, 146, "default", "default", "default") - labs_and_vitals["SodiumValue"] = sodiumLab["value"] - labs_and_vitals["SodiumDate"] = sodiumLab["date"] - if len(wbcList) > 0: - wbcList.sort(key = lambda lab: datetime.strptime(lab["date"], '%Y-%m-%d')) - wbcLab = wbcList[-1] - labs_and_vitals["WBC"] = getLabsAndVitalsRange(wbcLab["value"], 4, 11, "default", "default", "default") - labs_and_vitals["WBCValue"] = wbcLab["value"] - labs_and_vitals["WBCDate"] = wbcLab["date"] - if len(vitals)>0 : - bmiList = [] - bp_SystolicList = [] - bp_DiastolicList = [] - for path in vitals: - properties = request.embed(path, '@@object?skip_calculated=true') - vital_date_string = properties.get("date") - #compare the date - vital_date = datetime.strptime(vital_date_string, '%Y-%m-%d') - if (first_Nephrectomy_date - vital_date).days <30 and (first_Nephrectomy_date - vital_date).days >= 0: - vital_type = properties.get("vital") - vital_value = properties.get("value") - vital = { - "date": vital_date_string, - "value": vital_value - } - - if vital_type == "BMI": - bmiList.append(vital) - elif vital_type == "BP_DIAS": - bp_DiastolicList.append(vital) - elif vital_type == "BP_SYS": - bp_SystolicList.append(vital) - if len(bmiList) > 0: - bmiList.sort(key = lambda vital: datetime.strptime(vital["date"], '%Y-%m-%d')) - bmiVital = bmiList[-1] - labs_and_vitals["BMIValue"] = bmiVital["value"] - labs_and_vitals["BMIDate"] = bmiVital["date"] - if bmiVital["value"] < 18.5: - labs_and_vitals["BMI"] = "Underweight (< 18.5)" - elif bmiVital["value"] < 25: - labs_and_vitals["BMI"] = "Normal (18.5 >= and < 25)" - elif bmiVital["value"] < 30: - labs_and_vitals["BMI"] = "Overweight (25 >= and < 30)" - else: - labs_and_vitals["BMI"] = "Obese (>= 30)" - if len(bp_SystolicList) > 0: - bp_SystolicList.sort(key = lambda vital: datetime.strptime(vital["date"], '%Y-%m-%d')) - bp_SystolicVital = bp_SystolicList[-1] - labs_and_vitals["BP_Systolic"] = getLabsAndVitalsRange(bp_SystolicVital["value"], 121, 140, 'Normal (< 121)', 'PreHypertension (121 >= and <140)', 'Hypertension (>= 140)') - labs_and_vitals["BP_SystolicValue"] = bp_SystolicVital["value"] - labs_and_vitals["BP_SystolicDate"] = bp_SystolicVital["date"] - if len(bp_DiastolicList) > 0: - bp_DiastolicList.sort(key = lambda vital: datetime.strptime(vital["date"], '%Y-%m-%d')) - bp_DiastolicVital = bp_DiastolicList[-1] - labs_and_vitals["BP_Diastolic"] = getLabsAndVitalsRange(bp_DiastolicVital["value"], 81, 90, 'Normal (< 81)', 'PreHypertension (81 >= and < 90)', 'Hypertension (>= 90)') - labs_and_vitals["BP_DiastolicValue"] = bp_DiastolicVital["value"] - labs_and_vitals["BP_DiastolicDate"] = bp_DiastolicVital["date"] - - return labs_and_vitals - - - - @calculated_property(schema={ - "title": "Metastasis", - "description": "Infomation related to Metastasis", - "type": "array", - "items": { - "title": "Metastasis Record", - "type": "object", - "additionalProperties": False, - "properties":{ - "date": { - "title": "Date of Metastasis Record", - "description": "Date of Metastasis Record", - "type": "string" - }, - "histology_proven": { - "title": "Histology Proven", - "type": "string" - }, - "source": { - "title": "Source", - "description": "Source of the record", - "type": "string", - "enum": [ - "Pathology report", - "Radiation treatment" - ] - }, - "site": { - "title": "Metastatic Site", - "type": "string", - "enum": [ - "Adrenal", - "Bone", - "Brain", - "Liver", - "Lung and pleura", - "Lymph node", - "Other" - ] - } - - }, - } - }) - def metastasis(self, request, surgery, radiation): - records = [] - if len(surgery) > 0: - for surgery_record in surgery: - surgery_object = request.embed(surgery_record, '@@object') - path_reports = surgery_object['pathology_report'] - if len(path_reports) > 0: - for path_report in path_reports: - path_report_obj = request.embed(path_report, '@@object') - if path_report_obj['path_source_procedure'] == 'path_metastasis': - site = path_report_obj['metasis_details']['site'] - if site == "Lung": - site = "Lung and pleura" - record = { - 'date': path_report_obj['date'], - 'source': 'Pathology report', - 'site': site, - 'histology_proven': 'Yes' - } - if record not in records: - records.append(record) - if len(radiation) > 0 : - for radiation_record in radiation: - radiation_object = request.embed(radiation_record, '@@object') - #site mapping - if radiation_object['site_general'] == "Adrenal gland, left" or radiation_object['site_general'] == "Adrenal gland, right": - radiation_site = "Adrenal" - elif radiation_object['site_general'] == "Spine" or radiation_object['site_general'] == "Bone": - radiation_site = "Bone" - elif radiation_object['site_general'] == "Brain" or radiation_object['site_general'] == "Liver": - radiation_site = radiation_object['site_general'] - elif radiation_object['site_general'] == "Connective, subcutaneous and other soft tissues, NOS" or radiation_object['site_general'] == "Retroperitoneum & peritoneum" or radiation_object['site_general'] == "Connective, subcutaneous and other soft tissue, abdomen" or radiation_object['site_general'] == "Gastrointestine/ digestive system & spleen" or radiation_object['site_general'] == "Salivary gland": - radiation_site = "Other" - elif radiation_object['site_general'] == "Lung, right" or radiation_object['site_general'] == "Lung, left" or radiation_object['site_general'] == "Lung": - radiation_site = "Lung and pleura" - elif radiation_object['site_general'] == "Lymph node, NOS" or radiation_object['site_general'] == "Lymph node, intrathoracic" or radiation_object['site_general'] == "Lymph node, intra abdominal": - radiation_site = "Lymph node" - - record = { - 'date': radiation_object['start_date'], - 'source': 'Radiation treatment', - 'site': radiation_site, - 'histology_proven': 'No' - } - if record not in records: - records.append(record) - - return records - - @calculated_property(schema={ - "title": "Medical Imaging Records", - "description": "Medical imaging type within <90 days of every nephrectomy", - "type": "array", - "items": { - "title": "Medical Imaging", - "type": "object", - "additionalProperties": False, - "properties":{ - "date": { - "title": "Date of Medical Imaging", - "description": "Date of Medical Imaging", - "type": "string" - }, - "type": { - "title": "Type of Medical Imaging", - "type": "string" - } - - }, - } - }) - def medical_imaging_before_nephrectomy(self, request, surgery, medical_imaging): - #find all the nephrectomy dates - nephrectomy_dates = [] - records = [] - if len(surgery) > 0: - for surgery_record in surgery: - surgery_object = request.embed(surgery_record, '@@object') - surgery_procedures = surgery_object['surgery_procedure'] - if len(surgery_procedures) > 0: - for surgery_procedure in surgery_procedures: - surgery_procedure_obj = request.embed(surgery_procedure, '@@object') - if surgery_procedure_obj['procedure_type'] == "Nephrectomy": - nephrectomy_dates.append(datetime.strptime(surgery_object['date'], '%Y-%m-%d')) - - - #check imaging only if there is nephrectomy dates - if len(nephrectomy_dates) > 0 and len(medical_imaging) > 0: - imagings = [] - ct_list = [] - mr_list = [] - pet_list = [] - for nephrectomy_date in nephrectomy_dates: - for path in medical_imaging: - imaging = request.embed(path, '@@object?skip_calculated=true') - med_img_date_string = imaging.get("procedure_date") - #compare the date - med_img_date = datetime.strptime(med_img_date_string, '%Y-%m-%d') - if (nephrectomy_date - med_img_date).days <90 and (nephrectomy_date - med_img_date).days >= 0: - imaging_obj = { - "date": med_img_date_string, - "type": imaging.get("type") - } - if imaging.get("type") == "CT Abdomen": - ct_list.append(imaging_obj) - elif imaging.get("type") == "MR Abdomen": - mr_list.append(imaging_obj) - else: - pet_list.append(imaging_obj) - #sort to get the closest img - if len(ct_list) > 0: - ct_list.sort(key = lambda x: datetime.strptime(x["date"], '%Y-%m-%d')) - ct_obj = ct_list[-1] - imagings.append(ct_obj) - if len(mr_list) > 0: - mr_list.sort(key = lambda x: datetime.strptime(x["date"], '%Y-%m-%d')) - mr_obj = mr_list[-1] - imagings.append(mr_obj) - if len(pet_list) > 0: - pet_list.sort(key = lambda x: datetime.strptime(x["date"], '%Y-%m-%d')) - pet_obj = pet_list[-1] - imagings.append(pet_obj) - if len(imagings)> 0: - records = records + imagings - - - return records - - - matrix = { - 'y': { - 'facets': [ - 'status', - 'sex', - 'race', - 'ethnicity', - 'dominant_tumor', - 'surgery_summary', - 'radiation_summary', - 'medications.name', - 'surgery.surgery_procedure.surgery_type', - 'surgery.hospital_location', - 'surgery.pathology_report.tumor_size_range', - 'surgery.pathology_report.ajcc_p_stage', - 'surgery.pathology_report.n_stage', - 'surgery.pathology_report.m_stage', - 'surgery.pathology_report.ajcc_tnm_stage', - 'germline_summary', - 'ihc.antibody', - 'ihc.result', - ], - 'group_by': ['race', 'sex'], - 'label': 'race', - }, - 'x': { - 'facets': [ - 'surgery.pathology_report.histology_filter', - ], - 'group_by': 'surgery.pathology_report.histology_filter', - 'label': 'histology', + @calculated_property(schema={ + "title": "Fvp_c1v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_c1v3" }, - } + }) + def fvp_c1v3(self, request, fvp_c1v3): + return paths_filtered_by_status(request, fvp_c1v3) - summary_matrix = { - 'x': { - 'group_by': 'surgery.pathology_report.histology_filter' + @calculated_property(schema={ + "title": "Fvp_c2v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_c2v3" }, - 'y': { - 'group_by': ['race', 'sex'] - } - } + }) + def fvp_c2v3(self, request, fvp_c2v3): + return paths_filtered_by_status(request, fvp_c2v3) - summary_data = { - 'y': { - 'facets': [ + @calculated_property(schema={ + "title": "Fvp_d1v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_d1v3" + }, + }) + def fvp_d1v3(self, request, fvp_d1v3): + return paths_filtered_by_status(request, fvp_d1v3) - 'status', - 'sex', - 'race', - 'radiation_summary', + @calculated_property(schema={ + "title": "Fvp_d2v3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_d2v3" + }, + }) + def fvp_d2v3(self, request, fvp_d2v3): + return paths_filtered_by_status(request, fvp_d2v3) - ], - 'group_by': ['sex', 'radiation_summary'], - 'label': 'Sex', + @calculated_property(schema={ + "title": "Fvp_z1xv3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_z1xv3" }, - 'x': { - 'facets': [ - 'race', - ], - 'group_by': 'race', - 'label': 'Race', + }) + def fvp_z1xv3(self, request, fvp_z1xv3): + return paths_filtered_by_status(request, fvp_z1xv3) + # == == == == == == == == == == == == == == =version 2 == == == == == == == == == == == == == == == == == == == = + @calculated_property(schema={ + "title": "Ivp_a1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_a1v2" }, - 'grouping': ['sex', 'status'], - } - - + }) + def ivp_a1v2(self, request, ivp_a1v2): + return paths_filtered_by_status(request, ivp_a1v2) - @calculated_property(condition='surgery', schema={ - "title": "surgery procedure nephrectomy robotic assist", + @calculated_property(schema={ + "title": "Ivp_a2v2", "type": "array", "items": { - "type": "string", + "type": 'string', + "linkTo": "Ivp_a2v2" }, }) + def ivp_a2v2(self, request, ivp_a2v2): + return paths_filtered_by_status(request, ivp_a2v2) - def sur_nephr_robotic_assist(self, request, surgery): - - sp_obj_array = [] - array=[] - if surgery is not None: - for so in surgery: - so_object = request.embed(so, "@@object") - sp_obj_array = so_object.get("surgery_procedure") - - if sp_obj_array is not None: - for spo in sp_obj_array: - sp_obj = request.embed(spo, "@@object") - sp_proc_type=sp_obj.get("procedure_type") - if sp_proc_type=="Nephrectomy": - sp_nephr_robotic=sp_obj.get("nephrectomy_details").get("robotic_assist") - array.append(sp_nephr_robotic) - else: - continue - - robotic_assist=[] - - for logic in array: - if logic is True: - robotic_assist.append("Yes") - else: - robotic_assist.append("No") - return robotic_assist - - - @calculated_property(condition='surgery', schema={ - "title": "surgery pathology tumor size calculation", + @calculated_property(schema={ + "title": "Ivp_a3v2", "type": "array", "items": { - "type": "string", + "type": 'string', + "linkTo": "Ivp_a3v2" }, }) + def ivp_a3v2(self, request, ivp_a3v2): + return paths_filtered_by_status(request, ivp_a3v2) - def sur_path_tumor_size(self, request, surgery): - - - sp_obj_array = [] - array=[] - if surgery is not None: - for so in surgery: - so_object = request.embed(so, "@@object") - sp_obj_array = so_object.get("pathology_report") - - if sp_obj_array is not None: - for spo in sp_obj_array: - sp_obj = request.embed(spo, "@@object") - sp_tumor_size=sp_obj.get("tumor_size") - - array.append(sp_tumor_size) - - tumor_size_range = [] - for tumor_size in array: - if tumor_size is not None: - if 0 <= tumor_size < 3: - tumor_size_range.append("0-3 cm") - elif 3 <= tumor_size < 7: - tumor_size_range.append("3-7 cm") - elif 7 <= tumor_size < 10: - tumor_size_range.append("7-10 cm") - else: - tumor_size_range.append("10+ cm") - return tumor_size_range - - -@collection( - name='lab-results', - properties={ - 'title': 'Lab results', - 'description': 'Lab results pages', + @calculated_property(schema={ + "title": "Ivp_a4v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_a4v2" + }, }) -class LabResult(Item): - item_type = 'lab_results' - schema = load_schema('encoded:schemas/lab_results.json') - embeded = [] - + def ivp_a4v2(self, request, ivp_a4v2): + return paths_filtered_by_status(request, ivp_a4v2) -@collection( - name='vital-results', - properties={ - 'title': 'Vital results', - 'description': 'Vital results pages', + @calculated_property(schema={ + "title": "Ivp_a5v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_a5v2" + }, }) -class VitalResult(Item): - item_type = 'vital_results' - schema = load_schema('encoded:schemas/vital_results.json') - embeded = [] - + def ivp_a5v2(self, request, ivp_a5v2): + return paths_filtered_by_status(request, ivp_a5v2) -@collection( - name='germline', - properties={ - 'title': 'Germline Mutations', - 'description': 'Germline Mutation results pages', + @calculated_property(schema={ + "title": "Ivp_b1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b1v2" + }, }) -class Germline(Item): - item_type = 'germline' - schema = load_schema('encoded:schemas/germline.json') - embeded = [] - + def ivp_b1v2(self, request, ivp_b1v2): + return paths_filtered_by_status(request, ivp_b1v2) -@collection( - name='ihc', - properties={ - 'title': 'IHC results', - 'description': 'IHC results pages', + @calculated_property(schema={ + "title": "Ivp_b2v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b2v2" + }, }) -class Ihc(Item): - item_type = 'ihc' - schema = load_schema('encoded:schemas/ihc.json') - embeded = [] + def ivp_b2v2(self, request, ivp_b2v2): + return paths_filtered_by_status(request, ivp_b2v2) -@collection( - name='consent', - properties={ - 'title': 'Consent', - 'description': 'Consent results pages', + @calculated_property(schema={ + "title": "Ivp_b3v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b3v2" + }, }) -class Consent(Item): - item_type = 'consent' - schema = load_schema('encoded:schemas/consent.json') - embeded = [] + def ivp_b3v2(self, request, ivp_b3v2): + return paths_filtered_by_status(request, ivp_b3v2) + @calculated_property(schema={ + "title": "Ivp_b4v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b4v2" + }, + }) + def ivp_b4v2(self, request, ivp_b4v2): + return paths_filtered_by_status(request, ivp_b4v2) -@collection( - name='radiation', - properties={ - 'title': 'Radiation treatment', - 'description': 'Radiation treatment results pages', - }) -class Radiation(Item): - item_type = 'radiation' - schema = load_schema('encoded:schemas/radiation.json') - embeded = [] - - @calculated_property(condition='dose', schema={ - "title": "Dosage per Fraction", - "type": "number", - }) - def dose_per_fraction(self, request, dose, fractions): - dose_per_fraction = dose/fractions - return dose_per_fraction - - @calculated_property(condition='dose', schema={ - "title": "Dosage range per fraction", - "type": "string", - - }) - def dose_range(self, request, dose, fractions): - dose_per_fraction = dose/fractions - if dose_per_fraction < 2000: - return "200 - 2000" - elif dose_per_fraction < 4000: - return "2000 - 4000" - else: - return "4000 - 6000" - - @calculated_property(condition='fractions', schema={ - "title": "Fractions range", - "type": "string", - - }) - def fractions_range(self, request, fractions): - - if fractions < 5: - return "1 - 5" - elif fractions < 10: - return "5 - 10" - elif fractions < 15: - return "10 - 15" - else: - return "15 and up" - - - @calculated_property(schema={ - "title": "Radiation Site Consolidated", - "type": "string", - "enum": [ - "Adrenal", - "Bone", - "Brain", - "Liver", - "Lung", - "Lymph node", - "Other", - "Kidney" - ], - }) - def site_consolidated(self, request, site_general): - - if site_general == "Adrenal gland, left" or site_general == "Adrenal gland, right": - return "Adrenal" - elif site_general == "Spine" or site_general == "Bone": - return "Bone" - elif site_general == "Brain" or site_general == "Liver": - return site_general - elif site_general == "Connective, subcutaneous and other soft tissues, NOS" or site_general == "Retroperitoneum & peritoneum" or site_general == "Connective, subcutaneous and other soft tissue, abdomen" or site_general == "Gastrointestine/ digestive system & spleen" or site_general == "Salivary gland": - return "Other" - elif site_general == "Lung, right" or site_general == "Lung, left" or site_general == "Lung": - return"Lung and pleura" - elif site_general == "Lymph node, NOS" or site_general == "Lymph node, intrathoracic" or site_general == "Lymph node, intra abdominal": - return "Lymph node" - else: - return "Kidney" + @calculated_property(schema={ + "title": "Ivp_b5v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b5v2" + }, + }) + def ivp_b5v2(self, request, ivp_b5v2): + return paths_filtered_by_status(request, ivp_b5v2) + @calculated_property(schema={ + "title": "Ivp_b6v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b6v2" + }, + }) + def ivp_b6v2(self, request, ivp_b6v2): + return paths_filtered_by_status(request, ivp_b6v2) + @calculated_property(schema={ + "title": "Ivp_b7v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b7v2" + }, + }) + def ivp_b7v2(self, request, ivp_b7v2): + return paths_filtered_by_status(request, ivp_b7v2) -@collection( - name='medical_imaging', - properties={ - 'title': 'Medical imaging', - 'description': 'Medical imaging results pages', + @calculated_property(schema={ + "title": "Ivp_b8v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b8v2" + }, }) -class MedicalImaging(Item): - item_type = 'medical-imaging' - schema = load_schema('encoded:schemas/medical_imaging.json') - embeded = [] + def ivp_b8v2(self, request, ivp_b8v2): + return paths_filtered_by_status(request, ivp_b8v2) + @calculated_property(schema={ + "title": "Ivp_b9v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b9v2" + }, + }) + def ivp_b9v2(self, request, ivp_b9v2): + return paths_filtered_by_status(request, ivp_b9v2) -@collection( - name='medication', - properties={ - 'title': 'Medications', - 'description': 'Medication results pages', + @calculated_property(schema={ + "title": "Ivp_c1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_c1v2" + }, }) -class Medication(Item): - item_type = 'medication' - schema = load_schema('encoded:schemas/medication.json') - embeded = [] + def ivp_c1v2(self, request, ivp_c1v2): + return paths_filtered_by_status(request, ivp_c1v2) + @calculated_property(schema={ + "title": "Ivp_d1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_d1v2" + }, + }) + def ivp_d1v2(self, request, ivp_d1v2): + return paths_filtered_by_status(request, ivp_d1v2) -@collection( - name='supportive-medication', - properties={ - 'title': 'Supportive Medications', - 'description': 'Supportive Medication results pages', - }) -class SupportiveMedication(Item): - item_type = 'supportive_medication' - schema = load_schema('encoded:schemas/supportive_medication.json') - embeded = [] - - -@property -def __name__(self): - return self.name() - - -@view_config(context=Patient, permission='view', request_method='GET', name='page') -def patient_page_view(context, request): - if request.has_permission('view_details'): - properties = item_view_object(context, request) - else: - item_path = request.resource_path(context) - properties = request.embed(item_path, '@@object') - for path in context.embedded: - expand_path(request, properties, path) - return properties - - -@view_config(context=Patient, permission='view', request_method='GET', - name='object') -def patient_basic_view(context, request): - properties = item_view_object(context, request) - filtered = {} - for key in ['@id', '@type', 'accession', 'uuid', 'sex', 'ethnicity', 'race', 'diagnosis', 'last_follow_up_date', 'status', 'dominant_tumor', 'ihc','labs', 'vitals', 'germline', 'germline_summary','radiation', 'radiation_summary', 'vital_status', 'medical_imaging', - 'medications','medication_range', 'supportive_medications', 'biospecimen', 'surgery_summary','sur_nephr_robotic_assist']: - try: - filtered[key] = properties[key] - except KeyError: - pass - return filtered + @calculated_property(schema={ + "title": "Ivp_e1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_e1v2" + }, + }) + def ivp_e1v2(self, request, ivp_e1v2): + return paths_filtered_by_status(request, ivp_e1v2) + + @calculated_property(schema={ + "title": "Ivp_z1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_z1v2" + }, + }) + def ivp_z1v2(self, request, ivp_z1v2): + return paths_filtered_by_status(request, ivp_z1v2) + + @calculated_property(schema={ + "title": "Fvp_a1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a1v2" + }, + }) + def fvp_a1v2(self, request, fvp_a1v2): + return paths_filtered_by_status(request, fvp_a1v2) + + @calculated_property(schema={ + "title": "Fvp_a2v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a2v2" + }, + }) + def fvp_a2v2(self, request, fvp_a2v2): + return paths_filtered_by_status(request, fvp_a2v2) + + @calculated_property(schema={ + "title": "Fvp_a3v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a3v2" + }, + }) + def fvp_a3v2(self, request, fvp_a3v2): + return paths_filtered_by_status(request, fvp_a3v2) + + @calculated_property(schema={ + "title": "Fvp_a4v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a4v2" + }, + }) + def fvp_a4v2(self, request, fvp_a4v2): + return paths_filtered_by_status(request, fvp_a4v2) + + @calculated_property(schema={ + "title": "Fvp_a5v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a5v2" + }, + }) + def fvp_a5v2(self, request, fvp_a5v2): + return paths_filtered_by_status(request, fvp_a5v2) + + @calculated_property(schema={ + "title": "Fvp_b1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b1v2" + }, + }) + def fvp_b1v2(self, request, fvp_b1v2): + return paths_filtered_by_status(request, fvp_b1v2) + + @calculated_property(schema={ + "title": "Fvp_b2v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b2v2" + }, + }) + def fvp_b2v2(self, request, fvp_b2v2): + return paths_filtered_by_status(request, fvp_b2v2) + + @calculated_property(schema={ + "title": "Fvp_b3v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b3v2" + }, + }) + def fvp_b3v2(self, request, fvp_b3v2): + return paths_filtered_by_status(request, fvp_b3v2) + + @calculated_property(schema={ + "title": "Fvp_b4v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b4v2" + }, + }) + def fvp_b4v2(self, request, fvp_b4v2): + return paths_filtered_by_status(request, fvp_b4v2) + + @calculated_property(schema={ + "title": "Fvp_b5v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b5v2" + }, + }) + def fvp_b5v2(self, request, fvp_b5v2): + return paths_filtered_by_status(request, fvp_b5v2) + + @calculated_property(schema={ + "title": "Fvp_b6v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b6v2" + }, + }) + def fvp_b6v2(self, request, fvp_b6v2): + return paths_filtered_by_status(request, fvp_b6v2) + + @calculated_property(schema={ + "title": "Fvp_b7v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b7v2" + }, + }) + def fvp_b7v2(self, request, fvp_b7v2): + return paths_filtered_by_status(request, fvp_b7v2) + + @calculated_property(schema={ + "title": "Fvp_b8v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b8v2" + }, + }) + def fvp_b8v2(self, request, fvp_b8v2): + return paths_filtered_by_status(request, fvp_b8v2) + + @calculated_property(schema={ + "title": "Fvp_b9v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b9v2" + }, + }) + def fvp_b9v2(self, request, fvp_b9v2): + return paths_filtered_by_status(request, fvp_b9v2) + + @calculated_property(schema={ + "title": "Fvp_c1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_c1v2" + }, + }) + def fvp_c1v2(self, request, fvp_c1v2): + return paths_filtered_by_status(request, fvp_c1v2) + + @calculated_property(schema={ + "title": "Fvp_d1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_d1v2" + }, + }) + def fvp_d1v2(self, request, fvp_d1v2): + return paths_filtered_by_status(request, fvp_d1v2) + + @calculated_property(schema={ + "title": "Fvp_e1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_e1v2" + }, + }) + def fvp_e1v2(self, request, fvp_e1v2): + return paths_filtered_by_status(request, fvp_e1v2) + + @calculated_property(schema={ + "title": "Fvp_z1v2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_z1v2" + }, + }) + def fvp_z1v2(self, request, fvp_z1v2): + return paths_filtered_by_status(request, fvp_z1v2) + +# == == ==============================version 1======================================== + @calculated_property(schema={ + "title": "Ivp_a1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_a1v1" + }, + }) + def ivp_a1v1(self, request, ivp_a1v1): + return paths_filtered_by_status(request, ivp_a1v1) + + @calculated_property(schema={ + "title": "Ivp_a2v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_a2v1" + }, + }) + def ivp_a2v1(self, request, ivp_a2v1): + return paths_filtered_by_status(request, ivp_a2v1) + + @calculated_property(schema={ + "title": "Ivp_a3v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_a3v1" + }, + }) + def ivp_a3v1(self, request, ivp_a3v1): + return paths_filtered_by_status(request, ivp_a3v1) + + @calculated_property(schema={ + "title": "Ivp_a4v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_a4v1" + }, + }) + def ivp_a4v1(self, request, ivp_a4v1): + return paths_filtered_by_status(request, ivp_a4v1) + + @calculated_property(schema={ + "title": "Ivp_a5v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_a5v1" + }, + }) + def ivp_a5v1(self, request, ivp_a5v1): + return paths_filtered_by_status(request, ivp_a5v1) + + @calculated_property(schema={ + "title": "Ivp_b1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b1v1" + }, + }) + def ivp_b1v1(self, request, ivp_b1v1): + return paths_filtered_by_status(request, ivp_b1v1) + + @calculated_property(schema={ + "title": "Ivp_b2v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b2v1" + }, + }) + def ivp_b2v1(self, request, ivp_b2v1): + return paths_filtered_by_status(request, ivp_b2v1) + + @calculated_property(schema={ + "title": "Ivp_b3v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b3v1" + }, + }) + def ivp_b3v1(self, request, ivp_b3v1): + return paths_filtered_by_status(request, ivp_b3v1) + + @calculated_property(schema={ + "title": "Ivp_b4v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b4v1" + }, + }) + def ivp_b4v1(self, request, ivp_b4v1): + return paths_filtered_by_status(request, ivp_b4v1) + + @calculated_property(schema={ + "title": "Ivp_b5v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b5v1" + }, + }) + def ivp_b5v1(self, request, ivp_b5v1): + return paths_filtered_by_status(request, ivp_b5v1) + + @calculated_property(schema={ + "title": "Ivp_b6v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b6v1" + }, + }) + def ivp_b6v1(self, request, ivp_b6v1): + return paths_filtered_by_status(request, ivp_b6v1) + + @calculated_property(schema={ + "title": "Ivp_b7v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b7v1" + }, + }) + def ivp_b7v1(self, request, ivp_b7v1): + return paths_filtered_by_status(request, ivp_b7v1) + + @calculated_property(schema={ + "title": "Ivp_b8v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b8v1" + }, + }) + def ivp_b8v1(self, request, ivp_b8v1): + return paths_filtered_by_status(request, ivp_b8v1) + + @calculated_property(schema={ + "title": "Ivp_b9v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_b9v1" + }, + }) + def ivp_b9v1(self, request, ivp_b9v1): + return paths_filtered_by_status(request, ivp_b9v1) + + @calculated_property(schema={ + "title": "Ivp_c1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_c1v1" + }, + }) + def ivp_c1v1(self, request, ivp_c1v1): + return paths_filtered_by_status(request, ivp_c1v1) + + @calculated_property(schema={ + "title": "Ivp_d1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_d1v1" + }, + }) + def ivp_d1v1(self, request, ivp_d1v1): + return paths_filtered_by_status(request, ivp_d1v1) + + @calculated_property(schema={ + "title": "Ivp_e1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_e1v1" + }, + }) + def ivp_e1v1(self, request, ivp_e1v1): + return paths_filtered_by_status(request, ivp_e1v1) + + @calculated_property(schema={ + "title": "Ivp_z1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Ivp_z1v1" + }, + }) + def ivp_z1v1(self, request, ivp_z1v1): + return paths_filtered_by_status(request, ivp_z1v1) + + @calculated_property(schema={ + "title": "Fvp_a1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a1v1" + }, + }) + def fvp_a1v1(self, request, fvp_a1v1): + return paths_filtered_by_status(request, fvp_a1v1) + + @calculated_property(schema={ + "title": "Fvp_a2v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a2v1" + }, + }) + def fvp_a2v1(self, request, fvp_a2v1): + return paths_filtered_by_status(request, fvp_a2v1) + + @calculated_property(schema={ + "title": "Fvp_a3v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a3v1" + }, + }) + def fvp_a3v1(self, request, fvp_a3v1): + return paths_filtered_by_status(request, fvp_a3v1) + + @calculated_property(schema={ + "title": "Fvp_a4v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a4v1" + }, + }) + def fvp_a4v1(self, request, fvp_a4v1): + return paths_filtered_by_status(request, fvp_a4v1) + + @calculated_property(schema={ + "title": "Fvp_a5v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_a5v1" + }, + }) + def fvp_a5v1(self, request, fvp_a5v1): + return paths_filtered_by_status(request, fvp_a5v1) + + @calculated_property(schema={ + "title": "Fvp_b1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b1v1" + }, + }) + def fvp_b1v1(self, request, fvp_b1v1): + return paths_filtered_by_status(request, fvp_b1v1) + + @calculated_property(schema={ + "title": "Fvp_b2v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b2v1" + }, + }) + def fvp_b2v1(self, request, fvp_b2v1): + return paths_filtered_by_status(request, fvp_b2v1) + + @calculated_property(schema={ + "title": "Fvp_b3v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b3v1" + }, + }) + def fvp_b3v1(self, request, fvp_b3v1): + return paths_filtered_by_status(request, fvp_b3v1) + + @calculated_property(schema={ + "title": "Fvp_b4v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b4v1" + }, + }) + def fvp_b4v1(self, request, fvp_b4v1): + return paths_filtered_by_status(request, fvp_b4v1) + + @calculated_property(schema={ + "title": "Fvp_b5v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b5v1" + }, + }) + def fvp_b5v1(self, request, fvp_b5v1): + return paths_filtered_by_status(request, fvp_b5v1) + + @calculated_property(schema={ + "title": "Fvp_b6v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b6v1" + }, + }) + def fvp_b6v1(self, request, fvp_b6v1): + return paths_filtered_by_status(request, fvp_b6v1) + + @calculated_property(schema={ + "title": "Fvp_b7v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b7v1" + }, + }) + def fvp_b7v1(self, request, fvp_b7v1): + return paths_filtered_by_status(request, fvp_b7v1) + + @calculated_property(schema={ + "title": "Fvp_b8v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b8v1" + }, + }) + def fvp_b8v1(self, request, fvp_b8v1): + return paths_filtered_by_status(request, fvp_b8v1) + + @calculated_property(schema={ + "title": "Fvp_b9v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_b9v1" + }, + }) + def fvp_b9v1(self, request, fvp_b9v1): + return paths_filtered_by_status(request, fvp_b9v1) + + @calculated_property(schema={ + "title": "Fvp_c1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_c1v1" + }, + }) + def fvp_c1v1(self, request, fvp_c1v1): + return paths_filtered_by_status(request, fvp_c1v1) + + @calculated_property(schema={ + "title": "Fvp_d1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_d1v1" + }, + }) + def fvp_d1v1(self, request, fvp_d1v1): + return paths_filtered_by_status(request, fvp_d1v1) + + @calculated_property(schema={ + "title": "Fvp_e1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_e1v1" + }, + }) + def fvp_e1v1(self, request, fvp_e1v1): + return paths_filtered_by_status(request, fvp_e1v1) + + @calculated_property(schema={ + "title": "Fvp_z1v1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Fvp_z1v1" + }, + }) + def fvp_z1v1(self, request, fvp_z1v1): + return paths_filtered_by_status(request, fvp_z1v1) +# == == ==========================tvp and local forms======================================= + + @calculated_property(schema={ + "title": "Tvp_a1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Tvp_a1" + }, + }) + def tvp_a1(self, request, tvp_a1): + return paths_filtered_by_status(request, tvp_a1) + + @calculated_property(schema={ + "title": "Tvp_a2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Tvp_a2" + }, + }) + def tvp_a2(self, request, tvp_a2): + return paths_filtered_by_status(request, tvp_a2) + + @calculated_property(schema={ + "title": "Tvp_a3", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Tvp_a3" + }, + }) + def tvp_a3(self, request, tvp_a3): + return paths_filtered_by_status(request, tvp_a3) + + @calculated_property(schema={ + "title": "Tvp_a4", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Tvp_a4" + }, + }) + def tvp_a4(self, request, tvp_a4): + return paths_filtered_by_status(request, tvp_a4) + + @calculated_property(schema={ + "title": "Tvp_b4", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Tvp_b4" + }, + }) + def tvp_b4(self, request, tvp_b4): + return paths_filtered_by_status(request, tvp_b4) + + @calculated_property(schema={ + "title": "Tvp_b5", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Tvp_b5" + }, + }) + def tvp_b5(self, request, tvp_b5): + return paths_filtered_by_status(request, tvp_b5) + + @calculated_property(schema={ + "title": "Tvp_b7", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Tvp_b7" + }, + }) + def tvp_b7(self, request, tvp_b7): + return paths_filtered_by_status(request, tvp_b7) + + @calculated_property(schema={ + "title": "Tvp_d2", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Tvp_d2" + }, + }) + def tvp_d2(self, request, tvp_d2): + return paths_filtered_by_status(request, tvp_d2) + + @calculated_property(schema={ + "title": "Tvp_t1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Tvp_t1" + }, + }) + def tvp_t1(self, request, tvp_t1): + return paths_filtered_by_status(request, tvp_t1) + + @calculated_property(schema={ + "title": "Tvp_z1x", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Tvp_z1x" + }, + }) + def tvp_z1x(self, request, tvp_z1x): + return paths_filtered_by_status(request, tvp_z1x) + + @calculated_property(schema={ + "title": "M1", + "type": "array", + "items": { + "type": 'string', + "linkTo": "M1" + }, + }) + def m1(self, request, m1): + return paths_filtered_by_status(request, m1) + + @calculated_property(schema={ + "title": "Concussion_history", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Concussion_history" + }, + }) + def concussion_history(self, request, concussion_history): + return paths_filtered_by_status(request, concussion_history) + + @calculated_property(schema={ + "title": "Concussion_history_follow_up", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Concussion_history_follow_up" + }, + }) + def concussion_history_follow_up(self, request, concussion_history_follow_up): + return paths_filtered_by_status(request, concussion_history_follow_up) + + @calculated_property(schema={ + "title": "Moca", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Moca" + }, + }) + def moca(self, request, moca): + return paths_filtered_by_status(request, moca) + + @calculated_property(schema={ + "title": "Updrs", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Updrs" + }, + }) + def updrs(self, request, updrs): + return paths_filtered_by_status(request, updrs) + + @calculated_property(schema={ + "title": "Visit_contact", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Visit_contact" + }, + }) + def visit_contact(self, request, visit_contact): + return paths_filtered_by_status(request, visit_contact) + + @calculated_property(schema={ + "title": "Physical_exam", + "type": "array", + "items": { + "type": 'string', + "linkTo": "Physical_exam" + }, + }) + def physical_exam(self, request, physical_exam): + return paths_filtered_by_status(request, physical_exam) diff --git a/src/encoded/types/physical_exam.py b/src/encoded/types/physical_exam.py new file mode 100644 index 0000000000..a2551bc8b5 --- /dev/null +++ b/src/encoded/types/physical_exam.py @@ -0,0 +1,32 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re + + +@collection( + name="physical_exams", + unique_key="uuid", + properties={ + "title": "Physical examination Forms", + "description": "Local forms Physical examination patients results pages", + }, +) +class Physical_exam(Item): + item_type = "physical_exam" + schema = load_schema("encoded:schemas/physical_exam.json") + embedded = [ + + ] + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/surgery.py b/src/encoded/types/surgery.py deleted file mode 100644 index 40f474f8f6..0000000000 --- a/src/encoded/types/surgery.py +++ /dev/null @@ -1,109 +0,0 @@ -from snovault import ( - calculated_property, - collection, - load_schema, -) -from .base import ( - Item, - # SharedItem, - paths_filtered_by_status, -) -from pyramid.traversal import find_root, resource_path -import re - - -@collection( - name="surgeries", - unique_key="accession", - properties={ - "title": "Surgery Report", - "description": "Surgery and pathology report", - }, -) -class Surgery(Item): - item_type = "surgery" - schema = load_schema("encoded:schemas/surgery.json") - name_key = "accession" - - embedded = [ - "pathology_report", - "surgery_procedure", - "pathology_report.ihc" - ] - rev = { - "pathology_report": ("PathologyReport", "surgery"), - "surgery_procedure": ("SurgeryProcedure", "surgery"), - } - audit_inherit = [] - set_status_up = [] - set_status_down = [] - - @calculated_property( - schema={ - "title": "Surgery Procedures", - "type": "array", - "items": { - "type": "string", - "linkTo": "SurgeryProcedure", - }, - } - ) - def surgery_procedure(self, request, surgery_procedure): - return paths_filtered_by_status(request, surgery_procedure) - - @calculated_property( - condition="surgery_procedure", - schema={ - "title": "Nephrectomy Robotic Assist", - "type": "array", - "items": { - "type": "string", - }, - }, - ) - def nephr_robotic_assist(self, request, surgery_procedure): - - for sp in surgery_procedure: - - sp_object = request.embed(sp, "@@object") - nephr_details=sp_object.get('nephrectomy_details') - robotic_assist_type = [] - - if nephr_details is not None: - nephr_robotic_assist = sp_object.get('nephrectomy_details').get('robotic_assist') - if nephr_robotic_assist is True: - robotic_assist_type.append("Yes") - else: - robotic_assist_type.append("No") - - return robotic_assist_type - - @calculated_property( - schema={ - "title": "Pathology Report", - "type": "array", - "items": { - "type": "string", - "linkTo": "PathologyReport", - }, - } - ) - def pathology_report(self, request, pathology_report): - return paths_filtered_by_status(request, pathology_report) - - -@collection( - name="surgery-procedures", - properties={ - "title": "Surgery procedures", - "description": "Surgery procedures results pages", - }, -) -class SurgeryProcedure(Item): - item_type = "surgery_procedure" - schema = load_schema("encoded:schemas/surgery_procedure.json") - embeded = [] - - - def name(self): - return self.__name__ diff --git a/src/encoded/types/tvp_a1.py b/src/encoded/types/tvp_a1.py new file mode 100644 index 0000000000..783b6fb5dc --- /dev/null +++ b/src/encoded/types/tvp_a1.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="tvp_a1s", + unique_key="uuid", + properties={ + "title": "UDS_TVP_A1 Forms", + "description": "UDS Telephone follow-up visiting patients A1 forms results pages", + }, +) +class Tvp_a1(Item): + item_type = "tvp_a1" + schema = load_schema("encoded:schemas/tvp_a1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/tvp_a2.py b/src/encoded/types/tvp_a2.py new file mode 100644 index 0000000000..c895b91daf --- /dev/null +++ b/src/encoded/types/tvp_a2.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="tvp_a2s", + unique_key="uuid", + properties={ + "title": "UDS_TVP_A2 Forms", + "description": "UDS Telephone follow-up visiting patients A2 forms results pages", + }, +) +class Tvp_a2(Item): + item_type = "tvp_a2" + schema = load_schema("encoded:schemas/tvp_a2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/tvp_a3.py b/src/encoded/types/tvp_a3.py new file mode 100644 index 0000000000..af0a0173b2 --- /dev/null +++ b/src/encoded/types/tvp_a3.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="tvp_a3s", + unique_key="uuid", + properties={ + "title": "UDS_TVP_a3 Forms", + "description": "UDS Telephone follow-up visiting patients a3 forms results pages", + }, +) +class Tvp_a3(Item): + item_type = "tvp_a3" + schema = load_schema("encoded:schemas/tvp_a3.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/tvp_a4.py b/src/encoded/types/tvp_a4.py new file mode 100644 index 0000000000..16a8b2d4f6 --- /dev/null +++ b/src/encoded/types/tvp_a4.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="tvp_a4s", + unique_key="uuid", + properties={ + "title": "UDS_TVP_a4 Forms", + "description": "UDS Telephone follow-up visiting patients a4 forms results pages", + }, +) +class Tvp_a4(Item): + item_type = "tvp_a4" + schema = load_schema("encoded:schemas/tvp_a4.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/tvp_b4.py b/src/encoded/types/tvp_b4.py new file mode 100644 index 0000000000..17f2ec1c87 --- /dev/null +++ b/src/encoded/types/tvp_b4.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="tvp_b4s", + unique_key="uuid", + properties={ + "title": "UDS_TVP_A1 Forms", + "description": "UDS Telephone follow-up visiting patients A1 forms results pages", + }, +) +class Tvp_b4(Item): + item_type = "tvp_b4" + schema = load_schema("encoded:schemas/tvp_b4.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/tvp_b5.py b/src/encoded/types/tvp_b5.py new file mode 100644 index 0000000000..617a453bb9 --- /dev/null +++ b/src/encoded/types/tvp_b5.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="tvp_b5s", + unique_key="uuid", + properties={ + "title": "UDS_TVP_B5 Forms", + "description": "UDS Telephone follow-up visiting patients B5 forms results pages", + }, +) +class Tvp_b5(Item): + item_type = "tvp_b5" + schema = load_schema("encoded:schemas/tvp_b5.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/tvp_b7.py b/src/encoded/types/tvp_b7.py new file mode 100644 index 0000000000..1d91324a3c --- /dev/null +++ b/src/encoded/types/tvp_b7.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="tvp_b7s", + unique_key="uuid", + properties={ + "title": "UDS_TVP_B7 Forms", + "description": "UDS Telephone follow-up visiting patients B7 forms results pages", + }, +) +class Tvp_b7(Item): + item_type = "tvp_b7" + schema = load_schema("encoded:schemas/tvp_b7.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/tvp_d2.py b/src/encoded/types/tvp_d2.py new file mode 100644 index 0000000000..881f841eae --- /dev/null +++ b/src/encoded/types/tvp_d2.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="tvp_d2s", + unique_key="uuid", + properties={ + "title": "UDS_TVP_D2 Forms", + "description": "UDS Telephone follow-up visiting patients D2 forms results pages", + }, +) +class Tvp_d2(Item): + item_type = "tvp_d2" + schema = load_schema("encoded:schemas/tvp_d2.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/tvp_t1.py b/src/encoded/types/tvp_t1.py new file mode 100644 index 0000000000..70f54dd71d --- /dev/null +++ b/src/encoded/types/tvp_t1.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="tvp_t1s", + unique_key="uuid", + properties={ + "title": "UDS_TVP_T1 Forms", + "description": "UDS Telephone follow-up visiting patients T1 forms results pages", + }, +) +class Tvp_t1(Item): + item_type = "tvp_t1" + schema = load_schema("encoded:schemas/tvp_t1.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/tvp_z1x.py b/src/encoded/types/tvp_z1x.py new file mode 100644 index 0000000000..103956d9e6 --- /dev/null +++ b/src/encoded/types/tvp_z1x.py @@ -0,0 +1,55 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re +from pyramid.traversal import find_root, resource_path +from pyramid.security import ( + Allow, + Deny, + Everyone, +) + +ONLY_ADMIN_VIEW_DETAILS = [ + (Allow, 'group.admin', ['view', 'view_details', 'edit']), + (Allow, 'group.read-only-admin', ['view', 'view_details']), + (Allow, 'remoteuser.INDEXER', ['view']), + (Allow, 'remoteuser.EMBED', ['view']), + (Deny, Everyone, ['view', 'view_details', 'edit']), +] + +USER_ALLOW_CURRENT = [ + (Allow, Everyone, 'view'), +] + ONLY_ADMIN_VIEW_DETAILS + +USER_DELETED = [ + (Deny, Everyone, 'visible_for_edit') +] + ONLY_ADMIN_VIEW_DETAILS + +@collection( + name="tvp_z1xs", + unique_key="uuid", + properties={ + "title": "UDS_TVP_Z1X Forms", + "description": "UDS Telephone follow-up visiting patients Z1X forms results pages", + }, +) +class Tvp_z1x(Item): + item_type = "tvp_z1x" + schema = load_schema("encoded:schemas/tvp_z1x.json") + embedded = [ + ] + STATUS_ACL = { + 'released': [(Allow, 'group.verification', ['view_details'])] + } + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/updrs.py b/src/encoded/types/updrs.py new file mode 100644 index 0000000000..b83efa8d2d --- /dev/null +++ b/src/encoded/types/updrs.py @@ -0,0 +1,32 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re + + +@collection( + name="updrses", + unique_key="uuid", + properties={ + "title": "UPDRS Forms", + "description": "Local forms UPDRS patients results pages", + }, +) +class Updrs(Item): + item_type = "updrs" + schema = load_schema("encoded:schemas/updrs.json") + embedded = [ + + ] + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/types/visit_contact.py b/src/encoded/types/visit_contact.py new file mode 100644 index 0000000000..3b64639c5c --- /dev/null +++ b/src/encoded/types/visit_contact.py @@ -0,0 +1,32 @@ +from snovault import ( + calculated_property, + collection, + load_schema, +) +from .base import ( + Item, + # SharedItem, + paths_filtered_by_status, +) +import re + + +@collection( + name="visit_contacts", + unique_key="uuid", + properties={ + "title": "Visit/Contact Forms", + "description": "Local forms Visit/Contact patients results pages", + }, +) +class Visit_contact(Item): + item_type = "visit_contact" + schema = load_schema("encoded:schemas/visit_contact.json") + embedded = [ + + ] + rev = { + } + audit_inherit = [] + set_status_up = [] + set_status_down = [] \ No newline at end of file diff --git a/src/encoded/upgrade/upgrade_data/genetic_modification_step_5_to_6_post.json b/src/encoded/upgrade/upgrade_data/genetic_modification_step_5_to_6_post.json deleted file mode 100644 index ed875e18e4..0000000000 --- a/src/encoded/upgrade/upgrade_data/genetic_modification_step_5_to_6_post.json +++ /dev/null @@ -1,2230 +0,0 @@ -{ - "comment": "https://encodedcc.atlassian.net/browse/ENCD-3504 - manual migration documented here for posterity.", - "rnai_migration": [ - {"uuid": "852c88e2-2efb-4896-a333-29e6a11d9fdc", "aliases:array": "brenton-graveley:AARS-human", "modified_site_by_target_id": "AARS-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000045691", "rnai_sequences:array": "CCGG-GACCTCATTATGCTGGACATT-CTCGAG-AATGTCCAGCATAATGAGGTC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d3dc8ca2-c6ac-4f9f-922a-787b1d9b9493", "aliases:array": "brenton-graveley:AATF-human", "modified_site_by_target_id": "AATF-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000017388", "rnai_sequences:array": "CCGG-CACTTCAGAAATGGCACGATA-CTCGAG-TATCGTGCCATTTCTGAAGTG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "11a56109-f932-4357-82a2-d78f413af135", "aliases:array": "brenton-graveley:ABCF1-human", "modified_site_by_target_id": "ABCF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000157281", "rnai_sequences:array": "CCGG-GCGTCTTAAGAAGCTCTCAGT-CTCGAG-ACTGAGAGCTTCTTAAGACGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "111c24f7-a6c7-4ae7-b731-c404bdea2924", "aliases:array": "brenton-graveley:ACO1-human", "modified_site_by_target_id": "ACO1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000056555", "rnai_sequences:array": "CCGG-CGTATATCAAATCACCACCAT-CTCGAG-ATGGTGGTGATTTGATATACG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0801b51d-008d-4f3c-b05c-df83a0026968", "aliases:array": "brenton-graveley:ADAR-human", "modified_site_by_target_id": "ADAR-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050788", "rnai_sequences:array": "CCGG-GCCCACTGTTATCTTCACTTT-CTCGAG-AAAGTGAAGATAACAGTGGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c41269ea-42d3-453c-9659-7ae2b9d6ac5f", "aliases:array": "brenton-graveley:AGGF1-human", "modified_site_by_target_id": "AGGF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000129956", "rnai_sequences:array": "CCGG-GCTCATCATTAGCTGAAAGTT-CTCGAG-AACTTTCAGCTAATGATGAGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "8d1bdb1f-3207-4025-90b4-a55d61e2d256", "aliases:array": "brenton-graveley:AGO3-human", "modified_site_by_target_id": "AGO3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000007869", "rnai_sequences:array": "CCGG-CGGGAACTTCTTATTCAATTT-CTCGAG-AAATTGAATAAGAAGTTCCCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ce715335-1de7-473d-a415-551b323025f6", "aliases:array": "brenton-graveley:AKAP1-human", "modified_site_by_target_id": "AKAP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000013159", "rnai_sequences:array": "CCGG-GCTCAGATTCTTTCAGCACTT-CTCGAG-AAGTGCTGAAAGAATCTGAGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "9cc605b9-1b2e-491e-af37-401a7b0b486c", "aliases:array": "brenton-graveley:AKAP8-human", "modified_site_by_target_id": "AKAP8-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000037944", "rnai_sequences:array": "CCGG-GCAGAGTCTAAAGACGCTGTT-CTCGAG-AACAGCGTCTTTAGACTCTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ef78f24f-d781-4793-a1fa-caf6a8e29982", "aliases:array": "brenton-graveley:AKAP8L-human", "modified_site_by_target_id": "AKAP8L-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000037999", "rnai_sequences:array": "CCGG-CGTCACTAACAAGACCAAGAA-CTCGAG-TTCTTGGTCTTGTTAGTGACG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "343fb7de-ff24-45a2-8305-844108914be8", "aliases:array": "brenton-graveley:APOBEC3C-human", "modified_site_by_target_id": "APOBEC3C-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000052101", "rnai_sequences:array": "CCGG-GCACATTCTACTTCCAATTTA-CTCGAG-TAAATTGGAAGTAGAATGTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ecc00155-5a58-4d21-bf84-9225b9ed9a48", "aliases:array": "brenton-graveley:AQR-human", "modified_site_by_target_id": "AQR-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074871", "rnai_sequences:array": "CCGG-GCTAGGTTTCAAGTATGACAA-CTCGAG-TTGTCATACTTGAAACCTAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "f5381096-dbed-4acd-ab20-70158a6c493f", "aliases:array": "brenton-graveley:ASCC1-human", "modified_site_by_target_id": "ASCC1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000136137", "rnai_sequences:array": "CCGG-GAATCATTTGATGGCCGAAAT-CTCGAG-ATTTCGGCCATCAAATGATTC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d57ccdfe-9cd0-4be5-b339-f6a46dc67b1b", "aliases:array": "brenton-graveley:ATP5C1-human", "modified_site_by_target_id": "ATP5C1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000043451", "rnai_sequences:array": "CCGG-GCTTCTGAGATGATTGACAAA-CTCGAG-TTTGTCAATCATCTCAGAAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "54e77440-c838-4179-a50f-e262cad70433", "aliases:array": "brenton-graveley:AUH-human", "modified_site_by_target_id": "AUH-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000052449", "rnai_sequences:array": "CCGG-GCTTGGAATAAACAGAGCTTA-CTCGAG-TAAGCTCTGTTTATTCCAAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b72ecbea-2874-439c-953c-3646dfe0efe3", "aliases:array": "brenton-graveley:BCCIP-human", "modified_site_by_target_id": "BCCIP-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000072762", "rnai_sequences:array": "CCGG-GCCTTCTCCTAAGTGAAAGAT-CTCGAG-ATCTTTCACTTAGGAGAAGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ad160dd7-0b0f-43fb-820c-f18817ca4b3c", "aliases:array": "brenton-graveley:BCLAF1-human", "modified_site_by_target_id": "BCLAF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000336784", "rnai_sequences:array": "CCGG-GCGGTTCACTTCGTATCAGAA-CTCGAG-TTCTGATACGAAGTGAACCGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "bd245477-f8a0-48c9-a7de-8371ea9f4724", "aliases:array": "brenton-graveley:BOP1-human", "modified_site_by_target_id": "BOP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000078069", "rnai_sequences:array": "CCGG-CTTGGAGTGGTACGATGACTT-CTCGAG-AAGTCATCGTACCACTCCAAG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d05c32bc-017d-4929-aabe-a113029123a3", "aliases:array": "brenton-graveley:BUD13-human", "modified_site_by_target_id": "BUD13-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074896", "rnai_sequences:array": "CCGG-CGAGTATCTGAAGCGTTACTT-CTCGAG-AAGTAACGCTTCAGATACTCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "3de3fb99-84bb-4d4f-856a-d6f209696bb8", "aliases:array": "brenton-graveley:CALR-human", "modified_site_by_target_id": "CALR-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000019990", "rnai_sequences:array": "CCGG-GCACGGAGACTCAGAATACAA-CTCGAG-TTGTATTCTGAGTCTCCGTGC-TTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "77e38eeb-49fa-4b6d-b1c6-307b8c7e5d17", "aliases:array": "brenton-graveley:CCAR1-human", "modified_site_by_target_id": "CCAR1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000056005", "rnai_sequences:array": "CCGG-GCCCTAGTATGGAAGATTTAT-CTCGAG-ATAAATCTTCCATACTAGGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e45738e7-2018-412a-8f94-81ed57610431", "aliases:array": "brenton-graveley:CCDC124-human", "modified_site_by_target_id": "CCDC124-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000242988", "rnai_sequences:array": "CCGG-ACTGGAAGGACGACGACAAAC-CTCGAG-GTTTGTCGTCGTCCTTCCAGT-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "3dfd3699-e30f-4761-9ac6-f4d90cf49316", "aliases:array": "brenton-graveley:CEBPZ-human", "modified_site_by_target_id": "CEBPZ-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000017946", "rnai_sequences:array": "CCGG-GCAGCCATGATTCTTCTTATT-CTCGAG-AATAAGAAGAATCATGGCTGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "eb133a1b-b20b-46c3-bc14-17ea53c5f8cf", "aliases:array": "brenton-graveley:CELF1-83-human", "modified_site_by_target_id": "CELF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000017283", "rnai_sequences:array": "CCGG-CGGCTTAAAGTGCAGCTCAAA-CTCGAG-TTTGAGCTGCACTTTAAGCCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ff6c3f47-d16d-4cf7-a3d9-b1a913e3a6ac", "aliases:array": "brenton-graveley:CELF1-human", "modified_site_by_target_id": "CELF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000017285", "rnai_sequences:array": "CCGG-CGAGTCATGTTCTCTTCGTTT-CTCGAG-AAACGAAGAGAACATGACTCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "7cde6172-d021-4d20-9850-8f542b8a622b", "aliases:array": "brenton-graveley:CIRBP-human", "modified_site_by_target_id": "CIRBP-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000017265", "rnai_sequences:array": "CCGG-GCCATGAATGGGAAGTCTGTA-CTCGAG-TACAGACTTCCCATTCATGGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "47fb5d3e-20bd-44c9-a4e1-c4757821f631", "aliases:array": "brenton-graveley:CKAP4-human", "modified_site_by_target_id": "CKAP4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000123298", "rnai_sequences:array": "CCGG-CTGGATAGGTTGTTTGTGAAA-CTCGAG-TTTCACAAACAACCTATCCAG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "6d869c3e-1053-4178-afe5-b470f206704c", "aliases:array": "brenton-graveley:CNOT7-human", "modified_site_by_target_id": "CNOT7-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000017870", "rnai_sequences:array": "CCGG-GCTGACTATCAATACCAACTA-CTCGAG-TAGTTGGTATTGATAGTCAGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "410e1feb-0f10-466f-b414-86ae252c9f4a", "aliases:array": "brenton-graveley:CNOT8-human", "modified_site_by_target_id": "CNOT8-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000013408", "rnai_sequences:array": "CCGG-CCACTTCTCTACTCCATTATT-CTCGAG-AATAATGGAGTAGAGAAGTGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "5818e635-8903-462c-a23b-0b43fd4f3002", "aliases:array": "brenton-graveley:CPEB4-human", "modified_site_by_target_id": "CPEB4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000150825", "rnai_sequences:array": "CCGG-GCTGTTGGAAAGACTTGATAA-CTCGAG-TTATCAAGTCTTTCCAACAGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c829a239-f8b7-4515-9632-38f709d797cd", "aliases:array": "brenton-graveley:CPSF6_54-human", "modified_site_by_target_id": "CPSF6-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000154", "rnai_sequences:array": "CCGG-ACCATAGTAGATCACGAGAAA-CTCGAG-TTTCTCGTGATCTACTATGGT-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "78957cc3-c5e1-4a0e-88c1-83c815556317", "aliases:array": "brenton-graveley:CPSF6-human", "modified_site_by_target_id": "CPSF6-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000151", "rnai_sequences:array": "CCGG-CTGGTGATTATGGGAGTGCTA-CTCGAG-TAGCACTCCCATAATCACCAG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "9038c150-eec5-4935-ad07-cd1db6bfb854", "aliases:array": "brenton-graveley:CPSF7-human", "modified_site_by_target_id": "CPSF7-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000161936", "rnai_sequences:array": "CCGG-GATCCAGGTTATTCGCTCTAT-CTCGAG-ATAGAGCGAATAACCTGGATC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c1ee2ff7-5afe-4169-9a64-1333e09772a7", "aliases:array": "brenton-graveley:CSTF2-human", "modified_site_by_target_id": "CSTF2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000157143", "rnai_sequences:array": "CCGG-GAGCAAGTATACAGGGTGGAA-CTCGAG-TTCCACCCTGTATACTTGCTC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "bc84b921-0325-488d-8df6-dc3302ad2efc", "aliases:array": "brenton-graveley:CSTF2T-human", "modified_site_by_target_id": "CSTF2T-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000145349", "rnai_sequences:array": "CCGG-GCGTCTGTTCACTTTAAGTTA-CTCGAG-TAACTTAAAGTGAACAGACGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "43f41ee0-d6b1-40f3-ad0e-9471e71022dd", "aliases:array": "brenton-graveley:DAZAP1-45-human", "modified_site_by_target_id": "DAZAP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000164245", "rnai_sequences:array": "CCGG-CCCAGGAGCGATAACAGTAAA-CTCGAG-TTTACTGTTATCGCTCCTGGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e53c1c41-d1b9-40fe-a2bb-37025957e607", "aliases:array": "brenton-graveley:DAZAP1-human", "modified_site_by_target_id": "DAZAP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000158588", "rnai_sequences:array": "CCGG-CAGGGAATACTTCAAGAAGTT-CTCGAG-AACTTCTTGAAGTATTCCCTG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d959e169-e2eb-4f69-81d8-9d370b8753ed", "aliases:array": "brenton-graveley:DDX1-human", "modified_site_by_target_id": "DDX1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050500", "rnai_sequences:array": "CCGG-CCGGGCAATCAAGGAACATAA-CTCGAG-TTATGTTCCTTGATTGCCCGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "de228043-08cb-4eeb-8897-242c39bc7b9b", "aliases:array": "brenton-graveley:DDX19B-human", "modified_site_by_target_id": "DDX19B-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000051129", "rnai_sequences:array": "CCGG-CCTGAACTGAAGCTAGCTTAT-CTCGAG-ATAAGCTAGCTTCAGTTCAGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "689a4456-1a50-4d5a-a500-ff17763983a3", "aliases:array": "brenton-graveley:DDX21-human", "modified_site_by_target_id": "DDX21-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000051198", "rnai_sequences:array": "CCGG-GCGGAGTTTCAGTAAAGCATT-CTCGAG-AATGCTTTACTGAAACTCCGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "f9554769-7aa8-4d33-9d9d-973aeae595d1", "aliases:array": "brenton-graveley:DDX24-human", "modified_site_by_target_id": "DDX24-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050314", "rnai_sequences:array": "CCGG-CGCTCAAGAAAGATGAGGATA-CTCGAG-TATCCTCATCTTTCTTGAGCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d8d18657-5d4f-42ba-8dc2-9e493461385a", "aliases:array": "brenton-graveley:DDX27-human", "modified_site_by_target_id": "DDX27-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050003", "rnai_sequences:array": "CCGG-GCAGAGGAAAGGTCTCAGTTT-CTCGAG-AAACTGAGACCTTTCCTCTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "10e88507-1272-44de-b16d-73df33429d5c", "aliases:array": "brenton-graveley:DDX28-human", "modified_site_by_target_id": "DDX28-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000051762", "rnai_sequences:array": "CCGG-CCTGGTTCAGAAGATTGAGCT-CTCGAG-AGCTCAATCTTCTGAACCAGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ae5af5ff-8542-4b10-aea8-94473b90ef76", "aliases:array": "brenton-graveley:DDX3X-human", "modified_site_by_target_id": "DDX3X-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000003", "rnai_sequences:array": "CCGG-CGTAGAATAGTCGAACAAGAT-CTCGAG-ATCTTGTTCGACTATTCTACG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "3af49c11-6121-4386-9c8e-d7fa0d8fd695", "aliases:array": "brenton-graveley:DDX47-human", "modified_site_by_target_id": "DDX47-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000005618", "rnai_sequences:array": "CCGG-CGAGTTCTGCTGTTCTGTAAA-CTCGAG-TTTACAGAACAGCAGAACTCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1c48b00b-4baf-49d0-af45-6f710abba282", "aliases:array": "brenton-graveley:DDX5-human", "modified_site_by_target_id": "DDX5-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001130", "rnai_sequences:array": "CCGG-GCTCCTATTCTGATTGCTACA-CTCGAG-TGTAGCAATCAGAATAGGAGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "aa01be7d-30ca-4570-837d-79611cea3036", "aliases:array": "brenton-graveley:DDX51-human", "modified_site_by_target_id": "DDX51-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050001", "rnai_sequences:array": "CCGG-GCCTAACTGTGTCAGAAGGAA-CTCGAG-TTCCTTCTGACACAGTTAGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ba15918e-ec50-45f6-b862-d5984d528971", "aliases:array": "brenton-graveley:DDX52-human", "modified_site_by_target_id": "DDX52-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000052106", "rnai_sequences:array": "CCGG-GCCAATCCAAATGCAAGCCAT-CTCGAG-ATGGCTTGCATTTGGATTGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ba91ec37-3619-4448-95a6-3db88c9e7d8e", "aliases:array": "brenton-graveley:DDX55-human", "modified_site_by_target_id": "DDX55-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000051219", "rnai_sequences:array": "CCGG-CGCAATCATAAGCAGGAGAAA-CTCGAG-TTTCTCCTGCTTATGATTGCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0ba66e98-4609-440e-965b-0361acebb59c", "aliases:array": "brenton-graveley:DDX59_11-human", "modified_site_by_target_id": "DDX59-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050911", "rnai_sequences:array": "CCGG-CCACAGCTTTATCGTCTGCAA-CTCGAG-TTGCAGACGATAAAGCTGTGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0628e67a-accd-4c09-8fe5-fef31509bae3", "aliases:array": "brenton-graveley:DDX59-human", "modified_site_by_target_id": "DDX59-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050908", "rnai_sequences:array": "CCGG-CCCATTCAAATGCAGATGATT-CTCGAG-AATCATCTGCATTTGAATGGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d4ad4a72-fb95-4b2c-b3f3-2e10a1cbb4c0", "aliases:array": "brenton-graveley:DDX6-human", "modified_site_by_target_id": "DDX6-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074696", "rnai_sequences:array": "CCGG-CTGATCTGTTTACCCGAGGTA-CTCGAG-TACCTCGGGTAAACAGATCAG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "79040e41-81d4-4c59-8e5a-24594a597c84", "aliases:array": "brenton-graveley:DHX30-human", "modified_site_by_target_id": "DHX30-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000052032", "rnai_sequences:array": "CCGG-GAGTTGTTTGACGCAGCCAAA-CTCGAG-TTTGGCTGCGTCAAACAACTC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c7db98cb-03a8-4e42-8f46-31d760a991d2", "aliases:array": "brenton-graveley:DKC1-human", "modified_site_by_target_id": "DKC1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000039738", "rnai_sequences:array": "CCGG-GCTCAGTGAAATGCTGTAGAA-CTCGAG-TTCTACAGCATTTCACTGAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "32c984f8-aa3e-4baa-9ad7-683be358ca85", "aliases:array": "brenton-graveley:DNAJC2-human", "modified_site_by_target_id": "DNAJC2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000254057", "rnai_sequences:array": "CCGG-TACTTCACTTGCATAACTAAA-CTCGAG-TTTAGTTATGCAAGTGAAGTA-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0f86341e-92b0-4ef3-a927-062ce819ae01", "aliases:array": "brenton-graveley:DNAJC21-human", "modified_site_by_target_id": "DNAJC21-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000144746", "rnai_sequences:array": "CCGG-GACAAATCGTTCAAGACAGAA-CTCGAG-TTCTGTCTTGAACGATTTGTC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "9734a27e-95e2-4ce7-9e05-393c9ab7364b", "aliases:array": "brenton-graveley:DROSHA-human", "modified_site_by_target_id": "DROSHA-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000022250", "rnai_sequences:array": "CCGG-CGAAGCTCTTTGGTGAATAAT-CTCGAG-ATTATTCACCAAAGAGCTTCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "5a2fb968-fbf4-45c7-a266-8afd5fd902af", "aliases:array": "brenton-graveley:EEF2-human", "modified_site_by_target_id": "EEF2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000047908", "rnai_sequences:array": "CCGG-GCGATCATGAATTTCAAGAAA-CTCGAG-TTTCTTGAAATTCATGATCGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "fdd10ed1-b470-40e0-add9-8c58f7e94688", "aliases:array": "brenton-graveley:EFTUD2-human", "modified_site_by_target_id": "EFTUD2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074654", "rnai_sequences:array": "CCGG-CCCATTATTAAGCCAGTGAAA-CTCGAG-TTTCACTGGCTTAATAATGGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e9238792-4fdd-4efd-ae98-82ca54768c22", "aliases:array": "brenton-graveley:EIF2C1-human", "modified_site_by_target_id": "AGO1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000007860", "rnai_sequences:array": "CCGG-GCTGACAAGAATGAGCGAATT-CTCGAG-AATTCGCTCATTCTTGTCAGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b26bfbc9-76c3-477a-af90-397e0cb9ad86", "aliases:array": "brenton-graveley:EIF2C2-human", "modified_site_by_target_id": "AGO2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000007864", "rnai_sequences:array": "CCGG-CGGCAAGAAGAGATTAGCAAA-CTCGAG-TTTGCTAATCTCTTCTTGCCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1d194a24-bab9-419f-aa0b-e90fb6bfb25c", "aliases:array": "brenton-graveley:EIF2S1-human", "modified_site_by_target_id": "EIF2S1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000159909", "rnai_sequences:array": "CCGG-CGTATCCGTTCTATCAACAAA-CTCGAG-TTTGTTGATAGAACGGATACG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e6137f7d-7402-4a05-8015-c17f8f25b26e", "aliases:array": "brenton-graveley:EIF2S2-human", "modified_site_by_target_id": "EIF2S2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074788", "rnai_sequences:array": "CCGG-GAGTGGATATACCGTTGTATT-CTCGAG-AATACAACGGTATATCCACTC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "dce9e63d-049e-4e6b-84de-db3d8d620590", "aliases:array": "brenton-graveley:EIF3A-human", "modified_site_by_target_id": "EIF3A-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074805", "rnai_sequences:array": "CCGG-CGTGCTGATGATGATCGGTTT-CTCGAG-AAACCGATCATCATCAGCACG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "47cec15e-b322-4c88-926b-baa86098bbf3", "aliases:array": "brenton-graveley:EIF3D-human", "modified_site_by_target_id": "EIF3D-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000154123", "rnai_sequences:array": "CCGG-CGTAGTGATTGGGAAGTGAAA-CTCGAG-TTTCACTTCCCAATCACTACG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "db5f0e3a-60b4-458c-a751-6fdb108f3eae", "aliases:array": "brenton-graveley:EIF3G-human", "modified_site_by_target_id": "EIF3G-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000062035", "rnai_sequences:array": "CCGG-GAACAAACTCAAGGGCCAGAA-CTCGAG-TTCTGGCCCTTGAGTTTGTTC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e0e1454c-ede5-4394-9e55-36633d6a591b", "aliases:array": "brenton-graveley:EIF4A3-human", "modified_site_by_target_id": "EIF4A3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000061855", "rnai_sequences:array": "CCGG-GCAATCAAGCAGATCATCAAA-CTCGAG-TTTGATGATCTGCTTGATTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b0a6d8c3-cb69-4940-8cae-436037ec3895", "aliases:array": "brenton-graveley:EIF4B-human", "modified_site_by_target_id": "EIF4B-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000062598", "rnai_sequences:array": "CCGG-GCGGAGAAACACCTTGATCTT-CTCGAG-AAGATCAAGGTGTTTCTCCGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "78ac36aa-95cf-4192-96ef-b0745065fedf", "aliases:array": "brenton-graveley:EIF4G1-human", "modified_site_by_target_id": "EIF4G1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000061769", "rnai_sequences:array": "CCGG-GCCCTTGTAGTGACCTTAGAA-CTCGAG-TTCTAAGGTCACTACAAGGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "5065d006-6bf8-4664-b363-cd2b2ca3bea5", "aliases:array": "brenton-graveley:EIF4G2-human", "modified_site_by_target_id": "EIF4G2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000150297", "rnai_sequences:array": "CCGG-CCCTTTGGTGAAATCCTATTT-CTCGAG-AAATAGGATTTCACCAAAGGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "f1828ae8-3612-42cd-9c42-6137dee66b25", "aliases:array": "brenton-graveley:ESF1-human", "modified_site_by_target_id": "ESF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000147185", "rnai_sequences:array": "CCGG-CCCTCTGATGTTGATTTGAAT-CTCGAG-ATTCAAATCAACATCAGAGGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "6a9b97ca-a73d-4c10-a47e-b3eace650bca", "aliases:array": "brenton-graveley:ETF1-human", "modified_site_by_target_id": "ETF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000145565", "rnai_sequences:array": "CCGG-GCCTACAACTAAGTTCCTAAA-CTCGAG-TTTAGGAACTTAGTTGTAGGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c4d1e3a1-22aa-4ca9-b3cb-130ebaab6aae", "aliases:array": "brenton-graveley:EWSR1_34-human", "modified_site_by_target_id": "EWSR1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000034", "rnai_sequences:array": "CCGG-TGCATTGACTACCAGATTTAT-CTCGAG-ATAAATCTGGTAGTCAATGCA-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "74b7de9b-b2c3-4598-ab1b-108cc0cfddf1", "aliases:array": "brenton-graveley:EWSR1-human", "modified_site_by_target_id": "EWSR1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000036", "rnai_sequences:array": "CCGG-GACCGCCTATGCAACTTCTTA-CTCGAG-TAAGAAGTTGCATAGGCGGTC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "542b9e25-e0c5-4fd8-81db-34835499efbe", "aliases:array": "brenton-graveley:EXOSC9-human", "modified_site_by_target_id": "EXOSC9-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050881", "rnai_sequences:array": "CCGG-CGTGTAGACCTACATTTATTA-CTCGAG-TAATAAATGTAGGTCTACACG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "2862c4be-3495-4839-8e21-8a321fded16d", "aliases:array": "brenton-graveley:FAM120A-human", "modified_site_by_target_id": "FAM120A-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074920", "rnai_sequences:array": "CCGG-GCTGACTATGTACGCAACATT-CTCGAG-AATGTTGCGTACATAGTCAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "69e69ffd-c767-4b3d-ab5d-360bdf99ccfb", "aliases:array": "brenton-graveley:FASTKD1-human", "modified_site_by_target_id": "FASTKD1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000129813", "rnai_sequences:array": "CCGG-CCGCTTCTGTCAACAATATAA-CTCGAG-TTATATTGTTGACAGAAGCGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "556c48f5-aa20-410e-bbc7-520cc5f8b473", "aliases:array": "brenton-graveley:FASTKD2-human", "modified_site_by_target_id": "FASTKD2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000145126", "rnai_sequences:array": "CCGG-GCTTTCAAACAAAGGGCATAA-CTCGAG-TTATGCCCTTTGTTTGAAAGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c00a0f04-604b-4f1f-b988-fe10e7a022f5", "aliases:array": "brenton-graveley:FIP1L1-human", "modified_site_by_target_id": "FIP1L1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074418", "rnai_sequences:array": "CCGG-GTACCAGAAGTAGATACTATA-CTCGAG-TATAGTATCTACTTCTGGTAC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d09fba1a-b870-4720-ba20-118f0c953359", "aliases:array": "brenton-graveley:FKBP4-54-human", "modified_site_by_target_id": "FKBP4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000152554", "rnai_sequences:array": "CCGG-GCATGGAGAAAGGAGAACATT-CTCGAG-AATGTTCTCCTTTCTCCATGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ea191b4f-d024-45c3-bb4f-e00ea2e8a23f", "aliases:array": "brenton-graveley:FKBP4-human", "modified_site_by_target_id": "FKBP4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000157250", "rnai_sequences:array": "CCGG-GAAGGCTATGCTAAGCCCAAT-CTCGAG-ATTGGGCTTAGCATAGCCTTC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "dacd0193-7788-4b7b-83db-0b54b8ec9692", "aliases:array": "brenton-graveley:FMR1_60-human", "modified_site_by_target_id": "FMR1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000059760", "rnai_sequences:array": "CCGG-CGAGATTTCATGAACAGTTTA-CTCGAG-TAAACTGTTCATGAAATCTCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "f35b3719-cb15-469a-9311-802f28146fd7", "aliases:array": "brenton-graveley:FMR1-human", "modified_site_by_target_id": "FMR1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000059758", "rnai_sequences:array": "CCGG-GCCAGAAGACTTACGGCAAAT-CTCGAG-ATTTGCCGTAAGTCTTCTGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c174a8e6-7e41-498d-a6d6-3b6cae241573", "aliases:array": "brenton-graveley:FTO-human", "modified_site_by_target_id": "FTO-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000246247", "rnai_sequences:array": "CCGG-TCACGAATTGCCCGAACATTA-CTCGAG-TAATGTTCGGGCAATTCGTGA-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "88237686-052d-4cde-8169-62804fb0c846", "aliases:array": "brenton-graveley:FUBP3-human", "modified_site_by_target_id": "FUBP3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000020576", "rnai_sequences:array": "CCGG-CCTCTTCGTATCACTGGAGAT-CTCGAG-ATCTCCAGTGATACGAAGAGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "5badf6d1-856f-40b2-8877-63f1553d34d9", "aliases:array": "brenton-graveley:FUS-human", "modified_site_by_target_id": "FUS-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000039824", "rnai_sequences:array": "CCGG-GCTGATTACTTCAAGCAGATT-CTCGAG-AATCTGCTTGAAGTAATCAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c51e9d12-de88-499e-8ea2-2cf1552fb6aa", "aliases:array": "brenton-graveley:FXR1-human", "modified_site_by_target_id": "FXR1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000159153", "rnai_sequences:array": "CCGG-GACGCTACTTACAATGAAATA-CTCGAG-TATTTCATTGTAAGTAGCGTC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "07f68038-bd03-489d-9892-3555d6997692", "aliases:array": "brenton-graveley:FXR2-human", "modified_site_by_target_id": "FXR2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000013455", "rnai_sequences:array": "CCGG-GCGCACCAAACTGCTACTTAT-CTCGAG-ATAAGTAGCAGTTTGGTGCGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c82525fb-ce91-41fc-a3a7-bcd876fcb9aa", "aliases:array": "brenton-graveley:G3BP1-human", "modified_site_by_target_id": "G3BP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000008719", "rnai_sequences:array": "CCGG-GCCTGTAAGAAATACAGGATT-CTCGAG-AATCCTGTATTTCTTACAGGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1796d31b-4556-4390-ace1-3ee50229184f", "aliases:array": "brenton-graveley:G3BP2-human", "modified_site_by_target_id": "G3BP2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000047550", "rnai_sequences:array": "CCGG-CCACAAAGTATTATCTCTGAA-CTCGAG-TTCAGAGATAATACTTTGTGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "4cbb05c7-74af-4058-aee4-54cf90b5f7a3", "aliases:array": "brenton-graveley:GEMIN5-human", "modified_site_by_target_id": "GEMIN5-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000150146", "rnai_sequences:array": "CCGG-GCTGATGTTGAGGAAAGATTT-CTCGAG-AAATCTTTCCTCAACATCAGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "65828ddf-3bc3-4eca-806f-f17536c1dda7", "aliases:array": "brenton-graveley:GLRX3-human", "modified_site_by_target_id": "GLRX3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000064666", "rnai_sequences:array": "CCGG-CCTACCTATCCTCAGCTCTAT-CTCGAG-ATAGAGCTGAGGATAGGTAGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "a4d2d6a7-bee6-4828-93e0-8ec194254123", "aliases:array": "brenton-graveley:GNB2L1-human", "modified_site_by_target_id": "GNB2L1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000006472", "rnai_sequences:array": "CCGG-GATGTGGTTATCTCCTCAGAT-CTCGAG-ATCTGAGGAGATAACCACATC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "bc0c4ca2-237e-4de1-8953-af735329ea26", "aliases:array": "brenton-graveley:GPKOW-human", "modified_site_by_target_id": "GPKOW-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000130596", "rnai_sequences:array": "CCGG-CGGAGGAGAAGGATTTCTTGA-CTCGAG-TCAAGAAATCCTTCTCCTCCG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "f41c3de8-4755-4848-9cab-9d4e9fe71b22", "aliases:array": "brenton-graveley:GRSF1-human", "modified_site_by_target_id": "GRSF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000075044", "rnai_sequences:array": "CCGG-CGGTGAGAATGGAATACATTT-CTCGAG-AAATGTATTCCATTCTCACCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "54390541-fa7f-4834-870c-ace60fa631d3", "aliases:array": "brenton-graveley:GRWD1-human", "modified_site_by_target_id": "GRWD1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000135333", "rnai_sequences:array": "CCGG-CTCACCAAAGAACTCGGTTTA-CTCGAG-TAAACCGAGTTCTTTGGTGAG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "00f83c5f-8a47-483c-97c9-60461b30f3bd", "aliases:array": "brenton-graveley:GTF2F1-human", "modified_site_by_target_id": "GTF2F1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000020836", "rnai_sequences:array": "CCGG-GCGCAAGATGATCAACGACAA-CTCGAG-TTGTCGTTGATCATCTTGCGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "a0c6a96d-300b-41c6-bacd-3b16e29d3740", "aliases:array": "brenton-graveley:HDGF-human", "modified_site_by_target_id": "HDGF-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000118159", "rnai_sequences:array": "CCGG-GAACGAGAAAGGAGCGTTGAA-CTCGAG-TTCAACGCTCCTTTCTCGTTC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "a202c9bd-1dec-408f-8e00-72a2fc879b99", "aliases:array": "brenton-graveley:HLTF-human", "modified_site_by_target_id": "HLTF-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000010836", "rnai_sequences:array": "CCGG-GCAGGTGGAGTTGGTTTGAAT-CTCGAG-ATTCAAACCAACTCCACCTGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1ce2d01f-d4ad-4eac-a560-92fc92839c59", "aliases:array": "brenton-graveley:HNRNPA0-human", "modified_site_by_target_id": "HNRNPA0-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000017235", "rnai_sequences:array": "CCGG-GCCAAGGTTAAGAAGCTCTTT-CTCGAG-AAAGAGCTTCTTAACCTTGGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e93d979b-feec-4066-af03-6e222d37a2e1", "aliases:array": "brenton-graveley:HNRNPA1-human", "modified_site_by_target_id": "HNRNPA1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000006583", "rnai_sequences:array": "CCGG-GCCACAACTGTGAAGTTAGAA-CTCGAG-TTCTAACTTCACAGTTGTGGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "2e7574fe-d61e-4d81-bb98-48b61eb45cc9", "aliases:array": "brenton-graveley:HNRNPA2B1_59-human", "modified_site_by_target_id": "HNRNPA2B1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001059", "rnai_sequences:array": "CCGG-CAGAAATACCATACCATCAAT-CTCGAG-ATTGATGGTATGGTATTTCTG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "dae482c9-339d-4ee2-bcad-7588f3e0d365", "aliases:array": "brenton-graveley:HNRNPA2B1-human", "modified_site_by_target_id": "HNRNPA2B1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001060", "rnai_sequences:array": "CCGG-AGACAAGAAATGCAGGAAGTT-CTCGAG-AACTTCCTGCATTTCTTGTCT-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "81d10d55-6320-4eac-8d8f-6527e64eac33", "aliases:array": "brenton-graveley:HNRNPAB-human", "modified_site_by_target_id": "HNRNPAB-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074520", "rnai_sequences:array": "CCGG-TGGAAGCAAGTGTGAGATCAA-CTCGAG-TTGATCTCACACTTGCTTCCA-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "be7c0b64-6f6c-4169-8a07-545ef029efdb", "aliases:array": "brenton-graveley:HNRNPC-human", "modified_site_by_target_id": "HNRNPC-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000006644", "rnai_sequences:array": "CCGG-GCGCTTGTCTAAGATCAAATT-CTCGAG-AATTTGATCTTAGACAAGCGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "27db2435-e5f7-45a1-b184-02d8de5a6245", "aliases:array": "brenton-graveley:HNRNPD-human", "modified_site_by_target_id": "HNRNPD-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001293", "rnai_sequences:array": "CCGG-AGAGTGGTTATGGGAAGGTAT-CTCGAG-ATACCTTCCCATAACCACTCT-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "f6740a0d-5559-4853-ad89-e7a57fe6f716", "aliases:array": "brenton-graveley:HNRNPF-human", "modified_site_by_target_id": "HNRNPF-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001234", "rnai_sequences:array": "CCGG-CGAGAACGACATTTACAACTT-CTCGAG-AAGTTGTAAATGTCGTTCTCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ab6d2fb8-c53b-4309-affb-621d69a3e720", "aliases:array": "brenton-graveley:HNRNPK-human", "modified_site_by_target_id": "HNRNPK-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000062455", "rnai_sequences:array": "CCGG-GCCAGTGTTTCAGTCCCAGAC-CTCGAG-GTCTGGGACTGAAACACTGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "301c1305-9183-48a8-8284-278edecdf776", "aliases:array": "brenton-graveley:HNRNPL-human", "modified_site_by_target_id": "HNRNPL-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000017245", "rnai_sequences:array": "CCGG-CCTCAACAACAACTTCATGTT-CTCGAG-AACATGAAGTTGTTGTTGAGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "f447a5d6-c865-418a-bdf8-dfb85ca77e46", "aliases:array": "brenton-graveley:HNRNPLL-human", "modified_site_by_target_id": "HNRNPLL-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000075101", "rnai_sequences:array": "CCGG-CGACAGGCTCTAGTGGAATTT-CTCGAG-AAATTCCACTAGAGCCTGTCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "2ddf6822-e225-457e-bf33-2e7963c427de", "aliases:array": "brenton-graveley:HNRNPM-human", "modified_site_by_target_id": "HNRNPM-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001243", "rnai_sequences:array": "CCGG-AGAGCCTTCATTACAAACATA-CTCGAG-TATGTTTGTAATGAAGGCTCT-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "51d770b2-4551-4b84-92a9-8065bb99f908", "aliases:array": "brenton-graveley:HNRNPU-human", "modified_site_by_target_id": "HNRNPU-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001298", "rnai_sequences:array": "CCGG-CAGTGCTTCTTCCCTTACAAT-CTCGAG-ATTGTAAGGGAAGAAGCACTG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e0d5ec9e-b68e-4391-a084-10cfe3fec613", "aliases:array": "brenton-graveley:HNRNPUL1-human", "modified_site_by_target_id": "HNRNPUL1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074730", "rnai_sequences:array": "CCGG-CCGGGATAACAACAACTCCAA-CTCGAG-TTGGAGTTGTTGTTATCCCGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "cde0bb0c-ad9e-4fe4-8251-8d87a80dda39", "aliases:array": "brenton-graveley:HSPD1-human", "modified_site_by_target_id": "HSPD1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000029445", "rnai_sequences:array": "CCGG-CAGTGATTATTGAGCAGAGTT-CTCGAG-AACTCTGCTCAATAATCACTG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e834e0ac-61ed-499f-abdc-bbf91f4ac141", "aliases:array": "brenton-graveley:IGF2BP1-human", "modified_site_by_target_id": "IGF2BP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000075149", "rnai_sequences:array": "CCGG-GCAGTGGTGAATGTCACCTAT-CTCGAG-ATAGGTGACATTCACCACTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "7d4742ca-59df-40dc-94dc-660c93da4f9a", "aliases:array": "brenton-graveley:IGF2BP2-human", "modified_site_by_target_id": "IGF2BP2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000255468", "rnai_sequences:array": "CCGG-GTTGGCCCAGGGCGTTAAATT-CTCGAG-AATTTAACGCCCTGGGCCAAC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "00d480ee-958b-4b12-87b5-42d16fd53ebf", "aliases:array": "brenton-graveley:IGF2BP3-human", "modified_site_by_target_id": "IGF2BP3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074675", "rnai_sequences:array": "CCGG-CGGTGAATGAACTTCAGAATT-CTCGAG-AATTCTGAAGTTCATTCACCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "a1e33d55-9393-485b-be62-05b0c601d5ed", "aliases:array": "brenton-graveley:ILF2-human", "modified_site_by_target_id": "ILF2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000014556", "rnai_sequences:array": "CCGG-CCAACGAAACTGGCTTTGAAA-CTCGAG-TTTCAAAGCCAGTTTCGTTGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "3328a14d-c687-4ca4-bdee-05ae67c9a307", "aliases:array": "brenton-graveley:ILF3-human", "modified_site_by_target_id": "ILF3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000329787", "rnai_sequences:array": "CCGG-CCTTCCAAGATGCCCAAGAAA-CTCGAG-TTTCTTGGGCATCTTGGAAGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "4889f397-ee22-4eb6-a98f-061c6275deec", "aliases:array": "brenton-graveley:KHDRBS1-human", "modified_site_by_target_id": "KHDRBS1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000046", "rnai_sequences:array": "CCGG-GACGGCAGAAATTGAGAAGAT-CTCGAG-ATCTTCTCAATTTCTGCCGTC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "29d1efd1-297d-416f-b582-5d0a9eb9513f", "aliases:array": "brenton-graveley:KHSRP-human", "modified_site_by_target_id": "KHSRP-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000013254", "rnai_sequences:array": "CCGG-CCCGAGAAGATTGCTCATATA-CTCGAG-TATATGAGCAATCTTCTCGGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d018918b-24db-4037-8cd9-8b6234436119", "aliases:array": "brenton-graveley:KIAA1967-human", "modified_site_by_target_id": "CCAR2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000053724", "rnai_sequences:array": "CCGG-GCATTGATTTGAGCGGCTGTA-CTCGAG-TACAGCCGCTCAAATCAATGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1e3a0f9f-d1a5-4d7e-a7c9-ba83da5fc083", "aliases:array": "brenton-graveley:KIF1C-human", "modified_site_by_target_id": "KIF1C-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000116589", "rnai_sequences:array": "CCGG-CTGGAGAATCAGTACCGGAAA-CTCGAG-TTTCCGGTACTGATTCTCCAG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "5a3829a3-ae7c-4922-9e3b-a1d8239f851a", "aliases:array": "brenton-graveley:KRR1_96-human", "modified_site_by_target_id": "KRR1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000072296", "rnai_sequences:array": "CCGG-GCAGCATGACTGTTTGTACTA-CTCGAG-TAGTACAAACAGTCATGCTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "666e9836-9455-41ec-b1bb-a4c68fd20b2f", "aliases:array": "brenton-graveley:KRR1-human", "modified_site_by_target_id": "KRR1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000072295", "rnai_sequences:array": "CCGG-GCATTGGAACTCTTAACTAAT-CTCGAG-ATTAGTTAAGAGTTCCAATGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "eb5b01ec-45e0-4bd4-b251-c59dd2bd5a99", "aliases:array": "brenton-graveley:LARP4-human", "modified_site_by_target_id": "LARP4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000161048", "rnai_sequences:array": "CCGG-GCTTTAATTCGCCAGGATCTT-CTCGAG-AAGATCCTGGCGAATTAAAGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "195370ad-0919-4633-8d8f-0675bcfd7190", "aliases:array": "brenton-graveley:LARP7-human", "modified_site_by_target_id": "LARP7-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000122544", "rnai_sequences:array": "CCGG-CTTGAGCTGTTCTTGGGAGAT-CTCGAG-ATCTCCCAAGAACAGCTCAAG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "baed0b62-0828-4059-8703-f7ea7f4538c0", "aliases:array": "brenton-graveley:LIN28B-human", "modified_site_by_target_id": "LIN28B-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000144508", "rnai_sequences:array": "CCGG-CCTGTTTAGGAAGTGAAAGAA-CTCGAG-TTCTTTCACTTCCTAAACAGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "6ea09273-a270-4f6e-8582-e9823c88d788", "aliases:array": "brenton-graveley:LSM11-human", "modified_site_by_target_id": "LSM11-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074440", "rnai_sequences:array": "CCGG-GCATTCGACAAGTTCTGGAAT-CTCGAG-ATTCCAGAACTTGTCGAATGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "2f71e2ea-fa8f-4d42-b1c3-77652f00ce6e", "aliases:array": "brenton-graveley:MAGOH-human", "modified_site_by_target_id": "MAGOH-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000006614", "rnai_sequences:array": "CCGG-CCAGAAGGCTTACGAGTATTT-CTCGAG-AAATACTCGTAAGCCTTCTGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0a5d49a9-1348-4eac-953a-02213c993791", "aliases:array": "brenton-graveley:MAK16-human", "modified_site_by_target_id": "MAK16-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000134315", "rnai_sequences:array": "CCGG-GACACAAATGTAAGCAGAGAT-CTCGAG-ATCTCTGCTTACATTTGTGTC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "00d631b2-7796-41cb-a4e0-758b046c7720", "aliases:array": "brenton-graveley:MARK2-human", "modified_site_by_target_id": "MARK2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001584", "rnai_sequences:array": "CCGG-AGATGATGAACTAAAGCCTTA-CTCGAG-TAAGGCTTTAGTTCATCATCT-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e7e47a1b-ef0a-488f-896d-f30d353b2142", "aliases:array": "brenton-graveley:MATR3-17-human", "modified_site_by_target_id": "MATR3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000293617", "rnai_sequences:array": "CCGG-TGACTTCCTAAGCTACTTAAG-CTCGAG-CTTAAGTAGCTTAGGAAGTCA-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c90bbf22-af3b-4631-ad95-0ee9fd7c9534", "aliases:array": "brenton-graveley:MATR3-6-human", "modified_site_by_target_id": "MATR3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074906", "rnai_sequences:array": "CCGG-GAGACCGATCTTGCTAATTTA-CTCGAG-TAAATTAGCAAGATCGGTCTC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "31f69c6a-841c-4b28-a4f9-d90429cbfad9", "aliases:array": "brenton-graveley:MBNL1-human", "modified_site_by_target_id": "MBNL1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000063963", "rnai_sequences:array": "CCGG-GCAGTCTTTAACACTGGTATT-CTCGAG-AATACCAGTGTTAAAGACTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "6c67887c-9c77-47a5-ab34-80ff31505d49", "aliases:array": "brenton-graveley:METAP2_80-human", "modified_site_by_target_id": "METAP2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050580", "rnai_sequences:array": "CCGG-CTTGGGAGAAAGTAAATACTT-CTCGAG-AAGTATTTACTTTCTCCCAAG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "6cd79c09-0420-4fbc-a542-b3bb2c73a386", "aliases:array": "brenton-graveley:METAP2-human", "modified_site_by_target_id": "METAP2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050581", "rnai_sequences:array": "CCGG-GCAGAAGCACATCGACAAGTT-CTCGAG-AACTTGTCGATGTGCTTCTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1692e7de-8102-4c22-9451-4dd72c665d1c", "aliases:array": "brenton-graveley:MSI2-human", "modified_site_by_target_id": "MSI2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000062812", "rnai_sequences:array": "CCGG-AGATAGCCTTAGAGACTATTT-CTCGAG-AAATAGTCTCTAAGGCTATCT-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0acd494c-f352-41b2-9dcb-a63060ce54c5", "aliases:array": "brenton-graveley:MTPAP_01-human", "modified_site_by_target_id": "MTPAP-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000160601", "rnai_sequences:array": "CCGG-CGACCTTCCATATCAAGTAAT-CTCGAG-ATTACTTGATATGGAAGGTCG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "67511b4b-b8e4-42a1-81a4-754a6b1fcad1", "aliases:array": "brenton-graveley:MTPAP-human", "modified_site_by_target_id": "MTPAP-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000160380", "rnai_sequences:array": "CCGG-CGTTGGCAATGAATACATTAA-CTCGAG-TTAATGTATTCATTGCCAACG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "920fa094-be89-4e1a-863d-682dedf109c3", "aliases:array": "brenton-graveley:NAA15-human", "modified_site_by_target_id": "NAA15-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000061332", "rnai_sequences:array": "CCGG-CCAGTTTGACTTTCATACATA-CTCGAG-TATGTATGAAAGTCAAACTGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "874bd922-bdf9-4096-ba48-7477fdc6b4e2", "aliases:array": "brenton-graveley:NCBP2-human", "modified_site_by_target_id": "NCBP2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000059994", "rnai_sequences:array": "CCGG-GTGACAATGAAGAACAAGAAA-CTCGAG-TTTCTTGTTCTTCATTGTCAC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "db79e8a5-108b-424f-843b-c6a152c2aa24", "aliases:array": "brenton-graveley:NFX1-human", "modified_site_by_target_id": "NFX1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000014906", "rnai_sequences:array": "CCGG-GCAGAGAAGATACCCACAGAA-CTCGAG-TTCTGTGGGTATCTTCTCTGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1d113e56-ac6f-4813-8204-da0493acac69", "aliases:array": "brenton-graveley:NIP7-human", "modified_site_by_target_id": "NIP7-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000142914", "rnai_sequences:array": "CCGG-CTGGATTACCTTGCACCTTAT-CTCGAG-ATAAGGTGCAAGGTAATCCAG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "7715e876-275e-44c5-bece-e3c64fcdba7a", "aliases:array": "brenton-graveley:NKRF-human", "modified_site_by_target_id": "NKRF-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000016432", "rnai_sequences:array": "CCGG-CCAAGAGACATCTACCAAGAT-CTCGAG-ATCTTGGTAGATGTCTCTTGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "6c40da1a-bab4-46ee-9950-743fc1b60368", "aliases:array": "brenton-graveley:NOL12-human", "modified_site_by_target_id": "NOL12-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000181091", "rnai_sequences:array": "CCGG-CACAGCATCACTACATGCACA-CTCGAG-TGTGCATGTAGTGATGCTGTG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "60e461d8-a643-4dfb-a498-397f774bf452", "aliases:array": "brenton-graveley:Non-specific-target-control-human", "modified_site_by_target_id": "Non-specific%20target%20control-human", "reagent_availability:object:array": "source:sigma, identifier:SHC002", "rnai_sequences:array": "CCGGCAACAAGATGAAGAGCACCAACTC-GAGTTGGTGCTCTTCATCTTGTTGTTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d3ebd0ff-fa35-4b8e-8567-f1b5f21cdd05", "aliases:array": "brenton-graveley:NONO-human", "modified_site_by_target_id": "NONO-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074559", "rnai_sequences:array": "CCGG-GCTGCTACAATGGAAGGAATT-CTCGAG-AATTCCTTCCATTGTAGCAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e4b5ca4f-1b8e-4eb9-a2d6-1e8bf80dde3e", "aliases:array": "brenton-graveley:NPM1-human", "modified_site_by_target_id": "NPM1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000062271", "rnai_sequences:array": "CCGG-GCAAAGGATGAGTTGCACATT-CTCGAG-AATGTGCAACTCATCCTTTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "9c2a11fa-a29d-4d09-b13d-a846eecb2d75", "aliases:array": "brenton-graveley:NSUN2-human", "modified_site_by_target_id": "NSUN2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000166537", "rnai_sequences:array": "CCGG-CCCAAGAATGAACGGCTTCAT-CTCGAG-ATGAAGCCGTTCATTCTTGGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "bc12e0c4-3a63-4b95-95ee-b95f6fd10db8", "aliases:array": "brenton-graveley:NUFIP2_59-human", "modified_site_by_target_id": "NUFIP2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000166959", "rnai_sequences:array": "CCGG-GAACAAATTAAGACTAGCCTT-CTCGAG-AAGGCTAGTCTTAATTTGTTC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ee4faf69-b0d0-4702-90fe-36e48c6f2a85", "aliases:array": "brenton-graveley:NUFIP2-human", "modified_site_by_target_id": "NUFIP2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000167367", "rnai_sequences:array": "CCGG-GAAACTTTCAAGCCTGACTAT-CTCGAG-ATAGTCAGGCTTGAAAGTTTC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "145b6d3c-8348-4a89-802d-4bde2fee3d5f", "aliases:array": "brenton-graveley:NUP35-human", "modified_site_by_target_id": "NUP35-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000072378", "rnai_sequences:array": "CCGG-GCTGGTTCCTTCGGTTAGTTA-CTCGAG-TAACTAACCGAAGGAACCAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c03c4c5a-10ec-4798-8601-befdadadd90a", "aliases:array": "brenton-graveley:NUSAP1-human", "modified_site_by_target_id": "NUSAP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000137707", "rnai_sequences:array": "CCGG-GCATAAGCGTTCACTGACCAA-CTCGAG-TTGGTCAGTGAACGCTTATGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "fda4aaa1-6242-47fd-8da7-ee8ece827eb7", "aliases:array": "brenton-graveley:PA2G4-human", "modified_site_by_target_id": "PA2G4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050413", "rnai_sequences:array": "CCGG-CCACCAGCATTTCGGTAAATA-CTCGAG-TATTTACCGAAATGCTGGTGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "de366184-56ef-4412-8244-33112c37049a", "aliases:array": "brenton-graveley:PABPC1-human", "modified_site_by_target_id": "PABPC1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074639", "rnai_sequences:array": "CCGG-CCGCACCGTTCCACAGTATAA-CTCGAG-TTATACTGTGGAACGGTGCGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "cecdc828-95c7-4e5e-9d22-d944250ed03b", "aliases:array": "brenton-graveley:PABPC4-human", "modified_site_by_target_id": "PABPC4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074658", "rnai_sequences:array": "CCGG-CCTCAACACCAAGGATTACAA-CTCGAG-TTGTAATCCTTGGTGTTGAGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c3cc0e8c-ef9c-49fa-b8fe-18bc92d59f01", "aliases:array": "brenton-graveley:PABPN1-human", "modified_site_by_target_id": "PABPN1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000120", "rnai_sequences:array": "CCGG-CCCATAACTAACTGCTGAGGA-CTCGAG-TCCTCAGCAGTTAGTTATGGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e9dd55cd-d999-4589-8cce-21ffd08481ea", "aliases:array": "brenton-graveley:PAPOLA-human", "modified_site_by_target_id": "PAPOLA-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000053020", "rnai_sequences:array": "CCGG-GCAGCATCTGTGACCAACATA-CTCGAG-TATGTTGGTCACAGATGCTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "55e1b696-8cc5-4400-b256-4e0536502ca3", "aliases:array": "brenton-graveley:PARN-human", "modified_site_by_target_id": "PARN-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000049744", "rnai_sequences:array": "CCGG-CCCAGACTCTTGGATACTAAA-CTCGAG-TTTAGTATCCAAGAGTCTGGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "8dc28a5e-de31-4c3b-aa66-320c7dc263f7", "aliases:array": "brenton-graveley:PCBP1-human", "modified_site_by_target_id": "PCBP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074668", "rnai_sequences:array": "CCGG-CCCATGATCCAACTGTGTAAT-CTCGAG-ATTACACAGTTGGATCATGGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "5573cbc8-b365-4f75-8d46-b9d5665aae17", "aliases:array": "brenton-graveley:PCBP2-human", "modified_site_by_target_id": "PCBP2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074684", "rnai_sequences:array": "CCGG-CCCACTAATGCCATCTTCAAA-CTCGAG-TTTGAAGATGGCATTAGTGGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c962e05a-d3e7-4c18-982d-e74bedb0216d", "aliases:array": "brenton-graveley:PES1_25-human", "modified_site_by_target_id": "PES1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000117725", "rnai_sequences:array": "CCGG-GCTTTGTCAACTTCCGCCTTT-CTCGAG-AAAGGCGGAAGTTGACAAAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "15066949-ae8c-4373-8aa5-8add08b247d5", "aliases:array": "brenton-graveley:PES1-human", "modified_site_by_target_id": "PES1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000117724", "rnai_sequences:array": "CCGG-CTTATCAAAGACATCAGGTTT-CTCGAG-AAACCTGATGTCTTTGATAAG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b63301e8-dc91-4e38-872f-b0e0b69dd29f", "aliases:array": "brenton-graveley:PHF6-human", "modified_site_by_target_id": "PHF6-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000020121", "rnai_sequences:array": "CCGG-CCACTGTGCATTGCATGATAA-CTCGAG-TTATCATGCAATGCACAGTGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ceca12cf-98cb-4661-9cfe-818f489aace9", "aliases:array": "brenton-graveley:PKM2-human", "modified_site_by_target_id": "PKM-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000037611", "rnai_sequences:array": "CCGG-CGGGTGAACTTTGCCATGAAT-CTCGAG-ATTCATGGCAAAGTTCACCCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b176c209-27a9-49b7-9d0a-fd3bd4609b21", "aliases:array": "brenton-graveley:PNPT1-human", "modified_site_by_target_id": "PNPT1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000035905", "rnai_sequences:array": "CCGG-CGCCAGAGATTGTGAAATATA-CTCGAG-TATATTTCACAATCTCTGGCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "3900683b-6574-4363-940d-18e5468e182a", "aliases:array": "brenton-graveley:POLR2G-human", "modified_site_by_target_id": "POLR2G-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000021855", "rnai_sequences:array": "CCGG-CCCACCATGTTACAAGACAAT-CTCGAG-ATTGTCTTGTAACATGGTGGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "582ec9cd-fc4b-4b38-9cff-70cf908572fc", "aliases:array": "brenton-graveley:PPIG-human", "modified_site_by_target_id": "PPIG-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000049326", "rnai_sequences:array": "CCGG-GCAGTCTGATTCTAAAGGAAA-CTCGAG-TTTCCTTTAGAATCAGACTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "99fb7b91-4419-4acf-b95a-0ecc8352afd1", "aliases:array": "brenton-graveley:PPIL4-human", "modified_site_by_target_id": "PPIL4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000049413", "rnai_sequences:array": "CCGG-CCACCTAATTTGGTTCTGAAA-CTCGAG-TTTCAGAACCAAATTAGGTGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d8325a9f-b407-404d-95c3-4696b6c0c94e", "aliases:array": "brenton-graveley:PPP1R8-human", "modified_site_by_target_id": "PPP1R8-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000002472", "rnai_sequences:array": "CCGG-TGAAGCTGTAAATGAACCCAA-CTCGAG-TTGGGTTCATTTACAGCTTCA-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "6dc9eaf7-9424-4e60-93eb-36ce2d0bd328", "aliases:array": "brenton-graveley:PRPF4-human", "modified_site_by_target_id": "PRPF4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074772", "rnai_sequences:array": "CCGG-GCAAAGTGATGGGCCTAGATA-CTCGAG-TATCTAGGCCCATCACTTTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "9efbe056-2634-4683-b8ec-a708cce2583a", "aliases:array": "brenton-graveley:PRPF6-human", "modified_site_by_target_id": "PRPF6-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074634", "rnai_sequences:array": "CCGG-GCGTACTTCGAGAAGAACCAT-CTCGAG-ATGGTTCTTCTCGAAGTACGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0f654d99-9248-4ec6-a15a-c89af541f896", "aliases:array": "brenton-graveley:PRPF8-human", "modified_site_by_target_id": "PRPF8-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000075112", "rnai_sequences:array": "CCGG-CGCCTCATGAAACATGATGTT-CTCGAG-AACATCATGTTTCATGAGGCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "724390b6-2deb-4c1a-8d38-ee5fbf41d6fa", "aliases:array": "brenton-graveley:PSIP1-human", "modified_site_by_target_id": "PSIP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074819", "rnai_sequences:array": "CCGG-GCAGCAACTAAACAATCAAAT-CTCGAG-ATTTGATTGTTTAGTTGCTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "3a6bbff5-3cc4-4098-86eb-0678eb7f2a22", "aliases:array": "brenton-graveley:PTBP1-human", "modified_site_by_target_id": "PTBP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001062", "rnai_sequences:array": "CCGG-CTCAACGTCAAGTACAACAAT-CTCGAG-ATTGTTGTACTTGACGTTGAG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "7befdabd-68ff-482b-9327-b9394c7c2a45", "aliases:array": "brenton-graveley:PUF60-human", "modified_site_by_target_id": "PUF60-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000017248", "rnai_sequences:array": "CCGG-CGATGACATCAAGAGCGTGTT-CTCGAG-AACACGCTCTTGATGTCATCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c03f51e7-0ba5-400b-a905-bcf9dbccb5e2", "aliases:array": "brenton-graveley:PUM1-human", "modified_site_by_target_id": "PUM1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000275489", "rnai_sequences:array": "CCGG-GCGTTTAAGGGACAGGTATTT-CTCGAG-AAATACCTGTCCCTTAAACGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "7dd95898-6c84-42cc-9144-a3e0261fb015", "aliases:array": "brenton-graveley:PUM2-human", "modified_site_by_target_id": "PUM2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000296986", "rnai_sequences:array": "CCGG-TTGACTTTATTCATCCATTTG-CTCGAG-CAAATGGATGAATAAAGTCAA-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e86ca8a8-1103-491d-9192-371ed96af6e3", "aliases:array": "brenton-graveley:PUS1-human", "modified_site_by_target_id": "PUS1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000045517", "rnai_sequences:array": "CCGG-GCACTTCGAGAAGTACAACCA-CTCGAG-TGGTTGTACTTCTCGAAGTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "36def8c6-1580-4d0c-bd39-f4d517a64dd0", "aliases:array": "brenton-graveley:QKI-human", "modified_site_by_target_id": "QKI-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000015184", "rnai_sequences:array": "CCGG-CCCTACCATAATGCCTTTGAT-CTCGAG-ATCAAAGGCATTATGGTAGGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e9b6838b-2d85-486d-a9c2-69decde36867", "aliases:array": "brenton-graveley:RAVER1-human", "modified_site_by_target_id": "RAVER1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074623", "rnai_sequences:array": "CCGG-GCCTCATTGCTCCTGTAATTT-CTCGAG-AAATTACAGGAGCAATGAGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b064c2c8-b503-428f-8631-c6cec13f1c90", "aliases:array": "brenton-graveley:RBFOX2-human", "modified_site_by_target_id": "RBFOX2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074544", "rnai_sequences:array": "CCGG-CGGGTTCGTAACTTTCGAGAA-CTCGAG-TTCTCGAAAGTTACGAACCCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "87c3ac90-5327-4a06-91f0-3625726aaf61", "aliases:array": "brenton-graveley:RBM15_07-human", "modified_site_by_target_id": "RBM15-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074707", "rnai_sequences:array": "CCGG-GATCGTTACAACAGCGACAAT-CTCGAG-ATTGTCGCTGTTGTAACGATC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "663952cd-9dba-47cc-92d4-59909e35397c", "aliases:array": "brenton-graveley:RBM15-human", "modified_site_by_target_id": "RBM15-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074704", "rnai_sequences:array": "CCGG-CCCAATGGTTATGCCATTCTT-CTCGAG-AAGAATGGCATAACCATTGGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "3f969a8b-7440-4b09-8565-123da02ef121", "aliases:array": "brenton-graveley:RBM17-human", "modified_site_by_target_id": "RBM17-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000010600", "rnai_sequences:array": "CCGG-CCGGTGATCCTTAAATGAACT-CTCGAG-AGTTCATTTAAGGATCACCGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c9e91559-4022-457d-8851-7d26b0288a5a", "aliases:array": "brenton-graveley:RBM22_10-human", "modified_site_by_target_id": "RBM22-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000232010", "rnai_sequences:array": "CCGG-CCATTACTGAGACAGATTTAA-CTCGAG-TTAAATCTGTCTCAGTAATGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c8663c0c-5d75-4830-9b58-6583b6d5330b", "aliases:array": "brenton-graveley:RBM22-human", "modified_site_by_target_id": "RBM22-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000008650", "rnai_sequences:array": "CCGG-GCCGCAGACTGAATGTGAAAT-CTCGAG-ATTTCACATTCAGTCTGCGGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "eab2206e-e6a7-4943-aa6c-b926f57675fa", "aliases:array": "brenton-graveley:RBM25-human", "modified_site_by_target_id": "RBM25-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074750", "rnai_sequences:array": "CCGG-GCGCCTTAAGAATTGGGAAAT-CTCGAG-ATTTCCCAATTCTTAAGGCGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "338fc983-4d2d-4899-a31b-1f1ea22bdfc5", "aliases:array": "brenton-graveley:RBM27-human", "modified_site_by_target_id": "RBM27-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000247707", "rnai_sequences:array": "CCGG-ACAACTGAGAGTTGGTCTAAT-CTCGAG-ATTAGACCAACTCTCAGTTGT-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "89441aa0-cc20-4e71-bfd5-b0b3e7fb3b5d", "aliases:array": "brenton-graveley:RBM3-human", "modified_site_by_target_id": "RBM3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001248", "rnai_sequences:array": "CCGG-CCCAATGTACCTATAAGAAAT-CTCGAG-ATTTCTTATAGGTACATTGGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "cb5d254b-8050-444e-925d-3e0ec736da5d", "aliases:array": "brenton-graveley:RBM34-human", "modified_site_by_target_id": "RBM34-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000147509", "rnai_sequences:array": "CCGG-GCTATGTGCTCTTTGAGAATA-CTCGAG-TATTCTCAAAGAGCACATAGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e64e3994-8ec9-4ae8-9c1e-5a9f6dae3a34", "aliases:array": "brenton-graveley:RBM39-human", "modified_site_by_target_id": "RBM39-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000021770", "rnai_sequences:array": "CCGG-GCTGGACCTATGAGGCTTTAT-CTCGAG-ATAAAGCCTCATAGGTCCAGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "496754ff-0471-4fca-b122-ee6021141db6", "aliases:array": "brenton-graveley:RBM47-human", "modified_site_by_target_id": "RBM47-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074563", "rnai_sequences:array": "CCGG-CGCTTGACTATTTATGAAGAA-CTCGAG-TTCTTCATAAATAGTCAAGCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "94825f63-1756-4acd-a920-53dc74037397", "aliases:array": "brenton-graveley:RCC2-human", "modified_site_by_target_id": "RCC2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000153686", "rnai_sequences:array": "CCGG-CAACTCAGATGGGAAGTTCAT-CTCGAG-ATGAACTTCCCATCTGAGTTG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e49a22e9-e84b-4e5d-9576-0922a015acec", "aliases:array": "brenton-graveley:RDBP-human;brenton-graveley:NELFE-human", "modified_site_by_target_id": "NELFE-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074958", "rnai_sequences:array": "CCGG-CTGGATTCCTTGTGCCTCATA-CTCGAG-TATGAGGCACAAGGAATCCAG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "a99b01d8-136f-4e80-ace1-8cfa200a2c75", "aliases:array": "brenton-graveley:RECQL-human", "modified_site_by_target_id": "RECQL-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000052001", "rnai_sequences:array": "CCGG-GCACATGCTATTACTATGCAA-CTCGAG-TTGCATAGTAATAGCATGTGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0038b2a0-43c3-478f-a6f7-7e5a0c3bcf5e", "aliases:array": "brenton-graveley:RPL23A-human", "modified_site_by_target_id": "RPL23A-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000075031", "rnai_sequences:array": "CCGG-CCTCCTAAAGCTGAAGCCAAA-CTCGAG-TTTGGCTTCAGCTTTAGGAGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c4f85c4a-fba2-47a2-90c6-59c705ce4028", "aliases:array": "brenton-graveley:RPLP0-human", "modified_site_by_target_id": "RPLP0-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000117527", "rnai_sequences:array": "CCGG-GCTTTAGGTATCACCACTAAA-CTCGAG-TTTAGTGGTGATACCTAAAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "52290d1b-3e13-47f0-a48f-6ba729ad9b4a", "aliases:array": "brenton-graveley:RPS10-human", "modified_site_by_target_id": "RPS10-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074810", "rnai_sequences:array": "CCGG-CTGGAGACATTTCTACTGGTA-CTCGAG-TACCAGTAGAAATGTCTCCAG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "28bfb795-d9ff-4645-92dc-76dd3968442e", "aliases:array": "brenton-graveley:RPS19-human", "modified_site_by_target_id": "RPS19-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074913", "rnai_sequences:array": "CCGG-CTACGATGAGAACTGGTTCTA-CTCGAG-TAGAACCAGTTCTCATCGTAG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "5e4484fe-89c7-41a9-93a6-dce5512c9b14", "aliases:array": "brenton-graveley:RPS2-human", "modified_site_by_target_id": "RPS2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000117482", "rnai_sequences:array": "CCGG-CCACCTTTGATGCCATTTCTA-CTCGAG-TAGAAATGGCATCAAAGGTGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0901f28e-8d4a-4a28-ad0b-6487b929d727", "aliases:array": "brenton-graveley:RPS3-human", "modified_site_by_target_id": "RPS3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000005165", "rnai_sequences:array": "CCGG-GCCACCAGAACACAGAATGTT-CTCGAG-AACATTCTGTGTTCTGGTGGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1a00e926-1568-4523-b530-a49daa5503eb", "aliases:array": "brenton-graveley:RPS3A-human", "modified_site_by_target_id": "RPS3A-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074709", "rnai_sequences:array": "CCGG-CCGGAAGAAGATGATGGAAAT-CTCGAG-ATTTCCATCATCTTCTTCCGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b41793a5-629c-4290-91d4-3c04eb45020e", "aliases:array": "brenton-graveley:RPS5-human", "modified_site_by_target_id": "RPS5-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074755", "rnai_sequences:array": "CCGG-CGGAACATTAAGACCATTGCT-CTCGAG-AGCAATGGTCTTAATGTTCCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "13b090f8-d698-4893-a878-6da094704e9d", "aliases:array": "brenton-graveley:RRP9-human", "modified_site_by_target_id": "RRP9-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000180751", "rnai_sequences:array": "CCGG-GCTTGACCTTCTCTGTGACAT-CTCGAG-ATGTCACAGAGAAGGTCAAGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "cb5342fe-43b0-49bd-9ac4-73817722c088", "aliases:array": "brenton-graveley:RTF1-human", "modified_site_by_target_id": "RTF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000022360", "rnai_sequences:array": "CCGG-GCCAAACAAATCCAAGATCAA-CTCGAG-TTGATCTTGGATTTGTTTGGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d594eacb-11e4-4ddc-a9b1-05e759010d8b", "aliases:array": "brenton-graveley:SAFB2-human", "modified_site_by_target_id": "SAFB2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000075057", "rnai_sequences:array": "CCGG-GACATGAGTGTGCTAGACGAA-CTCGAG-TTCGTCTAGCACACTCATGTC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "62ec4e4a-c592-4320-be21-a346d6732090", "aliases:array": "brenton-graveley:SART3-human", "modified_site_by_target_id": "SART3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000148806", "rnai_sequences:array": "CCGG-CGTTTCAATGAGAGTGGTGAT-CTCGAG-ATCACCACTCTCATTGAAACG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "3c3d0ef7-5489-4644-86a5-1131ffd5e7d6", "aliases:array": "brenton-graveley:SBDS-human", "modified_site_by_target_id": "SBDS-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000119047", "rnai_sequences:array": "CCGG-GCCAAATACTTGCTTAAACTA-CTCGAG-TAGTTTAAGCAAGTATTTGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "2d04fa2e-977d-49c2-8973-c32b25a6ab97", "aliases:array": "brenton-graveley:SERBP1-human", "modified_site_by_target_id": "SERBP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000160878", "rnai_sequences:array": "CCGG-GATTCGGTTATGGACCATCAT-CTCGAG-ATGATGGTCCATAACCGAATC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "fa376dcf-c17a-4f7d-a573-bec872efb17d", "aliases:array": "brenton-graveley:SF1-human", "modified_site_by_target_id": "SF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001069", "rnai_sequences:array": "CCGG-GCGTTCTCTTCACTGGTTTAT-CTCGAG-ATAAACCAGTGAAGAGAACGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1bc207f1-436d-44c4-a616-dd02f2dbac72", "aliases:array": "brenton-graveley:SF3A3-human", "modified_site_by_target_id": "SF3A3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000056", "rnai_sequences:array": "CCGG-CGAGACACTGAAAGGAACAAA-CTCGAG-TTTGTTCCTTTCAGTGTCTCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "80e7ecbf-6ca9-4ea3-a6f5-4249e06f17e2", "aliases:array": "brenton-graveley:SF3B1-human", "modified_site_by_target_id": "SF3B1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000077", "rnai_sequences:array": "CCGG-CAACTCCTTATGGTATCGAAT-CTCGAG-ATTCGATACCATAAGGAGTTG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "971664e5-9625-4eb1-ba7c-820d7e8c6637", "aliases:array": "brenton-graveley:SF3B4-human", "modified_site_by_target_id": "SF3B4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000039", "rnai_sequences:array": "CCGG-CCGTCCTATCACCGTATCTTA-CTCGAG-TAAGATACGGTGATAGGACGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "220b67c5-2e97-4a23-a242-d885678852a5", "aliases:array": "brenton-graveley:SFPQ-human", "modified_site_by_target_id": "SFPQ-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001084", "rnai_sequences:array": "CCGG-GCGCCAAAGAGAGGAAAGTTA-CTCGAG-TAACTTTCCTCTCTTTGGCGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0f9cfeed-ffa8-43f8-ae5a-f89c4750f648", "aliases:array": "brenton-graveley:SLBP-human", "modified_site_by_target_id": "SLBP-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000106680", "rnai_sequences:array": "CCGG-CCAGCGAGCTTAATTGCGTAA-CTCGAG-TTACGCAATTAAGCTCGCTGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "fad13096-b7ad-472f-9420-f2f4f3df789e", "aliases:array": "brenton-graveley:SLTM-human", "modified_site_by_target_id": "SLTM-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000135106", "rnai_sequences:array": "CCGG-CCCAACATTCAAGTAACGCAT-CTCGAG-ATGCGTTACTTGAATGTTGGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "bacdc720-2a22-4b34-a35a-7c8459893d15", "aliases:array": "brenton-graveley:SMN1-human", "modified_site_by_target_id": "SMN1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000118704", "rnai_sequences:array": "CCGG-CAGAGCGATGATTCTGACATT-CTCGAG-AATGTCAGAATCATCGCTCTG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "8db0f6ea-06ea-4b41-aead-d108f491e5fc", "aliases:array": "brenton-graveley:SMNDC1-human", "modified_site_by_target_id": "SMNDC1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001138", "rnai_sequences:array": "CCGG-CTGGTAAAGTTGGAGTAGGAA-CTCGAG-TTCCTACTCCAACTTTACCAG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "18eb0e10-1836-45c8-b47b-e4623ea540eb", "aliases:array": "brenton-graveley:SND1-human", "modified_site_by_target_id": "SND1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000049653", "rnai_sequences:array": "CCGG-CCCACAGCTAATTTGGACCAA-CTCGAG-TTGGTCCAAATTAGCTGTGGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "affd2171-8333-490b-b297-fc270ac0b59c", "aliases:array": "brenton-graveley:SNRNP200-human", "modified_site_by_target_id": "SNRNP200-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000051832", "rnai_sequences:array": "CCGG-CCAATGATACAGTGCAGACTT-CTCGAG-AAGTCTGCACTGTATCATTGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "4157879b-a9c0-467c-a754-e41b98a8269e", "aliases:array": "brenton-graveley:SNRNP70-human", "modified_site_by_target_id": "SNRNP70-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000012", "rnai_sequences:array": "CCGG-TCCGCTTACAAACACGCAGAT-CTCGAG-ATCTGCGTGTTTGTAAGCGGA-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "552a12c3-e828-426e-897d-4388658a5c61", "aliases:array": "brenton-graveley:SRFBP1_57-human", "modified_site_by_target_id": "SRFBP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000168057", "rnai_sequences:array": "CCGG-CCAGATTCTACTGCAACTGAA-CTCGAG-TTCAGTTGCAGTAGAATCTGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "9e93e25d-377b-40f0-bf9b-30d63dac4dee", "aliases:array": "brenton-graveley:SRFBP1-human", "modified_site_by_target_id": "SRFBP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000166862", "rnai_sequences:array": "CCGG-CCACTCTTTATCTGGATCTAA-CTCGAG-TTAGATCCAGATAAAGAGTGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "aa13bdda-9c15-478b-8646-9047aeca9a45", "aliases:array": "brenton-graveley:SRP68-human", "modified_site_by_target_id": "SRP68-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000075080", "rnai_sequences:array": "CCGG-CCGACTCTATGACATCATCTT-CTCGAG-AAGATGATGTCATAGAGTCGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "75b67897-c364-4d80-9394-092e4b8a722b", "aliases:array": "brenton-graveley:SRPK2-human", "modified_site_by_target_id": "SRPK2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000006277", "rnai_sequences:array": "CCGG-CGTTGTGTGAAGAGTATCATT-CTCGAG-AATGATACTCTTCACACAACG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "4ca4a8ec-d32a-4080-b302-565198f790ec", "aliases:array": "brenton-graveley:SRSF1-human", "modified_site_by_target_id": "SRSF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001095", "rnai_sequences:array": "CCGG-GAAGCAGGTGATGTATGTTAT-CTCGAG-ATAACATACATCACCTGCTTC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "19aa9d80-5851-49cd-8cd2-e6b68c1ccc63", "aliases:array": "brenton-graveley:SRSF3-human", "modified_site_by_target_id": "SRSF3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001224", "rnai_sequences:array": "CCGG-CGAGAGCTAGATGGAAGAACA-CTCGAG-TGTTCTTCCATCTAGCTCTCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "6b2171f2-8899-480e-8370-28813ebe680f", "aliases:array": "brenton-graveley:SRSF4-human", "modified_site_by_target_id": "SRSF4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000006627", "rnai_sequences:array": "CCGG-GCAGTCATTCTAAGAGTAGAT-CTCGAG-ATCTACTCTTAGAATGACTGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "5ce9e1cc-3adb-4419-9ed2-72a21fa3798f", "aliases:array": "brenton-graveley:SRSF5-41-human", "modified_site_by_target_id": "SRSF5-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000000141", "rnai_sequences:array": "CCGG-TGGAAGAGGTAGAGGACGATA-CTCGAG-TATCGTCCTCTACCTCTTCCA-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "97de53fa-71db-47bd-a87e-680f5b106464", "aliases:array": "brenton-graveley:SRSF5-human", "modified_site_by_target_id": "SRSF5-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000284799", "rnai_sequences:array": "CCGG-AGTAGTCGCAGACCTCGAAAT-CTCGAG-ATTTCGAGGTCTGCGACTACT-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "909be9f8-9829-4b0e-a4a3-5c88dec422a3", "aliases:array": "brenton-graveley:SRSF7-human", "modified_site_by_target_id": "SRSF7-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001142", "rnai_sequences:array": "CCGG-GAACTGTATGGATTGCGAGAA-CTCGAG-TTCTCGCAATCCATACAGTTC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "6ce42e57-0c12-4982-bee2-7e0c3de44e65", "aliases:array": "brenton-graveley:SRSF9-human", "modified_site_by_target_id": "SRSF9-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000006630", "rnai_sequences:array": "CCGG-GACACCAAATTCCGCTCTCAT-CTCGAG-ATGAGAGCGGAATTTGGTGTC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "31793075-3d3d-4e45-9c4a-1e2fc9422d0f", "aliases:array": "brenton-graveley:SSB_97-human", "modified_site_by_target_id": "SSB-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000062197", "rnai_sequences:array": "CCGG-GCTGAAATGAAATCTCTAGAA-CTCGAG-TTCTAGAGATTTCATTTCAGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ce24eb61-6d49-47f1-82a9-c05fadcd7980", "aliases:array": "brenton-graveley:SSB-human", "modified_site_by_target_id": "SSB-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000062194", "rnai_sequences:array": "CCGG-CCAACAAGAATCCCTAAACAA-CTCGAG-TTGTTTAGGGATTCTTGTTGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b63abcfc-c984-43f5-9080-f71fc9e0a293", "aliases:array": "brenton-graveley:SSRP1-human", "modified_site_by_target_id": "SSRP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000019272", "rnai_sequences:array": "CCGG-CGCTTCGATGAGATCTCCTTT-CTCGAG-AAAGGAGATCTCATCGAAGCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "6393bd63-7a23-4f41-912c-4873eef26bf5", "aliases:array": "brenton-graveley:STAU1-human", "modified_site_by_target_id": "STAU1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000158514", "rnai_sequences:array": "CCGG-CAAGTGTTTGAGATTGCACTT-CTCGAG-AAGTGCAATCTCAAACACTTG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "de41e95f-1ff8-4ed6-b95d-68f9c4268f3c", "aliases:array": "brenton-graveley:STAU2-human", "modified_site_by_target_id": "STAU2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000157149", "rnai_sequences:array": "CCGG-GCCAGGGAACTCCTTATGAAT-CTCGAG-ATTCATAAGGAGTTCCCTGGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "93b8bed2-9d74-47a5-bb6c-31640b270cc5", "aliases:array": "brenton-graveley:STIP1-human", "modified_site_by_target_id": "STIP1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000243098", "rnai_sequences:array": "CCGG-ACCCGAAAGATGCCAAATTAT-CTCGAG-ATAATTTGGCATCTTTCGGGT-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "737922b6-e980-47e3-af7e-be3375fc1523", "aliases:array": "brenton-graveley:SUB1-human", "modified_site_by_target_id": "SUB1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000014970", "rnai_sequences:array": "CCGG-GTACGTTAGTGTTCGCGATTT-CTCGAG-AAATCGCGAACACTAACGTAC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "645d2b90-5e92-4b5d-807a-1f5568639324", "aliases:array": "brenton-graveley:SUCLG1-human", "modified_site_by_target_id": "SUCLG1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000048510", "rnai_sequences:array": "CCGG-CGGCAACATCTCTATGTTGAT-CTCGAG-ATCAACATAGAGATGTTGCCG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0325f287-eb68-4156-8994-2600f4d8e6e2", "aliases:array": "brenton-graveley:SUGP2-human", "modified_site_by_target_id": "SUGP2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000152597", "rnai_sequences:array": "CCGG-GTCATTGAAGGTTGGCATGAT-CTCGAG-ATCATGCCAACCTTCAATGAC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "106f6672-41c0-420a-b6bd-4ed2d6acfe27", "aliases:array": "brenton-graveley:SUPT6H-human", "modified_site_by_target_id": "SUPT6H-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000019733", "rnai_sequences:array": "CCGG-CCAACCGTGAATGGACTGTTT-CTCGAG-AAACAGTCCATTCACGGTTGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "f88600a7-2ec1-4ea5-b3fe-0acfa3afa26a", "aliases:array": "brenton-graveley:SUPV3L1-human", "modified_site_by_target_id": "SUPV3L1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000050349", "rnai_sequences:array": "CCGG-CCGATACATCAAATGGCCTTT-CTCGAG-AAAGGCCATTTGATGTATCGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "84cc589e-8e85-44e8-ab60-0a450baadf70", "aliases:array": "brenton-graveley:TAF15-human", "modified_site_by_target_id": "TAF15-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000020143", "rnai_sequences:array": "CCGG-GCTCGAAGGAATTCCTGCAAT-CTCGAG-ATTGCAGGAATTCCTTCGAGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "7d0aa3c6-a2b3-48d0-87c2-3d68c3783421", "aliases:array": "brenton-graveley:TARDBP_41-human", "modified_site_by_target_id": "TARDBP-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000016041", "rnai_sequences:array": "CCGG-GCAATAGACAGTTAGAAAGAA-CTCGAG-TTCTTTCTAACTGTCTATTGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0156143f-222f-4f84-9263-6c4860d4591d", "aliases:array": "brenton-graveley:TARDBP-human", "modified_site_by_target_id": "TARDBP-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000016038", "rnai_sequences:array": "CCGG-GCTCTAATTCTGGTGCAGCAA-CTCGAG-TTGCTGCACCAGAATTAGAGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "cd84258e-ac56-4f7f-9c76-da493d7746aa", "aliases:array": "brenton-graveley:TBRG4-human", "modified_site_by_target_id": "TBRG4-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000154962", "rnai_sequences:array": "CCGG-GATGCCCACTTTCATCAACTT-CTCGAG-AAGTTGATGAAAGTGGGCATC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "82abceb1-a68e-4ac9-ac03-31e4f2cdcc31", "aliases:array": "brenton-graveley:TFIP11-human", "modified_site_by_target_id": "TFIP11-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074507", "rnai_sequences:array": "CCGG-CCTGGGTTGGAAGTCGATGTT-CTCGAG-AACATCGACTTCCAACCCAGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ba444001-8e94-4306-ad8c-72938ec12a63", "aliases:array": "brenton-graveley:TIA1-human", "modified_site_by_target_id": "TIA1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074463", "rnai_sequences:array": "CCGG-GCCGTTGTTTACTTAAAGATT-CTCGAG-AATCTTTAAGTAAACAACGGC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "bdb674e1-53ad-499a-841b-09832b412e32", "aliases:array": "brenton-graveley:TIAL1-human", "modified_site_by_target_id": "TIAL1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000017211", "rnai_sequences:array": "CCGG-CGGATATGGTATGGCAAGTTA-CTCGAG-TAACTTGCCATACCATATCCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ecc38330-60f5-4416-8eb1-4d89b19ba997", "aliases:array": "brenton-graveley:TRA2A-human", "modified_site_by_target_id": "TRA2A-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000074548", "rnai_sequences:array": "CCGG-CCCAATGTTATGTTATGCTTT-CTCGAG-AAAGCATAACATAACATTGGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "bd79170c-c3d9-425e-8a5f-cd1fb9b66fd9", "aliases:array": "brenton-graveley:TRIM56-human", "modified_site_by_target_id": "TRIM56-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000073093", "rnai_sequences:array": "CCGG-CGTCTTCTAGTGTGTGAGAAT-CTCGAG-ATTCTCACACACTAGAAGACG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "f1eeb4a6-066e-4034-917b-f86572393809", "aliases:array": "brenton-graveley:TRIP6-human", "modified_site_by_target_id": "TRIP6-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000061440", "rnai_sequences:array": "CCGG-GTGAGAATTGTTGCTCTGGAT-CTCGAG-ATCCAGAGCAACAATTCTCAC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "d265279a-5f71-4025-becf-8ce794e2d75e", "aliases:array": "brenton-graveley:TROVE2-human", "modified_site_by_target_id": "TROVE2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000160593", "rnai_sequences:array": "CCGG-CGTTTCTTACTAGCTGTTGAT-CTCGAG-ATCAACAGCTAGTAAGAAACG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c74a86dd-6240-4404-ab8d-0bd7b68072ce", "aliases:array": "brenton-graveley:TUFM-human", "modified_site_by_target_id": "TUFM-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000165718", "rnai_sequences:array": "CCGG-CATAGCAAGAACATCCGCACT-CTCGAG-AGTGCGGATGTTCTTGCTATG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b411780c-557e-46fd-98ec-8a049c906f38", "aliases:array": "brenton-graveley:U2AF1_58-human", "modified_site_by_target_id": "U2AF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001158", "rnai_sequences:array": "CCGG-GAGATGCAGGAACACTATGAT-CTCGAG-ATCATAGTGTTCCTGCATCTC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "e967e90f-19d9-40f2-948b-bc78fb880b05", "aliases:array": "brenton-graveley:U2AF1-human", "modified_site_by_target_id": "U2AF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001155", "rnai_sequences:array": "CCGG-GAAAGTGTTGTAGTTGATTGA-CTCGAG-TCAATCAACTACAACACTTTC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "9398683c-f3d7-4226-a43f-28792803d047", "aliases:array": "brenton-graveley:U2AF2-human", "modified_site_by_target_id": "U2AF2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000001162", "rnai_sequences:array": "CCGG-CGACGAGGAGTATGAGGAGAT-CTCGAG-ATCTCCTCATACTCCTCGTCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "c42a0470-1ae5-4651-9adb-2d4bba5b3178", "aliases:array": "brenton-graveley:UBE2L3-human", "modified_site_by_target_id": "UBE2L3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000007209", "rnai_sequences:array": "CCGG-CCAGCAGAGTACCCATTCAAA-CTCGAG-TTTGAATGGGTACTCTGCTGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "02ec9de0-6fe4-4a28-9f88-6f1312d37faa", "aliases:array": "brenton-graveley:UCHL5-human", "modified_site_by_target_id": "UCHL5-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000004127", "rnai_sequences:array": "CCGG-CCTGTTAATGGGAGACTGTAT-CTCGAG-ATACAGTCTCCCATTAACAGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1826f0ad-666b-4493-86a1-5caa3acbe607", "aliases:array": "brenton-graveley:UPF1_54-human", "modified_site_by_target_id": "UPF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000022254", "rnai_sequences:array": "CCGG-GCATCTTATTCTGGGTAATAA-CTCGAG-TTATTACCCAGAATAAGATGC-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "9a717ada-674c-43cb-8ac0-76f848befe75", "aliases:array": "brenton-graveley:UPF1-human", "modified_site_by_target_id": "UPF1-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000022257", "rnai_sequences:array": "CCGG-CCAACCCGATAAACCGATGTT-CTCGAG-AACATCGGTTTATCGGGTTGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "0d3d8c27-0eac-422c-993f-f64d57d02690", "aliases:array": "brenton-graveley:UPF2-human", "modified_site_by_target_id": "UPF2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000157152", "rnai_sequences:array": "CCGG-GCGAGATACGTCACAATGGTA-CTCGAG-TACCATTGTGACGTATCTCGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "1d78c620-1382-40cb-9be6-2ab6ad9b37eb", "aliases:array": "brenton-graveley:UTP18-human", "modified_site_by_target_id": "UTP18-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000143493", "rnai_sequences:array": "CCGG-GAGAAGTGGATACTTTGCCTT-CTCGAG-AAGGCAAAGTATCCACTTCTC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "deefa64f-aa2a-4734-a34d-5593b3d591d4", "aliases:array": "brenton-graveley:UTP3_98-human", "modified_site_by_target_id": "UTP3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000135598", "rnai_sequences:array": "CCGG-GAACTCTTGGAGCTGATAGAA-CTCGAG-TTCTATCAGCTCCAAGAGTTC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "86183d3b-77ea-4839-9da4-e4b6c1d95b9d", "aliases:array": "brenton-graveley:UTP3-human", "modified_site_by_target_id": "UTP3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000134895", "rnai_sequences:array": "CCGG-CCTAGGAGAAAGAAGATTGAT-CTCGAG-ATCAATCTTCTTTCTCCTAGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "50d9f4aa-e09b-4d7c-a5a2-69d9559a2513", "aliases:array": "brenton-graveley:WDR3-human", "modified_site_by_target_id": "WDR3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000146609", "rnai_sequences:array": "CCGG-CCTGGAATACAAGATACTCTT-CTCGAG-AAGAGTATCTTGTATTCCAGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "ec91aa5a-5947-4aa4-8ce7-fed51fc4f59d", "aliases:array": "brenton-graveley:WDR43-human", "modified_site_by_target_id": "WDR43-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000253868", "rnai_sequences:array": "CCGG-ACCGATGAACCTGTCTATATT-CTCGAG-AATATAGACAGGTTCATCGGT-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "a16d898e-ee33-4049-9a22-af71798bcccd", "aliases:array": "brenton-graveley:WRN-human", "modified_site_by_target_id": "WRN-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000004899", "rnai_sequences:array": "CCGG-CCTGTAAGATTGCTTTAAGAA-CTCGAG-TTCTTAAAGCAATCTTACAGG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b3dafbea-6cdd-4f4d-b034-47605c303e2d", "aliases:array": "brenton-graveley:XPO5-human", "modified_site_by_target_id": "XPO5-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000158915", "rnai_sequences:array": "CCGG-CCAGATGTTTCGAACACTAAA-CTCGAG-TTTAGTGTTCGAAACATCTGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "da516ba9-046d-40e7-968f-0aa72cf285a3", "aliases:array": "brenton-graveley:XRCC5-human", "modified_site_by_target_id": "XRCC5-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000010467", "rnai_sequences:array": "CCGG-TGAAGATGGACCTACAGCTAA-CTCGAG-TTAGCTGTAGGTCCATCTTCA-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "4779a57c-3b93-4cc3-b54e-64690f8ee656", "aliases:array": "brenton-graveley:XRCC6-human", "modified_site_by_target_id": "XRCC6-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000039609", "rnai_sequences:array": "CCGG-GATGAGTCATAAGAGGATCAT-CTCGAG-ATGATCCTCTTATGACTCATC-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "97aa7a74-c45d-47bd-aee1-5867a227f4ec", "aliases:array": "brenton-graveley:XRN2-human", "modified_site_by_target_id": "XRN2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000049899", "rnai_sequences:array": "CCGG-CCCTGAACTATGTCATGGGAT-CTCGAG-ATCCCATGACATAGTTCAGGG-TTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "7a1e6077-ba1f-4e8f-87f3-a883a3b22491", "aliases:array": "brenton-graveley:YBX3-human", "modified_site_by_target_id": "YBX3-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000013230", "rnai_sequences:array": "CCGG-CGGAAATATCTGCGCAGTGTA-CTCGAG-TACACTGCGCAGATATTTCCG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "23ad2ee3-6512-452f-847a-8f20d4bfef8a", "aliases:array": "brenton-graveley:YTHDC2-human", "modified_site_by_target_id": "YTHDC2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000154178", "rnai_sequences:array": "CCGG-CCCTCGTCACATCTCTTATAT-CTCGAG-ATATAAGAGATGTGACGAGGG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "f766b5c3-2eb6-4311-b670-5f6b5fd3c493", "aliases:array": "brenton-graveley:ZC3H8-human", "modified_site_by_target_id": "ZC3H8-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000163399", "rnai_sequences:array": "CCGG-GCTGGTCACAAGAATGGCAAA-CTCGAG-TTTGCCATTCTTGTGACCAGC-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "365b6d0b-0c9e-4b6d-958c-abb826bdd069", "aliases:array": "brenton-graveley:ZNF622-human", "modified_site_by_target_id": "ZNF622-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000160244", "rnai_sequences:array": "CCGG-CAGTATGTCCAAAGGATGAAA-CTCGAG-TTTCATCCTTTGGACATACTG-TTTTTTG", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "8851172d-40b4-45f3-b755-1c80b082170a", "aliases:array": "brenton-graveley:ZRANB2-human", "modified_site_by_target_id": "ZRANB2-human", "reagent_availability:object:array": "source:trc, identifier:TRCN0000013427", "rnai_sequences:array": "CCGG-CTTCACATTCACGATCTTCAT-CTCGAG-ATGAAGATCGTGAATGTGAAG-TTTTT", "documents:array": "/documents/2c514fe4-585b-4ad1-b8ae-41295a11d17b/", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/599e4901-78bf-422f-b65d-f3443c6a6450/", "lab": "brenton-graveley", "award": "U54HG007005"}, - {"uuid": "b9fbe6bf-eb86-4f1e-972a-4b2aef278f6e", "aliases:array": "modencode:CG10128_RNAi", "modified_site_by_target_id": "tra2-dmelanogaster", "rnai_sequences:array": "AACAAGTACGGACCTATCGAACGCATCCAGATGGTGATTGACGCACAAACACAGCGTTCCCGGGGCTTTTGTTTCATTTACTTTGAGAAACTCAGCGATGCCCGCGCGGCTAAGGACAGCTGCTCCGGAATAGAAGTGGATGGTCGCCGTATTCGCGTCGATTTCTCTATAACCCAACGGGCTCATACCCCAACTCCGGGTGTGTATTTGGGTCGTCAGCCGCGTGGAAAAGCTCCACGCTCATTTTCACCGCGTAGAGGACGCCGTGTGTATCACGATCGCTCCGCTTCGCCCTATGACAACTATCGTGATCGCTATGATTACCGCAACGATCGCTACGACCGTAATCTCCGCAGGAGCCCTAGTCGCAACCGTTACACTCGCAACAGGAGCTACAGCCGTTCACGCTCTCCGCAACTACGTCGAACTTCATCGCGCTATTAAAGCGCCTGGGGAGGAGGCTACTTCATTAACTCGTGCTCCTAAGTTCGCCCAACT", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "fa519191-e574-48cd-bd22-ee6bc65b4886", "aliases:array": "modencode:CG10203_RNAi", "modified_site_by_target_id": "x16-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AAGGTGTACGTGGGCGATCTGGGCAACAATGCCCGGAAGAACGACCTGGAGTATGTATTTGGAGCGTACGGCAGTTTGCGCAGCGTCTGGATAGCCCGCAATCCGCCGGGCTTCGCCTTCGTGGAGTTTGAGAGTGCCCGCGATGCGGCGGATGCGGTGCGCGGATTGGACGGACGGACGGTTTGCGGGCGCCGAGCCCGTGTGGAATTGTCCACCGGAAAGTATGCTAGGTCCGGCGGTGGTGGTGGCGGAGGTGGTGGAGGCGGTGGTGGTGGAGGACTCGGAGGACGCGACCGAGGCGGCGGTGGTCGTGGGGACGATAAGTGCTACGAGTGCGGCGGACGGGGGCATTTCGCTCGCCACTGTCGCGAAAGGAAGGCCAGGCAGCGACGCAGAAGCAACTCATTCAGCAGATCTCGGAGCACATCGCGACGCAGGCGCACTCGCTCCAAGTCCGGAACTCGAT", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "e547e3be-92aa-43a8-af9a-2873e7930cd1", "aliases:array": "modencode:CG10279_RNAi", "modified_site_by_target_id": "Rm62-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CATCTACGACACCAGCGAGAGCCCCGGCAAGATTATCATATTCGTGGAGACAAAGCGACGCGTGGACAACCTGGTGCGCTTCATCCGCAGCTTCGGAGTCCGTTGTGGAGCTATTCACGGTGACAAGTCGCAATCAGAACGAGACTTTGTGCTCCGTGAGTTCCGCTCGGGCAAGTCCAACATTCTGGTGGCCACCGATGTGGCGGCCCGTGGACTAGACGTGGACGGCATCAAGTATGTCATCAACTTTGACTACCCGCAAAACAGCGAGGACTACATCCATCGCATCGGTCGCACAGGACGATCCAACACAAAGGGCACCTCTTTCGCCTTCTTCACCAAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "aad9ee5e-4404-48ce-8d72-2ea143103b30", "aliases:array": "modencode:CG10328_RNAi", "modified_site_by_target_id": "nonA-l-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AACTGATGACGACCTACGGGAGATGTTCAAGCCATATGGCGAGATCGGCGATATATTCTCGAACCCGGAGAAGAACTTTACATTCCTGAGGCTAGACTACTACCAAAATGCTGAGAAGGCCAAACGCGCTTTAGATGGCTCCTTGCGCAAGGGACGAGTGCTGCGTGTCCGCTTTGCGCCCAACGCCATTGTGCGTGTGACTAATCTCAACCAGTTCGTGTCCAACGAGCTGCTGCACCAGTCCTTTGAGATCTTTGGACCCATCGAGCGCGCCGTTATCTGCGTAGACGATCGCGGTAAGCATACCGGCGAAGGCATTGTTGAGTTCGCCAAGAAGTCCTCGGCCAGCGCCTGTCTGCGCCTGTGCAACGAAAAATGCTTCTTCTTGACTGCTTCATTGCGTCCGTGTCTGGTGGAACCGATGGAGGTGAACAACGACAATGACG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "5b5cc767-1973-41ee-9b30-d2c23e784b3c", "aliases:array": "modencode:CG10377_RNAi", "modified_site_by_target_id": "Hrb27C-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "TGAGCACGTGACCAACGAGCGGTACATCAATCTGAATGGCAAGCAGGTCGAAATCAAGAAGGCCGAGCCTCGTGATGGATCTGGCGGCCAAAACTCCAACAACAGTACCGTGGGAGGCGCCTATGGCAAGCTTGGTAACGAGTGCAGCCACTGGGGACCGCACCATGCTCCCATCAACATGATGCAGGGCCAGAATGGCCAGATGGGTGGACCGCCGCTGAATATGCCCATTGGAGCGCCGAATATGATGCCTGGCTATCAGGGTTGGGGCACCTCGCCGCAGCAGCAACAATACGGCTACGGCAACAGTGGCCCAGGATCGTACCAGGGATGGGGAGCTCCACCAGGACCCCAGGGACCACCACCGCAGTGGTCGAACTACGCTGGACCTCAGCAGACGCAGGGCTACGGCGGATACGACATGTATAACTCGACGTCGACCGGAGCTCCTTCGGGACCATCGGGCGGCGGCAGCTGGAACTCGTGGAACATGCCACCTA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "9dd04575-d1ac-4180-ae9d-e89a2bdc32c6", "aliases:array": "modencode:CG10851_RNAi", "modified_site_by_target_id": "B52-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CATCAAAAATGGCTACGGCTTTGTGGAATTCGAAGACTATCGTGATGCCGACGATGCCGTCTATGAACTGAATGGCAAAGAGCTGCTTGGCGAACGTGTGGTTGTTGAACCCGCCAGGGGTACCGCTCGTGGCAGCAACCGCGACCGCTACGACGATCGATATGGTGGTCGGCGGGGGGGCGGGGGCGGTCGTTACAACGAAAAAAACAAAAATTCCAGATCATCCTCTCGTTATGGCCCACCGTTGCGCACTGAGTACCGACTGATTGTGGAGAATTTGTCTAGCCGCGTTAGCTGGCAGGATCTCAAGGATTACATGCGCCAGGCTGGCGAGGTCACCTATGCCGATGCCCACAAGCAGCGTCGCAATGAGGGCGTGGTTGAGTTCGCCTCGTTGTCGGACATGAAGACGGCCATTGAGAAGTTGGATGACACCGAGCT", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "962a501c-2d3b-4e87-9a08-a748d516c80b", "aliases:array": "modencode:CG1101_RNAi", "modified_site_by_target_id": "Ref1-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AACAGCGCTTGGAAGCACGATATGTACGACGGACCGAAGAGGGGTGCCGTCGGTGGAGGATCTGGACCCACCCGCCTCATCGTCGGTAACCTGGACTACGGCGTATCCAACACGGACATCAAGGAGCTCTTCAACGACTTTGGTCCGATAAAGAAGGCGGCAGTGCACTACGATCGCTCCGGTCGCTCGTTGGGCACCGCTGACGTGATTTTCGAACGTCGCGCCGACGCCTTGAAGGCCATTAAACAGTACCATGGCGTACCTTTGGACGGACGCCCTATGACCATTCAGCTGGCCGTCTCAGACGTGGCCGTGTTGACCCGTCCCGTAGCCGCCACCGATGTCAAGCGTCGCGTGGGTGGTACTGCACCAACTTCATTCAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "953b2139-5cfb-4bb0-96bd-8fb75dee4b18", "aliases:array": "modencode:CG11266_RNAi", "modified_site_by_target_id": "Caper-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "ACACGCAGGCTGAGAAGAATCGTCTCCAGAATGCAGCGCCGGCATTCCAACCGAAGAGTCACACGGGTCCCATGCGCCTCTACGTGGGATCACTGCACTTCAACATTACCGAGGACATGCTGCGGGGCATATTCGAGCCCTTTGGCAAGATCGATGCCATTCAACTGATCATGGATACGGAGACGGGCCGATCCAAGGGCTACGGCTTTATCACGTACCACAATGCTGACGATGCCAAAAAGGCTCTGGAACAGCTGAACGGCTTTGAACTGGCCGGTCGGCTCATGAAAGTGGGCAATGTGACGGAGCGACTGGACATGAATACCACCTCGCTGGACAC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "999ccbd6-c696-4c9f-97ce-e313558b1ab4", "aliases:array": "modencode:CG12749_RNAi", "modified_site_by_target_id": "Hrb87F-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CTACCGCACCACAGATGATGGCCTGAAGGCTCACTTCGAGAAGTGGGGCAACATTGTCGACGTGGTGGTGATGAAGGATCCCAAGACGAAGCGCTCTCGCGGCTTCGGTTTCATCACGTACTCCCAGTCGTACATGATCGACAATGCGCAGAATGCCAGGCCACACAAGATCGATGGACGCACCGTGGAGCCCAAGAGGGCTGTGCCACGCCAGGAGATCGATTCCCCGAATGCGGGAGCCACGGTAAAGAAGCTCTTTGTGGGCGGGCTTCGAGACGATCACGATGAAGAGTGCCTGCGCGAGTACTTCAAGGACTTTGGCCAGATCGTGAGCGTGAACATTGTTTCCGACAAGGACACCGGCAAGAAGCGCGGCTTCGCCTTCATTGAGTTC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "53477541-e312-43f1-b899-3d534279697b", "aliases:array": "modencode:CG13425_RNAi", "modified_site_by_target_id": "bl-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AAATACTTTGAGGAGCGCGACGAGGACTTTGATGTGCGTCTACTTATACACCAGAGCTTGGCCGGCTGCGTCATTGGCAAAGGTGGACAAAAGATCAAGGAGATCCGCGATCGCATCGGCTGCCGCTTTTTGAAGGTCTTCTCGAATGTGGCACCACAGAGCACAGATCGAGTGGTGCAGACCGTTGGCAAGCAGAGCCAGGTCATCGAAGCGGTTCGTGAGGTGATCACACTTACACGGGACACTCCCATCAAGGGGGCGATACATAACTATGATCCTATGAACTTTGACCGCGTATATGCCGATGAGTACGGTGGCTATGGC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "8c5b1f4a-2010-4c19-8d4e-a7a99d8f467b", "aliases:array": "modencode:CG1559_RNAi", "modified_site_by_target_id": "Upf1-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GGAGGAGCTATGGAAGGAGAATATTGAGGCCACGTTTCAGGATCTGGAGAAGCCAGGCATTGACTCGGAGCCAGCACATGTGCTACTCCGCTACGAGGATGGCTATCAGTACGAGAAGACCTTTGGGCCGCTGGTCCGCCTTGAGGCCGAATACGACCAAAAACTGAAGGAGTCTGCCACGCAGGAGAACATCGAAGTACGCTGGGACGTCGGCCTCAACAAAAAGACCATTGCCTACTTTACGCTGGCGAAGACCGATTCGGACATGAAGCTCATGCATGGCGACGAGCTGCGCCTGCATTATGTGGGCGAGCTGTACAATCCGTGGAGCGAGATCGGCCACGTTATCAAGGTGCCGGACAATTTCGGCGATGACGTCGGCCTGGAGCTGAAATCCTCAACGAATGCCCCGGTTAAGTGCACCAGTAACTTTACGGTGGACTTCATCTGGAAGTGCACGTCATTTGATCGCATGACACGTGCTCTGTGCAAATTCGCCATCGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "f30212eb-667c-409c-84ff-519f0954e567", "aliases:array": "modencode:CG1646_RNAi", "modified_site_by_target_id": "CG1646-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AATATAATCCGGGCAGTCCCACATCTGAGAGCAACGACGCACAGCCCTCAGAGAAAAAACTCAAGGTCGAAGAATCGGAGCCCAAGGAGAAAAAGAAGGAAAAGGAGCGCGATAAAGATAAGGAGAAGGATAAGGACAAAGATAATAATAAGGATAAGGAAAAGGAGCGAAAGAAGCTGCCGGACCTAGATAAGTACTGGAGAGCTGTCAAAGAAGACTCCACCGACTTCACCGGCTGGACGTACTTGCTGCAATATGTTGACAATGAGTCTGATGCGGAGGCGGCGCGCGAGGCCTACGACACATTCCTGTCCCACTATCCTTACTGCTACGGATATTGGCGCAAGTATGCCGACTACGAGAAGCGCAAGGGCATCAAGGCAAACTGCTATAAGGTGTTTGAGCGCGGACTGGAGGCGATTCCGCTGTCCGTGGATCTGTGGATCCACTACCTAATGCACGTTAAGTCCAATCACGGAGATGATGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "63b61b98-cb10-4626-9b2b-159713d41f2d", "aliases:array": "modencode:CG16788_RNAi", "modified_site_by_target_id": "RnpS1-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "ATTCATGTCGGTCGGCTTACCCGCAACGTTACCAAGGACCATGTGTTCGAGATATTTAGCAGCTTTGGGGATGTGAAGAATGTGGAGTTTCCCGTAGATCGTTTTCATCCTAACTTCGGACGCGGCGTGGCGTTTGTGGAATATGCCACACCCGAGGATTGTGAGTCGGCCATGAAGCATATGGATGGCGGGCAGATAGATGGCCAGGAGATTACGGTATCCCCGGTTGTCTTAGTAAAACAGAGGCCGCCCATGCGTCGTCCTTCGCCACCGATGCGCCGTCCGCAAAACAACCGCTGGCGATCCCCACCCCAGTTCAATAGGTTCAACAATCGTGGAGG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "68cb61b0-39fd-40b7-89bd-b0c192bfd5fa", "aliases:array": "modencode:CG16901_RNAi", "modified_site_by_target_id": "sqd-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GGAAACTGTTTGTCGGTGGTCTGAGCTGGGAAACGACTGAGAAGGAACTCCGCGATCACTTCGGCAAATATGGCGAGATCGAGAGCATCAATGTCAAGACAGATCCCCAGACCGGTCGGTCCCGAGGATTCGCCTTCATCGTGTTTACAAACACCGAGGCCATTGACAAAGTCAGCGCCGCGGATGAGCACATAATCAACAGCAAGAAGGTCGATCCCAAGAAGGCCAAGGCCAGGCACGGCAAGATCTTTGTCGGCGGCCTCACCACAGAGATCAGCGATGAGGAGATTAAGACCTACTTTGGACAGTTCGGCAATATCGT", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "284701cb-2757-419a-90bc-a8785e38afec", "aliases:array": "modencode:CG17136_RNAi", "modified_site_by_target_id": "Rbp1-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "TGCCGCGATATAGGGAGTGGGACTTGGCCTGCAAGGTGTACGTGGGAAACCTGGGCTCCTCGGCGTCCAAGCACGAGATAGAAGGCGCATTTGCCAAATATGGACCCCTGCGAAACGTGTGGGTGGCCCGCAATCCACCAGGTTTCGCCTTTGTCGAATTTGAGGATCGCCGTGACGCGGAAGACGCAACGCGTGCCCTGGACGGAACACGCTGCTGCGGCACTAGGATTCGCGTAGAGATGTCTTCGGGTCGCTCGCGCGATCGCCGGCGCGGAGAAGGCGGCAGTAGTGGTCGCTCTGGTTCCGGACGCTACAGGTCACGTTCGCCACGTCGCTCCCGATCGCCCCGCAGCCGCAGCTTCTCGCGCGATCGTCGAAGTCGCTCGGATTCTCGGGATCGTCATTAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "40dba016-ab19-4e1b-80f3-8deb44388fb6", "aliases:array": "modencode:CG17838_RNAi", "modified_site_by_target_id": "Syp-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GACAGTTCCTGGAATCGAACCTGGAGCACGTGTCAAACAAGTCCGCCTACCTATGCGGCGTGATGAAGACGTACCGACAGAAGAGTCGAGCCAGCCAACAGGGCGTGGCCGCGCCCGCAACTGTCAAAGGTCCCGACGAGGACAAGATCAAGAAAATCCTCGAGCGCACCGGCTACACATTAGATGTGACGACAGGTCAGCGTAAATACGGCGGACCGCCGCCGCATTGGGAGGGAAATGTGCCAGGCAACGGTTGCGAGGTTTTCTGCGGCAAGATACCCAAGGACATGTACGAGGACGAACTGATTCCGCTATTCGAGAACTGCGGCATAATCTGGGACCTACGACTCATGATGGACCCGATGACGGGCACAAATCGTGGTTATGCATTTGTCACATTCACAAATCGCGAAGCGGCCGTCAATGCAGTGCGACAGCTCGATAATC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "b1830e80-fb36-48c7-af55-6839a5964697", "aliases:array": "modencode:CG18350_RNAi", "modified_site_by_target_id": "Sxl-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "TAATCTCTGCGGATTGTCGCTGGGCAGCGGTGGTAGTGATGATCTCATGAACGATCCTCGGGCAAGCAACACCAACCTGATTGTCAACTACTTGCCCCAGGACATGACCGATCGCGAGCTGTACGCCCTATTCAGAGCCATTGGACCCATCAACACGTGCAGAATCATGCGAGACTATAAGACTGGCTACAGTTTTGGTTATGCTTTCGTGGACTTCACATCGGAAATGGACTCGCAGCGTGCTATTAAAGTGCTGAATGGCATCACAGTGCGCAACAAGCGGCTTAAGGTTTCCTATGCACGTCCCGGCGGAGAATCGATCAAGGACACCAATCTGTATGTGACCAATCTGCCGCGTACCATAACCGACGATCAGCTGGACACGATCTTCGGCAAGTACGGTTCCATTGTGCAGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "9e7cbc24-8a8a-4989-a45a-a8b6241740c2", "aliases:array": "modencode:CG18426_RNAi", "modified_site_by_target_id": "ytr-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CCCAAATTCACAACAGAAAAATTTCCAAACTCACACACAGACAATTACTTAAAGTATTTGAAAACTTACCACAGCCCGAAACGCACTCTTCACATACCCATACCCTTATCCTTACCCATACCCATACCCATCCTCATCCGCATCCAGATCCCCATCCCGATCCCAACCGCAATCGAAAAGACCTCCCAACAAACTTCCTCCATACGCTGCAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "455e7c18-ec07-4fc5-9c93-dd9d4dff9410", "aliases:array": "modencode:CG1987_RNAi", "modified_site_by_target_id": "Rbp1-like-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "ACAAGTCCAGTGGTACAACAAATACCAAAAATCCATTACAGAACCGGAGGAGCAGCACCTCCAGCCACATACATATTCATACATAATGCCACGCTACCGTGAATGGGATTTAGCCTGCAAAGTTTACGTGGGCAATCTGGGATCCTCGGCCTCCAAATACGAGATCGAGAACGCCTTTAGCAAATACGGACCCTTGCGCAACGTCTGGGTGGCCCGCAATCCGCCCGGTTTCGCCTTCGTCGAGTTCGAGGATCGTCGCGACGCTGAGGATGCGACCCGTGGCCTCGACGGCACCCGCTGCTGTGGCACCCGCATCCGTGTCGAAATGTCATCAGGCCGTTCACGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "ea25e200-61b3-48c1-a22a-6da021167be3", "aliases:array": "modencode:CG30122_RNAi", "modified_site_by_target_id": "CG30122-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GATGAAGGTGGTGGACCTGCGCAACGAGCTCCAGTCGCGCGGCCTGGACACCAAAGGAGTCAAAGCGGTGCTCGTCGAGCGCCTGAGGGCATATGTGGAAGGAGGAGCCGGCGACGGTGAAAATGCGCCGGTCACACCAAGCCGCCGTCAGCGTCGCACGCGCTCTATGTCCCGCTCTCCATCGCCGGTGCAAGCTGCTCCCGTGGCCGCAGAACCAGTGCTCGATACTCTCGAAGAGGAGGAGCAGCCGGAGGATAAGACAGTGCCACAGCCAGAACCAGAAAGTGAACAGCCAGCAGCCGAGCCGGAACCAGAACAAAGTGAGCCGGAGGAAGCTGAGCCAGCTGCAGCAGTGACAGAGGACACAACCGTCAACCAAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "50916136-6cce-4fa7-a138-4ae2d7f806a2", "aliases:array": "modencode:CG31000_RNAi", "modified_site_by_target_id": "heph-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GCGCGGAAGCGACGAACTTTTGAGTCAAGCAGCGGTCATGGCGCCCGCTTCCGACAATAACAATCAGGACCTGGCCACAAAGAAGGCCAAACTGGAGCCGGGCACTGTGCTGGCCGGCGGAATTGCCAAGGCCTCAAAAGTCATCCACTTGCGCAACATTCCGAACGAGTCCGGCGAGGCAGATGTGATTGCCCTGGGCATTCCGTTTGGACGTGTGACCAACGTGCTGGTGCTCAAGGGCAAGAACCAGGCTTTCATCGAGATGGCCGACGAGATCTCCGCAACGTCAATGGTGTCCTGTTACACAGTAACTCCGCCCCAGATGCGCGGCCGCATGGTCTACGTGCAGTTTTCTAATCATCGCGAACTAAAGACGGACCAAGGTCACAAC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "f04222b4-9b33-4b28-b7e5-1545103405c7", "aliases:array": "modencode:CG31716_RNAi", "modified_site_by_target_id": "Cnot4-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CTAGCAATAGAACGAGGGCGGATCGTGGAAAAGATCGGACCACGGCTAGTGCAAAGGAGCAGAAGAAGAGCAAGGAAGCTGCTCCAGCACCTGCAGCAAGTAAACCGGCGGAGCGGGTTGAAACAAGCGAGAGTACAATAAGACAAAAGAAGGCGGAAGTAACAGAAAGCTGTGAAGATAACTTACCACAAAAGAGATTAGCGGGAACAAACGTTCAAAGATCTGTGAGCTCTTGTAGCGAAAATAGCGAAGGACACGTCTCTGAGAGTAGCTTAAGTGAGAAGAGTTTAACTGGTGATTATGTGGAGGAAAAGTGCAATAGTGTGAATTCGGAAAGCCAGCAAGAAAGTG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "7187b854-fd94-4e87-b4de-f5981e7b0093", "aliases:array": "modencode:CG32423_RNAi", "modified_site_by_target_id": "shep-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "ATGGATTCCGGGTTACATGATGACTCAGGTAGATGATCAGACTTCGTATTCTCCACAGTACATGCAGATGGCAGCTGCCCCTCCGCTGGGAGTAACCTCATACAAACCGGAGGCGGTTAACCAGGTGCAGCCCCGTGGCATCTCGATGATGGTTAGCGGTGATACGGGCGTGCCATATGGAACAATGATGCCTCAGTTGGCCACCCTGCAGATTGGCAACTCTTATATTAGTCCAACTTATCCATATTATGCACCACCACCAACTATTATACCAACAATGCCAATGACAGATTCCGAACAGGCTAGCA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "88f7adb4-46e5-44c7-82b2-46efe8269a12", "aliases:array": "modencode:CG3249_RNAi", "modified_site_by_target_id": "spoon-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CTGCCCGGTGTAGCATTTATACTCGGCGTCTTTTGGTTTCGGCGTAGATATAAAAATTGTTTAGACAAGCCCGACGACGAGGACTCATCGGCCATCAATGACTCGTCGATTGAACCAACTGTGCAGGCGCGCAAGGCCAACGGAGTCCTGCAGAATGGCAAGCTGCCACAGCAGTCGGCCAGCAAGTCGATGAACATCAACGGAACTTTAGTTAACGGTAGCGGAAGCGGTAGCGGAAGTAGCAGTGATGAGAAGGACAGCCCCACTACCATGTTGTATGGTAAATCAGCACCAATCAAAATCC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "6389cd2f-3ab9-48c4-83f7-de66989f69a3", "aliases:array": "modencode:CG33106_RNAi", "modified_site_by_target_id": "mask-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AACACAGGCTCTGGCTCTGGATCCAATAATAACAATAACAACACCAATCAAAACCCCAACAGACAGTTGAATCATAATTTACCCCGAATCGCTGCCGCCAGACAATCGATAGCCGCCGCTCTATTGAAAAACAGCGGGCGGAAGATTCTGACGGCCAAGAATGAGCCACTGACGACGACGGAGTCATCAGGCGTTTTAACCAACACACCTTTACCCAGCAATAGCCGATTGAAAGTTAACAACAACAACAACACCAATAACACTGCCAAGATGTCTGGAACTAGTAGCAGTCAGTCCTCGGCCACGCCCACACCGCCCACGGCCAGCAGCAGCACAACCACCACAACAACAACGAACATCAGCACCGGAGGCGGTGGGAGTGGCAGCAGTGGCGGTGGCGGTGGGAGTACCACGGTCATTGCCAATCCCGCATCGGTAACCAACACCGGAGCTGGAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "cf3d38ce-bb57-4427-acf2-b4235549e17b", "aliases:array": "modencode:CG3312_RNAi", "modified_site_by_target_id": "Rnp4F-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CAGGAGGAGGAGCACAAGTCGGAGGAGCTGCGCCAACGATCGCGCCCAACCTGGCCACCGTCGTCCGCCGGCGGGGATATGACCACCATTGAGTTGATCTCATCGGACGACGAGCCGTCAGTGGAGGAGACTGAGGGAGGCAATGCCGCTGGCCGTGGCAGAGCGCGCAATGATTCCAGCAGCAGTAGCGATGATGTGGGCGTGATCGAAGGCTCGGAATTGGAATCGAACAGTGAGGTGTCCAGTGACAGTGACAGTGATAGCGACAACGCTGGCGGCGGAAATCAGCTAGAGCGCTCGTATCAGGAGCTGAATGCGTTGCCCAGCAAAAAGTTTGCCCAAATGGTCTCGCTCATTGGAATCGCATTCAAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "bb66f9da-68d7-4ab6-92fe-a623cdc68a88", "aliases:array": "modencode:CG3584_RNAi", "modified_site_by_target_id": "qkr58E-3-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AACGACGAGGTTTCACACGAACAGCTGCGCGAGCTGATGGAAATGGATCCCGAGTCAGCCAAAAACATTCACGGACCGAATCTGGAGGCCTACAGATCTGTCTTCGACAAGAAGTTTGGAGGCAACAGCAATGGGGCTCCCAAATACATCAACCTGATTAAGAGAGCTGCGGAAAATCCGCCCGAAGTCGACGATGTGGAGGAGGTGGCCTATGAGTATGAACATCGTATGCCCCCCAAGCGTCCGCCTACGGGCTATGAGTACAGCAAACCACGTCCATCAATAATACCGACAAACGCAGCGGCATATAAACGTCCATATCCGACTGACATG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "4176d927-e68e-4a89-95a4-c8c411d5a508", "aliases:array": "modencode:CG4262_RNAi", "modified_site_by_target_id": "elav-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "TCGGGATCGCAAAATGGCAGCAACGGCAGCACGGAGACGCGCACAAACCTTATTGTCAACTACTTGCCGCAAACAATGACCGAAGACGAGATCCGTTCGCTCTTCTCCAGCGTCGGCGAGATTGAGTCGGTGAAGCTGATACGCGACAAGTCGCAGGTCTACATCGATCCTCTCAATCCGCAGGCGCCCAGCAAGGGCCAAAGTCTGGGCTACGGCTTTGTTAACTATGTCCGGCCGCAAGATGCCGAGCAGGCTGTTAATGTTCTAAACGGCCTGCGACTGCAGAACAAAACCATAAAGGTGTCGTTTGCCCGCCCGTCGTCCGATGCCATTAAAGGCGCCAACCTTTATGTGTCGGGGCTGCCAAAGACGATGACCCAGCAGGAACTGGAGGCCATCTTCGCACCATTCGGAGCAATAATCACATCGCGCATTCTGCAGAACGCTGGCAACGATACGCAGACGAAAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "e27961ad-aacd-4abe-86e3-7d393b61a09e", "aliases:array": "modencode:CG4602_RNAi", "modified_site_by_target_id": "Srp54-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CTTGACCAACACGGTGTTCATCGATCGCGCCCTAATTGTCATACCCGTTCTGGCCATACCCGAGGAGTATCGGGCCCTGGAGATGCTCAAGAACGGAACCATTGTGCCGGGACTCCAGAAGCCGGACTCCAAGCTACCGCCCGAAGTCATTAACCGCATCGAGGGACAGCTGCCGCAGCAAGTGATCAAGACGTACGACCCCAAGTTGGTGGAATTCAATCTGCCGGAGTACCCGGCCTTACCCTCGTTCTACGATGCGCGCAAAATCGAGGAGATTCGGCGCACCATTATCGTGTGCGATGTTAAGAACGAGTGGCGGCTAGACGATCTGATGGAATGCTTTCAGCGCGCTGGGGAGGTGAAGTATGCCCGTTGGGCCGAGAAGGATAACAAGACGTACTGCATGATTGAGTTCTGCGAACAGACCAGCATTATTCACGCCCTGCGCATGCAGGGCCAGGAGTTCAAGGGTGGCCAT", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "324deba5-e290-4a4b-b1ad-bb5904a8c8bd", "aliases:array": "modencode:CG4760_RNAi", "modified_site_by_target_id": "bol-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CTGATCTAACCCGCGTCTTCAGCGCCTATGGCACGGTAAAGAGCACCAAAATCATCGTGGATCGAGCAGGTGTGAGCAAGGGCTACGGATTCGTCACCTTCGAGACGGAGCAGGAGGCGCAAAGACTGCAAGCGGATGGTGAATGCGTGGTACTAAGAGATCGGAAGCTGAACATTGCACCGGCCATCAAAAAGCAGCCCAATCCTCTGCAGTCAATTGTGGCCACAAACGGAGCCGTCTACTATACCACCACGCCGCCGGCACCGATCAGCAATATACCCATGGATCAGTTCGCAGCCGCTGTATATCCGCCAGCCGCTGGAGTGCCAGCCATCTACCCACCTTCAGCCATGCAATATCAGCCATTCTATCAGTACTACAGTGTGCCAATGAATGTACCCACCATTTGGC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "f4721db3-83de-41bd-b75e-5e48fe98681c", "aliases:array": "modencode:CG4816_RNAi", "modified_site_by_target_id": "qkr54B-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AACTGCTGGAAGGCGAGATAGAAAAGGTCCAGACCACAGGAAGGATTCCTTCCAGAGAGCAAAAGTATGCCGATATCTATAGAGAGAAGCCGCTGCGGATCTCGCAACGTGTTTTAGTTCCCATTAGAGAACATCCCAAGTTCAACTTCGTTGGAAAACTGCTGGGGCCCAAGGGCAACTCCCTTCGCCGCCTTCAGGAGGAGACCCTTTGCAAGATGACCGTCCTGGGCCGCAACTCTATGCGCGATCGAGTCAAAGAAGAGGAATTGCGCAGCTCCAAGGATCCCAAGTACGCTCACCTCAACAGCGATCTGCATGT", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "f107dd78-949c-4051-8179-e28934c4ed21", "aliases:array": "modencode:CG4878_RNAi", "modified_site_by_target_id": "eIF3-S9-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CCTGGAGAAGCTGAAGTTGGTCATCAACAAGCTGTTTTCGAACTACGGAGAAATCGTCAATGTGGTCTATCCCGTCGACGAGGAGGGCAAGACCAAGGGCTACGCCTTCATGGAGTACAAGCAGGCCAGACAGGCGGAGGAAGCCGTCAAGAAGCTCAACAATCATCGCCTAGACAAAAACCACACCTTTGCCGTCAATCTCTTCACCGATTTCCAAAAGTACGAAAACATCCCCGAGAAGTGGGAGCCGCCAACCGTGCAGACCTTCAAAGTGC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "2b9b0442-5f58-4ccb-9dd8-635ab8b4dbda", "aliases:array": "modencode:CG5099_RNAi", "modified_site_by_target_id": "msi-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GAAGGTCGAGTGCAAGAAGGCACAGCCCAAGGAAGCAGTCACACCGGCTGCTCAGCTTCTCCAGAAGCGCATTATGTTGGGCACCCTCGGCGTCCAGCTGCCCACAGCTCCTGGCCAGCTGATTGGAGCCCGTGGTGCCGGCGTGGCCACCATGAACCCACTGGCCATGCTTCAAAATCCCACACAGCTACTGCAATCCCCGGCAGCAGCCGCTGCCGCCCAGCAGGCCGCCCTCATATCACAGAACCCATTTCAAGTACAAAACGCCGCTGCGGCAGCCTCGATTGCCAATCAGGCTGGCTTCGGCAAGCTGTTGACCACATATCCGCAGACTGCGCTGCATAGCGTCAGATATGCACCCTACTCGATCCCCGCCAGCGCCGCCACTGCCAACGCCGCCTTGATGCAGGCTCATCAGGCGCAAAGCGTGGCCGCCGCTGCCCATCATCACCAGCAGCAGCAACAGCAGCAGCATCATCAC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "25c24134-9b31-4e6d-85f3-a163557134c6", "aliases:array": "modencode:CG5170_RNAi", "modified_site_by_target_id": "Dp1-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CTACGAGGAGAACTTCACATTCGAGGTGATGACGGTTAATCCTTCGTACTACAAGCACATCATCGGTAAGGCTGGAGCCAACGTAAATCGCCTGAAGGATGAACTGAAGGTTAACATTAACATCGAAGAGCGCGAGGGCCAGAACAACATCCGTATCGAGGGTCCCAAGGAGGGAGTACGGCAGGCGCAGCTTGAATTACAAGAAAAAATCGACAAACTGGAAAACGAAAAATCGAAGGATGTGATCATCGACCGCCGTCTCCATCGTTCTATTATCGGAGCTAAGGGCGAGAAGATTCGCGAGGTGAAGGACCGCTACCGCCAGGTTACAATCACGATACCTACGCCCCAGGAGAATACCGATATTGTGAAGCTGCGCGGACCCAAGGAGGATGTGGACAAGTGTCACAAGGATCTGCTTAAGCTGGTCAAGGAGATTCAGGAATCGTCGCACATTATCGAGGTGC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "514aa00a-cc1b-45db-aaa6-1bcd5b78762f", "aliases:array": "modencode:CG5422_RNAi", "modified_site_by_target_id": "Rox8-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CCGGTGTAAAGGGAAGTCAACGCCACACCTTCGAGGAAGTGTATAACCAGTCGAGCCCCACCAACACCACCGTATACTGTGGCGGATTCCCGCCGAATGTCATCAGTGACGACCTGATGCACAAGCACTTCGTCCAGTTTGGTCCCATCCAGGACGTGCGGGTCTTCAAGGACAAGGGCTTCTCGTTCATCAAGTTTGTTACCAAGGAGGCAGCCGCCCACGCCATCGAGCACACGCACAACAGCGAGGTACATGGAAACCTGGTAAAGTGCTTCTGGGGCAAAGAGAACGGAGGCGATAACTCGGCCAATAACCTCAATGCCGCCGCTGCCGCGGCAGCAGCCTCTGCCAATGTTGCCGCCGTTGCGGCAGCCAATGCTGCGGTTGCCGCTGGAGCGGGTATGCCCGGTCAGATGATGACGCAGCAACAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "4075b8d9-0a95-4bd3-9743-d8f0de7146aa", "aliases:array": "modencode:CG5442_RNAi", "modified_site_by_target_id": "SC35-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GGATCGCTACACACGTGAGAGCCGCGGATTCGCATTTGTTCGCTTCTATGACAAACGTGATGCCGAGGACGCACTGGAGGCCATGGATGGTCGCATGCTAGACGGCAGGGAGCTCCGCGTACAGATGGCCCGCTACGGACGCCCCTCTTCGCCCACTCGCAGCTCCAGTGGTCGTCGTGGCGGAGGAGGAGGCGGTGGTTCCGGCGGGCGTCGTCGGTCACGTTCTCGCTCCCCAATGCGCCGTCGTTCGCGCAGTCCGCGTCGCCGATCATACTCCCGTTCCCGCTCGCCTGGTAGCCACTCGCCGGAACGCCGATCCAAATTTTCACGCAGTCCAGTACGCGGCGACAGCCGCAATGGAATCGGAAGCGGATCTGGAGGACTGGCCCCAGCCGCGTCTCGTAGTCGCAGTCGCTCCTAGATATCGACGTCACGTTCCATTTAGTGGGAGTGCGAGATATGACTCGCTG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "8dac0587-8e3f-41cd-83ca-6eff9d965421", "aliases:array": "modencode:CG5655_RNAi", "modified_site_by_target_id": "Rsf1-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GTTCACAAAGTATGGCAAGCTGAATTCGGTGTGGATAGCCTTCAATCCGCCGGGATTTGCGTTCGTCGAGTTCGAGCACCGCGACGACGCCGAAAAGGCGTGCGACATACTGAACGGATCCGAGCTGCTCGGCTCCCAGCTGCGCGTGGAGATCTCAAAAGGGCGGCCACGCCAGGGTAGGCGTGGCGGACCCATGGACAGGGGCGGACGACGCGGCGACTTTGGCCGGCACAGCATCACAAGCGGTGGTAGCGGCGGAGGCGGTTTCCGGCAGCGCGGATCCAGCGGATCCTCAAGCCGGCACACGGAGCGGGGCTATAGCTCCGGCCGATCAGGTGCAAGCAGCTATAATGGCAGAGAGGGCGGCGGCAGCGGCTTCAATCGCCGCGAGGTTTACGGCGGTGGACGCGACAGCAGCCGCTACAGCAGCGGAAGTAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "c86169f6-1371-4643-b7fc-12b4d4fd1e2d", "aliases:array": "modencode:CG5821_RNAi", "modified_site_by_target_id": "qkr58E-2-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AGCATGAGAACGAACACAACGCCAACGCAGACGGCGAGAAGGCCCAGCCGGCGCCGGCGGTCCAGAAGTACATGCAGGAGCTCATGACGGAGCGATCGCGCATGGAAAACCACTTCCCCCTGGCGGTGAAGCTAATTGACGAAGCTCTGGAGCGTGTGCAGCTAAACGGACGCATTCCCACGAGAGACCAGTACGCCGATGTCTACCAGCAGCGCACCATCAAGCTGTCCCAAAAAGTGCACGTGCCCATCAAGGACAAGAAGTTCAACTATGTGGGCAAGCTACTGGGGCCCAAGGGCAACTCACTGCGTCGCCTGCAGGAGGAGACGCAGTGCAAGATCGTCATACTTGGTCGCTTCTCAATGAAGGATCGC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "b32fcc9b-a4a2-48e4-aa02-423c686248ea", "aliases:array": "modencode:CG5836_RNAi", "modified_site_by_target_id": "SF1-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CAGGATCACGATCAATCCAGAATCCCGTCGCTCTTCGACCGACAGCAGGGATTGGAAACCATCAGGGAGGAAGGACGTGAGCAGCGGTTTGATCTTACTCAGACCATCCAGGAGCTAATGGGCAATGCTGGAGGCAACAAAGGATTCGCCTCGTTCTTTAACAGCCAGAACAGCAACGACTCCACCAGCAATGGAGCATTCGATAACTCAGCGGACAGCGCTGCGGAGCGAAAGAGGAAGCGGAAGTCTCGCTGGGGCGGCAGTGAAAACGACAAGACCTTCATTCCTGGAATGCCCACAATTCTGCCCTCCACCCTGGACCCGGCACAGCAGGAGGCCTACCTAGTTCAATTTCAAATCGAGGAGATTAGTCGCAAGC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "50452606-8c50-485f-8c42-94ed2e22eed6", "aliases:array": "modencode:CG6049_RNAi", "modified_site_by_target_id": "barc-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GGAGAATACAATCCCGCTCTGAAGCCCAAACGCAAGAAGAAGGACAAAGAGAAATTGCAAAAGATGAAGGAAAAGTTATTTGATTGGCGTCCAGATAAATTGCGTGGCGAACGGTCAAAGAATGAGAAAACCGTCATCATTAAAAACCTCTTCACCCCAGAACTCTTTGAGAAGGAAGTGGAGCTCATATTGGAGTACCAAAACAATCTGCGTGAGGAGTGCAGCAAATGCGGGATGGTCCGTAAAGTGGTTATCTATGATCGCCATCCTGATGGTGTAGCCCAGATCAACATGGCCTCGCCGGAGGAAGCTGACCTCGTCATTCAAATGATGCAGGGGCGTTATTTTGGACAGCGGCAACTAAGTGCGGAGGCCTGGGATGGCAAGACCAAATACAAAATTGAGGAATCAGCTGTCGAGGCGCATGAACGGCTTTCCAAATGGGATGAATTCTTGGCAGAAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "47b93a24-493c-432f-933f-47da38f3fee1", "aliases:array": "modencode:CG6203_RNAi", "modified_site_by_target_id": "Fmr1-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AGACCGAGGAGTCTGTGCAGCGTGCCCGCGCGATGCTCGAATACGCCGAGGAGTTCTTCCAGGTGCCCAGGGAGTTGGTGGGCAAGGTGATTGGCAAGAATGGGCGCATTATCCAGGAGATTGTGGACAAGAGTGGCGTGTTTCGAATCAAGATCGCTGGCGACGATGAACAGGATCAGAACATACCACGTGAGCTGGCGCATGTACCCTTTGTGTTCATTGGCACCGTGGAGAGCATTGCAAATGCCAAAGTGCTGTTGGAGTATCATCTGTCGCACCTGAAGGAAGTAGAACAGTTGCGTCAGGAGAAGATGGAGATTGATCAGCAGCTTCGCGCCATCCAGGAATCCTCCATGGGCTCCACACAGAGCTTCCCAGTGACGCGGCGCTCTGAGCGCGGCTACAGCAGTGACATTGAGTCGGTGCGCTCTATGCGCGGCGGTGGTGGCGGCCAGCGTGGTCGTGTACGCGGACGTGGT", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "5f05f49e-8cbd-4f4b-9b99-f539d59ca744", "aliases:array": "modencode:CG6227_RNAi", "modified_site_by_target_id": "CG6227-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GTGCCCAACCACTACGAGGACTATGTTCACAGATGTGGTCGCACCGGTCGAGCGGGCAAAAAGGGCAGCGCCTACACGTTTATCACACCGGAGCAATCGCGCTATGCCGGCGACATTATCCGCGCCATGGACCTATCAGGCACACTGATTCCCGCCGAGCTGCAGGCACTGTGGACGGAGTATAAGGCGCTCCAGGAGGCCGAGGGCAAGACGGTGCACACGGGCGGCGGCTTTAGCGGCAAGGGCTTCAAGTTCGACGAGCAGGAGTTCAATGCCGCCAAGGAGAGCAAGAAGCTGCAGAAGGCGGCCTTGGGACTGGCCGATTCCGATGATGAGGAGGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "5b3cf4df-e587-488e-a11b-4b64f86a5970", "aliases:array": "modencode:CG6779_RNAi", "modified_site_by_target_id": "RpS3-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CATTGAGTTGTACGCCGAGAAGGTGGCCGCTCGTGGCCTGTGCGCCATTGCCCAGGCTGAGTCGCTGAGGTACAAGCTCACCGGAGGACTGGCCGTCCGTCGTGCTTGCTATGGTGTGCTCCGCTACATCATGGAGTCGGGAGCCAAGGGCTGCGAGGTCGTCGTGTCCGGCAAACTGCGTGGTCAGCGTGCCAAGTCGATGAAATTCGTCGATGGCCTGATGATCCATTCGGGAGATCCGTGCAACGACTATGTCGAGACCGCCACCCGTCATGTGCTCCTCCGCCAGGGAGTGCTTGGTATCAAGGTCAAGGTCATGTTGCC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "a1d9484f-0436-4548-8ddb-90b198edaa1d", "aliases:array": "modencode:CG6841_RNAi", "modified_site_by_target_id": "CG6841-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "ATGCCCTCCAAATATTTCCCTCGAAGAAAAGCATCTGGTTGCGAGCCGCCTACTTTGAAAAGAACCATGGCACCCGCGAATCTTTGGAGGCCCTGTTGCAGCGAGCCGTGGCTCATTGTCCTAAATCGGAGATTCTCTGGCTGATGGGGGCCAAATCCAAATGGATGGCTGGAGACGTTCCAGCCGCGAGAGGCATTTTGTCCTTGGCTTTCCAGGCCAATCCCAATTCCGAGGACATTTGGTTGGCTGCCGTTAAGTTGGAATCAGAGAACTCGGAATATGAGCGGGCGAGACGCTTGTTAGCCAAGGCTAGAGGATCGGCACCGACACCAAGGGTGATGATGAAATCAGCTCGCCTGGAATGGGCTTTGGAAAAGTTCGACGAAGCT", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "61fe98a7-20db-4373-b14a-112a9db9947b", "aliases:array": "modencode:CG6946_RNAi", "modified_site_by_target_id": "glo-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "TTGTGAAGCTTCGTGGTCTGCCATATGCCGTCACTGAGCAGCAAATCGAGGAGTTCTTCTCTGGGTTGGATATCAAAACGGATCGGGAGGGCATACTTTTTGTTATGGACAGAAGGGGTCGTGCAACTGGGGAAGCTTTTGTTCAGTTCGAAAGCCAGGACGACACTGAGCAAGCCTTGGGCCGAAATCGGGAAAAAATTGGGCACAGGTATATTGAGATATTCCGCAGCTCGATTGCTGAAATGAAGAGGGCCACAGGCGCCGGTGGCGGTGTCGGAGGACGCCCTGGCCCTTATGACATACGTGATCGTGGTGC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "25988c9b-ecdb-453a-81be-16d59bb6eaa1", "aliases:array": "modencode:CG7437_RNAi", "modified_site_by_target_id": "mub-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "ATCCATCGGTGACACTCACAATAAGGCTGATTATGCAAGGAAAGGAGGTTGGTAGTATTATTGGTAAAAAGGGTGAAATTGTCAACAGATTTCGTGAAGAGTCTGGTGCCAAAATCAACATTTCGGATGGCTCATGCCCGGAACGTATTGTGACTGTGTCTGGTACAACTAATGCAATCTTTTCGGCATTCACGCTCATTACAAAGAAGTTCGAAGAGTGGTGCTCGCAGTTCAATGATGTAGGCAAAGTTGGTAAAACTCAAATACCCATTCGATTGATTGTGCCCGCCAGTCAATGTGGATCGTTAATTGGCAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "70efd9c9-72b9-4697-a6fe-992df5f1628a", "aliases:array": "modencode:CG7878_RNAi", "modified_site_by_target_id": "CG7878-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CACCAGGAGTACGTCGTTTAGCGCAGAGCTATATGAAGAATCCCATCCAGGTGTGTGTCGGATCGCTCGATCTGGCAGCCACGCACTCGGTGAAACAAATTATTAAATTGATGGAGGATGACATGGACAAATTCAACACCATTACATCTTTCGTTAAGAACATGTCCAGTACGGACAAGATCATCATATTTTGTGGACGCAAGGTTCGTGCTGACGACCTATCCAGTGAACTTACGCTGGATGGTTTCATGACCCAGTGCATTCATGGTAATCGCGATCAGATGGATCGTGAGCAGGCTATTGCCGATATTAAGTCCGGCGTCGTGCGCATTCTGGTTGCTACCGATGTGGCATCACGTGGCCTGGACATTGAGGATATCACACATGTCATCAACTATGATTTTCCGCACAACATCGAGGAGTATGTGCACCGTGTTGG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "a5a42562-00a1-4605-8dd4-e303c62ac360", "aliases:array": "modencode:CG7971_RNAi", "modified_site_by_target_id": "CG7971-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AAATCTCCAGCCCATTCCCCAGAGGCGCCACCGAAGAAGTCGGTGCCAACGCCAGCCTTCAATCCCTTTAAGGCGGCCGAGGATACTGTTAACGACATCCTTGGCACAAAGTCGGTGATGGTGGCCCTGGAACAGACTAAGCGACAGCGGGCGGCTTCCAGCTCTAGCTCGGATTCCGACAGCTCCGGTAGTAGCTCGACTTCCTCGCGTACGCCATCGCCTAAGCCCACACCTAGGAAACAAAAGAAGAGGAGCAAGACCCCAGAGCTAAAAGAGGTGAAGAAGGAGATTAGCCCCAGAAAGG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "a687b0f7-f6e3-4f8c-8e07-e0784506f6e7", "aliases:array": "modencode:CG8019_RNAi", "modified_site_by_target_id": "hay-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GATCACGGAAATCGACCACTTTGGGTTGCGCCCAATGGTCACGTCTTCCTGGAATCATTCTCGCCCGTCTATAAGCATGCCCACGATTTTCTTATCGCCATTTCGGAGCCCGTCTGCCGACCCGAACACATTCACGAGTACAAACTTACCGCATACAGTTTATATGCCGCCGTTTCGGTGGGACTGCAAACCCATGACATTGTGGAATACTTGAAGAGATTGAGCAAGACCAGCATTCCCGAAGGCATCCTTGAGTTTATACGACTCTGCACCCTATCCTATGGCAAGGTCAAGCTGGTCTTGAAGC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "25374fd0-928b-4c36-8ce9-7455ec9c8c0a", "aliases:array": "modencode:CG8144_RNAi", "modified_site_by_target_id": "ps-dmelanogaster", "rnai_sequences:array": "ATGTCCAAGTCCTGAAACCGGCGACTCACGCAAAAGGCCACTCGATTCCGATCCGGAAAATGAACAAACTAAACGCTCACATTTCAGTTCCGGTGAGTCAGTTTGTTCTGGAATTGAGGTTGAAATTGAAAATAATAACAATAATCATATTCATCATGGCGAGACAACGTATCACATGAAAATACTGGTGCCCGCGGTGGCCTCCGGGGCCATCATTGGCAAAGGTGGCGAGACGATCGCCTCCCTGCAGAAGGACACGGGTGCTAGGGTCAAGATGTCCAAGTCGCACGACTTCTACCCAGGCACCACCGAACGCGTGTGCCTGATCACCGGCTCCACGGAGGCTATCATGGTCGTGATGGAGTTCATCATGGACAAGATCCGCGAGAAGCCCGACCTGACCAACAAGATCGTCGATACCGACTCAAAACAGACACAGGAGCG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "c009e043-438f-4d9e-8942-137c2d681695", "aliases:array": "modencode:CG8241_RNAi", "modified_site_by_target_id": "pea-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "ATGGACGAGCTGCAGAAGTTGGAGTACCTTTCGCTGGTCTCGAAGATTTGCACTGAGCTAGACAACCACTTGGGCATCAACGACAAGGACCTGGCCGAGTTTATCATCGATTTAGAAAACAAAAATCGCACATATGACACATTTCGCAAGGCTTTGCTGGATAATGGCGCCGAATTCCCAGACTCCCTGGTCCAGAACCTGCAGCGCATCATTAATCTTATGCGCCCCAGCAGACCTGGCGGCGCTAGCCAGGAGAAAACTGTCGGCGACAAGAAGGAAGACAAGAAATCGCAACTTTTGAAAATGTTTCCCGGCCTCGCTTTGCCCAATGACACCTACA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "e1b08d9d-2881-43fb-ab60-09bddcea5d61", "aliases:array": "modencode:CG8636_RNAi", "modified_site_by_target_id": "CG8636-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "GAGGTGGAGCTCGACTATGGTGGACTACCTCCGACGACGGAGACGGTGGAGAACGGACAGAAGTACGTGACGGAGTACAAGTACAACAAGGACGACAAGAAGACGAAGGTGGTGCGCACGTACAAGATATCCAAGCAGGTGGTGCCCAAGACGGTGGCCAAGCGACGCACCTGGACGAAGTTCGGCGACTCGAAGAACGACAAGCCCGGCCCCAACTCGCAGACGACCATGGTGTCCGAGGAGATCATCATGCAGTTCCTCAACTCCAAGGAGGACGAGAAGGCCAACGATCCGCTGCTAGATCCCACCAAGAATATTGCCAAGTGCCG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "eca46370-2aa9-46a2-aaf1-848b86469a41", "aliases:array": "modencode:CG8749_RNAi", "modified_site_by_target_id": "snRNP-U1-70K-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "TTTAAGACGAGGAACTTCAGGAAAAGGTAAAACAAAACAAAAAAGCCCACAAAATGACCCAATATCTGCCGCCGAATCTGCTGGCGCTGTTCGCGGCACGGGAGCCCATCCCGTTCATGCCGCCGGTGGACAAGCTGCCGCACGAGAAGAAGTCTCGCGGCTACCTGGGAGTGGCCAAGTTCATGGCCGATTTCGAGGATCCCAAGGACACGCCGCTGCCGAAAACGGTGGAAACGCGTCAGGAGCGGCTGGAGCGACGCCGGCGCGAGAAGGCCGAGCAAGTGGCCTACAAGCTGGAGCGTGAGATAGCGCTGTGGGACCCCACAGAGATCAAAAATGCCACGGAGGACCCGTTTCGCACGCTGTTCATTGCACGCATCAACTACGACACGTCCGAGTCGAAGCTGCGGCGTGAGTTCGAGTTCTACGGGCCCATCAAGAAGATCGTCCTGATCCACGACCAGGAATCAGGTAAACCCAAGGGCTACGCCTTCATCGAGTACGAGCA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "42733420-b71a-4fb0-b387-fe5c58674867", "aliases:array": "modencode:CG8781_RNAi", "modified_site_by_target_id": "tsu-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CCGATGTGTTGGACATTGACAATGCGGAGGAGTTCGAGGTGGACGAGGACGGTGACCAGGGCATTGTGCGCCTGAAGGAAAAGGCGAAGCACCGCAAGGGACGCGGATTTGGAAGCGACAGTAACACCCGAGAGGCGATCCACAGCTACGAGCGTGTGCGCAACGAGGACGACGATGAGCTGGAACCTGGTCCACAAAGGTCCGTCGAGGGCTGGATACTGTTTGTCACCTCTATCCATGAGGAGGCGCAGGAGGACGAGATTCAGGAAAAGTTCTGCGATTACGGAGAAATCAAGAACATTCACCTGAACCTCGACCGGCGTACTGGGTTCTCAAAGGGATACGCTCTCG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "64a51605-d62e-4f7e-9f89-1057af1ecd29", "aliases:array": "modencode:CG8912_RNAi", "modified_site_by_target_id": "Psi-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "CGTTATCATGTTGCGTGGTCAAAGGGATACAGTCACTAAGGGGCGCGAAATGATTCAGAACATGGCCAATCGGGCTGGCGGGGGACAGGTGGAGGTGCTGTTGACGATCAATATGCCGCCACCGGGACCTAGCGGGTATCCACCTTACCAGGAGATCATGATTCCGGGCGCCAAGGTGGGCTTGGTCATTGGCAAGGGCGGCGATACCATTAAACAGCTGCAGGAGAAGACCGGAGCCAAAATGATCATCATCCAGGACGGACCAAACCAGGAGCTGATCAAACCCCTTCGCATATCCGGCGAGGCGCAGAAGATAGAGCACGCCAAGCAGAT", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "ca78a5f4-707f-4f92-9219-64379801b51d", "aliases:array": "modencode:CG9373_RNAi", "modified_site_by_target_id": "rump-dmelanogaster", "rnai_sequences:array": "ATACGACTACCGTTGGCAGGATCTGAAGGATCTGTTCCGCCGCATCGTCGGCTCCATTGAGTACGTCCAGCTGTTCTTCGATGAGAGCGGCAAGGCTCGCGGCTGTGGCATCGTAGAGTTCAAGGATCCGGAGAACGTACAGAAGGCCTTGGAGAAAATGAACCGCTATGAGGTGAATGGCCGCGAACTGGTGGTCAAGGAGGATCACGGCGAGCAGCGCGATCAATACGGACGCATTGTGCGAGATGGTGGTGGTGGTGGAGGCGGCGGTGGCGGCGTACAAGGAGGCAATGGTGGCAACAATGGAGGAGGTGGCGGCGGTGGCCGTGACCACATGGATGACCGCGATCGGGGTTTCTCCCGGCGAGACGACGACAGACTATCTGGGCGTAATAATTTTAACATGATGTCAAATGATTATAATAATTCGTCGAATTACAATTTGTATGGGCTTTCTGCTTCGTTTTTG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "98605fe5-5f22-4600-aebe-4dfa49660412", "aliases:array": "modencode:CG9412_RNAi", "modified_site_by_target_id": "rin-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AGATCCACAACCGAATCCAGCAGCTGAACTTCAACGATTGCCACGCGAAGATCAGCCAGGTTGATGCCCAGGCCACTTTGGGCAACGGTGTGGTGGTTCAGGTCACCGGGGAGCTATCCAATGATGGCCAGCCGATGCGGCGTTTTACCCAGACGTTCGTTCTGGCCGCTCAGTCGCCGAAGAAGTACTACGTGCACAACGACATCTTCCGCTATCAGGATCTCTACATCGAGGACGAGCAGGATGGCGAGTCGCGATCGGAGAACGATGAGGAGCACGAT", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "7b659a3a-b2c0-4107-bc78-211a029b195c", "aliases:array": "modencode:CG9983_RNAi", "modified_site_by_target_id": "Hrb98DE-dmelanogaster", "reagent_availability:object:array": "source:brenton-graveley, identifier:please-contact-lab", "rnai_sequences:array": "AACTACGGCAACCAGAATGGTGGCGGCAACTGGAACAACGGTGGCAACAACTGGGGCAACAACCGCGGGGGTAACGACAACTGGGGCAACAACAGCTTCGGTGGTGGCGGCGGCGGCGGTGGTGGTTATGGCGGTGGCAACAACAGCTGGGGCAATAACAATCCGTGGGACAATGGCAATGGAGGCGGCAACTTTGGAGGCGGCGGCAACAATTGGAACAATGGTGGCAATGATTTTGGAGGCTACCAGCAGAACTATGGCGGCGGTCCGCAGCGAGGTGGCGGCAACTTCAACAACAATCGCATGCAGCCCTACCAAGGAGGTGGTGGATTCAAAGCAGGCGGTGGCAATCAAGGCAACTATGGCGGAAACAATCAGGGCTTCAATAACGGTGGC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "lab": "brenton-graveley", "award": "U01HG004271"}, - {"uuid": "ceefe678-caed-44d6-ac27-6ae50b857e70", "aliases:array": "peggy-farnham:control-siRNA", "modified_site_by_target_id": "Non-specific%20target%20control-human", "reagent_availability:object:array": "source:dharmacon, identifier:D-001810-10-05", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/8cc28f0d-3206-4ef6-9394-0b8bbb38756e/", "lab": "peggy-farnham", "award": "U54HG006996"}, - {"uuid": "5efc92f8-b678-4d13-90f7-b24823931de6", "aliases:array": "peggy-farnham:ZFX-siRNA1;peggy-farnham:ZFX-siRNA2;peggy-farnham:ZFX-siRNA3", "modified_site_by_target_id": "ZFX-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-006572-00-0005", "rnai_sequences:array": "UGAAAUCGCUGACGAAGUU;GAAUGACCAUGGACACAGA;GCAACAUGCUAGUUACUUU;CCAAGUAGUAGUUGUUUAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/8cc28f0d-3206-4ef6-9394-0b8bbb38756e/", "lab": "peggy-farnham", "award": "U54HG006996"}, - {"uuid": "c6224198-425a-4d9f-b88e-1bdf616f2f69", "aliases:array": "sherman-weissman:ARID3A-siRNA-1;sherman-weissman:ARID3A-siRNA-2;sherman-weissman:ARID3A-siRNA-3;sherman-weissman:ARID3A-siRNA-4", "modified_site_by_target_id": "ARID3A-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-012032-00", "rnai_sequences:array": "CUUACGAGGAGCAGUUUAA;GAGAUCAACGGCAUCAUGU;UCAAAUAACUCGUUGCCUU;GAAACUACAGGCCGUGAUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "0e7d85a4-dd50-49f2-9c54-56cdf65dbf0b", "aliases:array": "sherman-weissman:ARNT-siRNA-1;sherman-weissman:ARNT-siRNA-2;sherman-weissman:ARNT-siRNA-3;sherman-weissman:ARNT-siRNA-4", "modified_site_by_target_id": "ARNT-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-007207-00", "rnai_sequences:array": "GUAGUGCCCUGGCUCGAAA;GGACUUGGCUCUGUAAAGG;CCACUGAUGGCUCCUAUAA;UCAGAUGUCUAACGAUAAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "8d491f40-31d9-42c0-b032-47b162323308", "aliases:array": "sherman-weissman:ATF1-siRNA-1;sherman-weissman:ATF1-siRNA-2;sherman-weissman:ATF1-siRNA-3;sherman-weissman:ATF1-siRNA-4", "modified_site_by_target_id": "ATF1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-010045-00", "rnai_sequences:array": "GAUCCGAACUACACCUUCA;GGUAUCAUCUUUAUCAGAA;GCAAUCAGGUGGUCGUACA;ACAGAAAGCCCACGGGAUC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "331ef9b9-01f1-4035-95cd-82ae62132a94", "aliases:array": "sherman-weissman:ATF2-siRNA-1;sherman-weissman:ATF2-siRNA-2;sherman-weissman:ATF2-siRNA-3;sherman-weissman:ATF2-siRNA-4", "modified_site_by_target_id": "ATF2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009871-00", "rnai_sequences:array": "GAGAAGAGCAGCUAACGAA;UGAGGAGCCUUCUGUUGUA;CAUGGUAGCGGAUUGGUUA;GGAAGUACCAUUGGCACAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "979572bf-8aea-4b3c-90e8-22419647cb26", "aliases:array": "sherman-weissman:ATF3-siRNA-1;sherman-weissman:ATF3-siRNA-2;sherman-weissman:ATF3-siRNA-3;sherman-weissman:ATF3-siRNA-4", "modified_site_by_target_id": "ATF3-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-008663-00", "rnai_sequences:array": "GAGCUAAGCAGUCGUGGUA;GCAAAGUGCCGAAACAAGA;AGAAGCAGCAUUUGAUAUA;CGAGAAAGAAAUAAGAUUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "6abf305d-83e5-4d90-b4dd-a0913e609219", "aliases:array": "sherman-weissman:ATF4-siRNA-1;sherman-weissman:ATF4-siRNA-2;sherman-weissman:ATF4-siRNA-3;sherman-weissman:ATF4-siRNA-4", "modified_site_by_target_id": "ATF4-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-005125-00", "rnai_sequences:array": "GAGAUAGGAAGCCAGACUA;GAAGAACGAGGCUCUAAAA;CAGAUUGGAUGUUGGAGAA;CGACUUGGAUGCCCUGUUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "2fc1791a-eec8-4aff-8f75-ffe0eea28989", "aliases:array": "sherman-weissman:ATF6-siRNA-1;sherman-weissman:ATF6-siRNA-2;sherman-weissman:ATF6-siRNA-3;sherman-weissman:ATF6-siRNA-4", "modified_site_by_target_id": "ATF6-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009917-00", "rnai_sequences:array": "UGGAUGAAGUUGUGUCAGA;GGAGGCACCUUCUAGGAUU;GAGGAUGGGUUCAUAGACA;CAUGAGAAAUGUCGGUUCA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "99b0b5c6-f504-443c-838f-13ac1577e0dd", "aliases:array": "sherman-weissman:ATF7-siRNA-1;sherman-weissman:ATF7-siRNA-2;sherman-weissman:ATF7-siRNA-3;sherman-weissman:ATF7-siRNA-4", "modified_site_by_target_id": "ATF7-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-008865-00", "rnai_sequences:array": "GAACUAGCUAGCUCCUUUG;GGACAGAGAUUUACAAACG;GAAGUCACAUUACUACGCA;GAACUGAGCAUGCCGAUAC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "a78d4cfd-7825-4419-b62f-12406b1435f6", "aliases:array": "sherman-weissman:BACH1-siRNA-1;sherman-weissman:BACH1-siRNA-2;sherman-weissman:BACH1-siRNA-3;sherman-weissman:BACH1-siRNA-4", "modified_site_by_target_id": "BACH1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-007750-00", "rnai_sequences:array": "GUAGAGAUUUGCAGGUGAU;GUGGUUAGGUAUCAGGAUU;CCGCAGGUAUCAAGGAAAU;CCAUAUGCUUGUGUCAUUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "d949377d-8748-4559-ab37-c078128cc62c", "aliases:array": "sherman-weissman:BCLAF1-siRNA-1;sherman-weissman:BCLAF1-siRNA-2;sherman-weissman:BCLAF1-siRNA-3;sherman-weissman:BCLAF1-siRNA-4", "modified_site_by_target_id": "BCLAF1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-020734-00", "rnai_sequences:array": "CUAGAUUACUUCAGUGAUA;UAGUAGAGAUCGUAUGUAU;GAAUCUGGAUGCACGAGAA;GAACAUAGUACUCGGCAAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "0e79a3da-9fc5-4988-8bc2-33c4355b76eb", "aliases:array": "sherman-weissman:BHLHE40-siRNA-1;sherman-weissman:BHLHE40-siRNA-2;sherman-weissman:BHLHE40-siRNA-3;sherman-weissman:BHLHE40-siRNA-4", "modified_site_by_target_id": "BHLHE40-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-010318-00", "rnai_sequences:array": "AAAGAGACGUGACCGGAUU;CCCGGGAGGUGCUUCAGUA;CCGAACAUCUCAAACUUAC;GAGAAAGGAUCGGCGCAAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "ecd98ef2-3400-428c-b72a-ca3a380865ef", "aliases:array": "sherman-weissman:BMI1-siRNA-1;sherman-weissman:BMI1-siRNA-2;sherman-weissman:BMI1-siRNA-3;sherman-weissman:BMI1-siRNA-4", "modified_site_by_target_id": "BMI1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-005230-01", "rnai_sequences:array": "CCUCGAAAAUCAUCAGUAA;ACAUAAGCAUUGGGCCAUA;GAAAUUCAACCAACGGAAA;GGUUCGACCUUUGCAGAUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "2f1b4615-2536-462c-a3ca-48f6d43d344b", "aliases:array": "sherman-weissman:BRCA1-siRNA-1;sherman-weissman:BRCA1-siRNA-2;sherman-weissman:BRCA1-siRNA-3;sherman-weissman:BRCA1-siRNA-4", "modified_site_by_target_id": "BRCA1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003461-00", "rnai_sequences:array": "CAACAUGCCCACAGAUCAA;CCAAAGCGAGCAAGAGAAU;UGAUAAAGCUCCAGCAGGA;GAAGGAGCUUUCAUCAUUC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b7f3a79e-5591-47ee-85fb-feb6c6b99c58", "aliases:array": "sherman-weissman:CDAN1-siRNA-1;sherman-weissman:CDAN1-siRNA-2;sherman-weissman:CDAN1-siRNA-3;sherman-weissman:CDAN1-siRNA-4", "modified_site_by_target_id": "CDAN1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-015478-00", "rnai_sequences:array": "GACCGAGCCUUUCAUACUU;GCAACACUGUCUAAUCUGU;CAGCGACCCUGAACUAAGU;GAAAGAAUUGGAUCAAACU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "ea26dd61-b449-461c-b22d-ce7f4c83c86d", "aliases:array": "sherman-weissman:CEBPZ-siRNA-1;sherman-weissman:CEBPZ-siRNA-2;sherman-weissman:CEBPZ-siRNA-3;sherman-weissman:CEBPZ-siRNA-4", "modified_site_by_target_id": "CEBPZ-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-019985-00", "rnai_sequences:array": "GGACAUCAGUUAAUAAGGU;GGAUUUCACUCUAAUGAGA;CAAAGUCAGUACUAAGAAA;CUCAUGAGCUGCUUUGUAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "4a630543-4417-4fbb-9a4e-a62fa7ce290a", "aliases:array": "sherman-weissman:CHAMP1-siRNA-1;sherman-weissman:CHAMP1-siRNA-2;sherman-weissman:CHAMP1-siRNA-3;sherman-weissman:CHAMP1-siRNA-4", "modified_site_by_target_id": "CHAMP1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-021601-02", "rnai_sequences:array": "GAUAUUAAGGGCCAGGAAU;CCACCAGAACUCCGAAAGA;AAACAGAUUUGGAUGCGAU;AGUAGUAGUGAGUACAUAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "cb097521-3d7f-4fa4-acd2-f22220836e76", "aliases:array": "sherman-weissman:CHD1-siRNA-1;sherman-weissman:CHD1-siRNA-2;sherman-weissman:CHD1-siRNA-3;sherman-weissman:CHD1-siRNA-4", "modified_site_by_target_id": "CHD1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-008529-00", "rnai_sequences:array": "GUACCGCUCUCCACUCUUA;GAUGAAGAUUGGCAAAUGU;CGAUCUCAUUUCUGAAUUA;CACAAGAGCUGGAGGUCUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b9c8bad9-2693-4856-b5e2-3bd622107660", "aliases:array": "sherman-weissman:CHD2-siRNA-1;sherman-weissman:CHD2-siRNA-2;sherman-weissman:CHD2-siRNA-3;sherman-weissman:CHD2-siRNA-4", "modified_site_by_target_id": "CHD2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-008948-03", "rnai_sequences:array": "GACAAGAACCAUCGCGAUU;ACAGCAAUGCAUCGAGUCA;AGAGGAGGACAGUUCGCUA;CCGAAGACUCAGCGUGGAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "9d47aeac-8a54-4c57-b9d8-022aaee24c41", "aliases:array": "sherman-weissman:CREB1-siRNA-1;sherman-weissman:CREB1-siRNA-2;sherman-weissman:CREB1-siRNA-3;sherman-weissman:CREB1-siRNA-4", "modified_site_by_target_id": "CREB1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003619-00", "rnai_sequences:array": "UAGUACAGCUGCCCAAUGG;GCCCAGCCAUCAGUUAUUC;CAACUCCAAUUUACCAAAC;GAGAGAGGUCCGUCUAAUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "ebb3b3c3-62db-4e04-8624-357dd88d1922", "aliases:array": "sherman-weissman:CREBBP-siRNA-1;sherman-weissman:CREBBP-siRNA-2;sherman-weissman:CREBBP-siRNA-3;sherman-weissman:CREBBP-siRNA-4", "modified_site_by_target_id": "CREBBP-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003477-00", "rnai_sequences:array": "AAUAGUAACUCUGGCCAUA;UCACCAACGUGCCAAAUAU;GGGAUGAAGUCACGGUUUG;GCACAGCCGUUUACCAUGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b0e26939-a78e-4427-9b53-5c1f4321280c", "aliases:array": "sherman-weissman:CTBP1-siRNA-1;sherman-weissman:CTBP1-siRNA-2;sherman-weissman:CTBP1-siRNA-3;sherman-weissman:CTBP1-siRNA-4", "modified_site_by_target_id": "CTBP1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-008609-00", "rnai_sequences:array": "GGAUAGAGACCACGCCAGU;UGAAGAACUGUGUCAACAA;GAGCAGGCAUCCAUCGAGA;AUGAGAAGGUCCUGAACGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "109555a1-afe8-4dc5-a935-a8b396d4ab07", "aliases:array": "sherman-weissman:CTCF-siRNA-1;sherman-weissman:CTCF-siRNA-2;sherman-weissman:CTCF-siRNA-3;sherman-weissman:CTCF-siRNA-4", "modified_site_by_target_id": "CTCF-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-020165-00", "rnai_sequences:array": "GAUGAAGACUGAAGUAAUG;GGAGAAACGAAGAAGAGUA;GAAGAUGCCUGCCACUUAC;GAACAGCCCAUAAACAUAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "9fbaf376-4b4e-4bf2-aacf-61a2a8a54d05", "aliases:array": "sherman-weissman:CTNNB1-siRNA-1;sherman-weissman:CTNNB1-siRNA-2;sherman-weissman:CTNNB1-siRNA-3;sherman-weissman:CTNNB1-siRNA-4", "modified_site_by_target_id": "CTNNB1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003482-00", "rnai_sequences:array": "GAUCCUAGCUAUCGUUCUU;GGUACGAGCUGCUAUGUUC;GCGUUUGGCUGAACCAUCA;UAAUGAGGACCUAUACUUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "000ffd7b-37e0-4472-933e-6cf7a6e52727", "aliases:array": "sherman-weissman:DICER1-siRNA-1;sherman-weissman:DICER1-siRNA-2;sherman-weissman:DICER1-siRNA-3;sherman-weissman:DICER1-siRNA-4", "modified_site_by_target_id": "DICER1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003483-00", "rnai_sequences:array": "GAAUAUGGUUGUUUGAAGA;GAAUAUCGAUCCUAUGUUC;UAAAGUAGCUGGAAUGAUG;ACACAGCAGUUGUCUUAAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "dd1ece2a-a499-4e37-8952-a64c0a90c834", "aliases:array": "sherman-weissman:E2F4-siRNA-1;sherman-weissman:E2F4-siRNA-2;sherman-weissman:E2F4-siRNA-3;sherman-weissman:E2F4-siRNA-4", "modified_site_by_target_id": "E2F4-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003262-00", "rnai_sequences:array": "CGGGAGACCACGAUUAUAU;GAAGGUAUCGGGCUAAUCG;GAGAUACCCUCUUGGCCAU;CAGAAGAAGUACCAGAUUC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "3067693b-7a42-403c-ba79-a74097589308", "aliases:array": "sherman-weissman:E2F6-siRNA-1;sherman-weissman:E2F6-siRNA-2;sherman-weissman:E2F6-siRNA-3;sherman-weissman:E2F6-siRNA-4", "modified_site_by_target_id": "E2F6-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003264-00", "rnai_sequences:array": "CAACGGACCUAUCGAUGUC;UAGCAUAUGUGACCUAUCA;GUAAGCAACUGAUGGCAUU;GAACAGAUCGUCAUUGCAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "87f756e2-67f6-4e7a-9f33-53f571637047", "aliases:array": "sherman-weissman:EP300-siRNA-1;sherman-weissman:EP300-siRNA-2;sherman-weissman:EP300-siRNA-3;sherman-weissman:EP300-siRNA-4", "modified_site_by_target_id": "EP300-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003486-00", "rnai_sequences:array": "CGACAGGGAUGCAGCAACA;GACAAGGGAUAAUGCCUAA;GGACUACCCUAUCAAGUAA;GUUCAAUAAUGCCUGGUUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "5b2d7335-cfbb-4a24-88d4-168a0102a5aa", "aliases:array": "sherman-weissman:ERF-siRNA-1;sherman-weissman:ERF-siRNA-2;sherman-weissman:ERF-siRNA-3;sherman-weissman:ERF-siRNA-4", "modified_site_by_target_id": "ERF-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009674-00", "rnai_sequences:array": "CGUCAGAGCUGGAGGAACC;AACUGGUGCUGGUCAAUUA;CUGAGGACAUGAAACGGUA;CAAGGCGGGUGAGCUCUGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "39a88189-e947-4474-b4da-73848910ecc1", "aliases:array": "sherman-weissman:ETS1-siRNA-1;sherman-weissman:ETS1-siRNA-2;sherman-weissman:ETS1-siRNA-3;sherman-weissman:ETS1-siRNA-4", "modified_site_by_target_id": "ETS1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003887-00", "rnai_sequences:array": "AUAGAGAGCUACGAUAGUU;GUGAAACCAUAUCAAGUUA;GAAAUGAUGUCUCAAGCAU;CAGAAUGACUACUUUGCUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "651e9f43-c4f5-4ce8-9091-9a3534ccf7b9", "aliases:array": "sherman-weissman:ETS2-siRNA-1;sherman-weissman:ETS2-siRNA-2;sherman-weissman:ETS2-siRNA-3;sherman-weissman:ETS2-siRNA-4", "modified_site_by_target_id": "ETS2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003888-00", "rnai_sequences:array": "UGUGAUGAGUCAAGCCUUA;GCAACGGGUUCCUUCCUUC;UAACAGCAAUACAUUAGGU;GCAAGGCAAACCAGUUAUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "8d5d1abd-8f3a-4088-912f-a0eeda743c49", "aliases:array": "sherman-weissman:ETV6-siRNA-1;sherman-weissman:ETV6-siRNA-2;sherman-weissman:ETV6-siRNA-3;sherman-weissman:ETV6-siRNA-4", "modified_site_by_target_id": "ETV6-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-010510-00", "rnai_sequences:array": "GGACAAAGAAUCCAAAAUA;CAGGUGAUGUGCUCUAUGA;GGGAUUACGUCUAUCAGUU;GAACAAACAUGACCUAUGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "eb6f152b-9291-47b2-a6c3-3fe124137501", "aliases:array": "sherman-weissman:EZH2-siRNA-1;sherman-weissman:EZH2-siRNA-2;sherman-weissman:EZH2-siRNA-3;sherman-weissman:EZH2-siRNA-4", "modified_site_by_target_id": "EZH2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-004218-00", "rnai_sequences:array": "UAACGGUGAUCACAGGAUA;GCUGAAGCCUCAAUGUUUA;GCAAAUUCUCGGUGUCAAA;GAGGACGGCUUCCCAAUAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "3ac16b73-b1fa-46fa-9c3b-9460532bcaba", "aliases:array": "sherman-weissman:FOXP1-siRNA-1;sherman-weissman:FOXP1-siRNA-2;sherman-weissman:FOXP1-siRNA-3;sherman-weissman:FOXP1-siRNA-4", "modified_site_by_target_id": "FOXP1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-004256-01", "rnai_sequences:array": "GAUGCAAGAAUCUGGGACU;AAUCUGGGACUGAGACAAA;CGGCAGCAACCACUUACUA;CGGUUCAGCCAUCCAGAAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "ee448014-59a2-4eed-8bc0-abb7f50a4c2e", "aliases:array": "sherman-weissman:GAPDH-siRNA-1;sherman-weissman:GAPDH-siRNA-2;sherman-weissman:GAPDH-siRNA-3;sherman-weissman:GAPDH-siRNA-4", "modified_site_by_target_id": "GAPDH-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-004253-00", "rnai_sequences:array": "GACCUGACCUGCCGUCUAG;CAACGGAUUUGGUCGUAUU;GCGAUGCUGGCGCUGAGUA;CAAUAUGAUUCCACCCAUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "1da2713d-ff0d-415a-a00d-5a16372535fd", "aliases:array": "sherman-weissman:GFI1B-siRNA-1;sherman-weissman:GFI1B-siRNA-2;sherman-weissman:GFI1B-siRNA-3;sherman-weissman:GFI1B-siRNA-4", "modified_site_by_target_id": "GFI1B-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-019828-00", "rnai_sequences:array": "GGACCAACCUCAAACGAGA;GACCAGAACUUGGCCAGGA;GUGCGACGCUCCCAUAGUG;CCGCGAGAGUCAACACAAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "fc9a3771-c84d-4bb6-afb7-a8af4873096c", "aliases:array": "sherman-weissman:HDAC8-siRNA-1;sherman-weissman:HDAC8-siRNA-2;sherman-weissman:HDAC8-siRNA-3;sherman-weissman:HDAC8-siRNA-4", "modified_site_by_target_id": "HDAC8-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003500-00", "rnai_sequences:array": "CAGCAUAUGGUCCUGAUUA;GGAAUUGGCAAGUGUCUUA;UAGAAUAUGGGCUAGGUUA;GACGGAAAUUUGAGCGUAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "490823ce-8bde-4ef7-8fad-bc657cc84ce6", "aliases:array": "sherman-weissman:HHEX-siRNA-1;sherman-weissman:HHEX-siRNA-2;sherman-weissman:HHEX-siRNA-3;sherman-weissman:HHEX-siRNA-4", "modified_site_by_target_id": "HHEX-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-011756-00", "rnai_sequences:array": "UUGGAUAGCUCUCAAUGUU;GCUAAAUGGAGGAGACUAA;GUGAUCAGAGGCAAGAUUU;GGAGAACCCUCAAAGCAAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "9a13ba94-4965-4c20-8c27-36861afccc32", "aliases:array": "sherman-weissman:HMGB1-siRNA-1;sherman-weissman:HMGB1-siRNA-2;sherman-weissman:HMGB1-siRNA-3;sherman-weissman:HMGB1-siRNA-4", "modified_site_by_target_id": "HMGB1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-018981-00", "rnai_sequences:array": "CGAAAUAAUUGUUGUUCUG;CAAACUCAUUCAUUAGUCA;CCACUUACAUUUACAAACU;CAAAGCAUGGGAUUAUUAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "081f8f9c-f86e-4c9d-9fe2-fb1542cfd2ce", "aliases:array": "sherman-weissman:HOXB4-siRNA-1;sherman-weissman:HOXB4-siRNA-2;sherman-weissman:HOXB4-siRNA-3;sherman-weissman:HOXB4-siRNA-4", "modified_site_by_target_id": "HOXB4-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-012892-01", "rnai_sequences:array": "AGGAAUAUUCACAGAGCGA;GCGCAAAGUUCACGUGAGC;GCAAAGAGCCCGUCGUCUA;CGAAGAUGGAUCCACGUUU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "ff6a9a89-a112-4225-8892-e0f1d7ce494f", "aliases:array": "sherman-weissman:ID2-siRNA-1;sherman-weissman:ID2-siRNA-2;sherman-weissman:ID2-siRNA-3;sherman-weissman:ID2-siRNA-4", "modified_site_by_target_id": "ID2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009864-00", "rnai_sequences:array": "CGUGAGGUCCGUUAGGAAA;GGACUCGCAUCCCACUAUU;CGAUGAGCCUGCUAUACAA;GCACUGUGUGGCUGAAUAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "2cf92116-86fa-4058-aa52-3848e9b4ac02", "aliases:array": "sherman-weissman:ID3-siRNA-1;sherman-weissman:ID3-siRNA-2;sherman-weissman:ID3-siRNA-3;sherman-weissman:ID3-siRNA-4", "modified_site_by_target_id": "ID3-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009905-00", "rnai_sequences:array": "GGAAGGUGACUUUCUGUAA;GAACGCAGUCUGGCCAUCG;GCACUCAGCUUAGCCAGGU;GGGAACUGGUACCCGGAGU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "d2b0d1d9-f9fb-4b9c-9881-9fdd2c391a53", "aliases:array": "sherman-weissman:ILF2-siRNA-1;sherman-weissman:ILF2-siRNA-2;sherman-weissman:ILF2-siRNA-3;sherman-weissman:ILF2-siRNA-4", "modified_site_by_target_id": "ILF2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-017599-00", "rnai_sequences:array": "CGAAUCCUCUCACAUGGUG;CAACGAAACUGGCUUUGAA;GGAACAAAGUCGUGGAAAG;CCAUUUGACUUCUAUUUGU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "75198889-a406-49c7-aee8-bc25f79357e4", "aliases:array": "sherman-weissman:JUNB-siRNA-1;sherman-weissman:JUNB-siRNA-2;sherman-weissman:JUNB-siRNA-3;sherman-weissman:JUNB-siRNA-4", "modified_site_by_target_id": "JUNB-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003269-00", "rnai_sequences:array": "CAUACACAGCUACGGGAUA;GAACAGCCCUUCUACCACG;GGACACGCCUUCUGAACGU;GAGCUGGAACGCCUGAUUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "0be12afb-f2b9-4414-825d-0305ffb10c12", "aliases:array": "sherman-weissman:JUND-siRNA-1;sherman-weissman:JUND-siRNA-2;sherman-weissman:JUND-siRNA-3;sherman-weissman:JUND-siRNA-4", "modified_site_by_target_id": "JUND-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003900-00", "rnai_sequences:array": "CCGACGAGCUCACAGUUCC;GAAACACCCUUCUACGGCG;GUUCGAUUCUGCCCUAUUU;UCAAGAGUCAGAACACGGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "f3a74721-d929-4555-b8dc-dc589b0db84c", "aliases:array": "sherman-weissman:KAT2B-siRNA-1;sherman-weissman:KAT2B-siRNA-2;sherman-weissman:KAT2B-siRNA-3;sherman-weissman:KAT2B-siRNA-4", "modified_site_by_target_id": "KAT2B-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-005055-00", "rnai_sequences:array": "CGACAGAUUCCUAUAGAAA;GGUACUACGUGUCUAAGAA;GCAAACAAUAGUUGAGUUG;GAGCCGACCUGCAGCAAAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "0b06510e-afce-41a4-9e53-1913af030cfa", "aliases:array": "sherman-weissman:KDM1A-siRNA-1;sherman-weissman:KDM1A-siRNA-2;sherman-weissman:KDM1A-siRNA-3;sherman-weissman:KDM1A-siRNA-4", "modified_site_by_target_id": "KDM1A-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009223-00", "rnai_sequences:array": "CAUAAGUGACGAUGUGAUU;CCACCGAGUUCACAGUUAU;CUAUAAAGCUCCAAUACUG;GGAAGUUGUCAUUCAGUUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "ffaf87bb-0d51-40e2-8f50-816c582842a8", "aliases:array": "sherman-weissman:KLF2-siRNA-1;sherman-weissman:KLF2-siRNA-2;sherman-weissman:KLF2-siRNA-3;sherman-weissman:KLF2-siRNA-4", "modified_site_by_target_id": "KLF2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-006928-00", "rnai_sequences:array": "ACCAAGAGUUCGCAUCUGA;GCAAACGCACCGCCACUCA;GCUGGAAGUUUGCGCGCUC;GCACCGACGACGACCUCAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "3142119b-c3a3-4d37-bedb-d45bd9b2b7c4", "aliases:array": "sherman-weissman:L3MBTL2-siRNA-1;sherman-weissman:L3MBTL2-siRNA-2;sherman-weissman:L3MBTL2-siRNA-3;sherman-weissman:L3MBTL2-siRNA-4", "modified_site_by_target_id": "L3MBTL2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-010678-02", "rnai_sequences:array": "UCCCAAAGCUGGAACGCUA;UGGAGAAGACCAAGUCGAA;UAUGAUAGUUUCCGGAGUU;AGAAAAUGAGGAUCGGGAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "007420a9-b83b-4485-afd3-533d1c0586e9", "aliases:array": "sherman-weissman:LDB1-siRNA-1;sherman-weissman:LDB1-siRNA-2;sherman-weissman:LDB1-siRNA-3;sherman-weissman:LDB1-siRNA-4", "modified_site_by_target_id": "LDB1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-016010-00", "rnai_sequences:array": "GAAGUGGCAGCGCAUGGUA;CUACGGAGCUGUACUAUGU;GGGAUGCAUUCACGACUGA;CAAUUCCACUCUCAACUAC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "62f36270-701f-45d7-a8c1-57f0e8b66ee8", "aliases:array": "sherman-weissman:LMNA-siRNA-1;sherman-weissman:LMNA-siRNA-2;sherman-weissman:LMNA-siRNA-3;sherman-weissman:LMNA-siRNA-4", "modified_site_by_target_id": "LMNA-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-004978-00", "rnai_sequences:array": "GAAGGAGGGUGACCUGAUA;UCACAGCACGCACGCACUA;UGAAAGCGCGCAAUACCAA;CGUGUGCGCUCGCUGGAAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "a562c126-accb-4765-91fe-464530df3361", "aliases:array": "sherman-weissman:LMNB1-siRNA-1;sherman-weissman:LMNB1-siRNA-2;sherman-weissman:LMNB1-siRNA-3;sherman-weissman:LMNB1-siRNA-4", "modified_site_by_target_id": "LMNB1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-005270-00", "rnai_sequences:array": "AAUAGAAGCUGUGCAAUUA;GAUCAAGCUUCGAGAAUAU;GCAUGAAACGCGCUUGGUA;GCGCAAGCCCUUCAUGAGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "298c72ee-da8d-495a-90bd-301e2b9225f3", "aliases:array": "sherman-weissman:LMNB2-siRNA-1;sherman-weissman:LMNB2-siRNA-2;sherman-weissman:LMNB2-siRNA-3;sherman-weissman:LMNB2-siRNA-4", "modified_site_by_target_id": "LMNB2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-005290-00", "rnai_sequences:array": "CCUCGACGCUGGUGUGGAA;GAGAUCGCCUACAAGUUCA;UAACGCGGAUGGCGAGGAA;GUGAAGAAGUCCUCGGUGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b8da936e-6743-4261-873a-438b388e366f", "aliases:array": "sherman-weissman:MAFF-siRNA-1;sherman-weissman:MAFF-siRNA-2;sherman-weissman:MAFF-siRNA-3;sherman-weissman:MAFF-siRNA-4", "modified_site_by_target_id": "MAFF-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003903-00", "rnai_sequences:array": "CAGCAAAGCUCUAAAGAUC;UGACACGGCUCAAGCAGCG;GAGAACACGCCGCACCUGU;GUGAAGCGCGUGUGCCAGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "0656afcd-ddb4-4794-8506-23c7a47b5e38", "aliases:array": "sherman-weissman:MAFG-siRNA-1;sherman-weissman:MAFG-siRNA-2;sherman-weissman:MAFG-siRNA-3;sherman-weissman:MAFG-siRNA-4", "modified_site_by_target_id": "MAFG-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009109-00", "rnai_sequences:array": "GCGCAGUAUUUAUUGCUAA;UCAGAGAACGCCAGCAUGA;GGCGUUAGUUGGAAUCAUA;GUAAAGUGCUGGUGCUUCU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "11264c38-f4d7-4791-b016-305dc7c3ec50", "aliases:array": "sherman-weissman:MAFK-siRNA-1;sherman-weissman:MAFK-siRNA-2;sherman-weissman:MAFK-siRNA-3;sherman-weissman:MAFK-siRNA-4", "modified_site_by_target_id": "MAFK-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-008580-00", "rnai_sequences:array": "CGACUAAUCCCAAACCGAA;CUUCUCGGCUGCAUCCUAG;CGUGGUAGGUAAUCCAUAU;GGAGUCGGGACAUAUAAUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "5cba6273-39bd-49c1-b00a-c7d0c9a80a78", "aliases:array": "sherman-weissman:MAX-siRNA-1;sherman-weissman:MAX-siRNA-2;sherman-weissman:MAX-siRNA-3;sherman-weissman:MAX-siRNA-4", "modified_site_by_target_id": "MAX-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-010092-00", "rnai_sequences:array": "GACAAACGGGCUCAUCAUA;GUAGGGACCACAUCAAAGA;UUUCACAGUUUGCGGGACU;ACAUCGAGGUGGAGAGCGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "1c3bf5ff-4013-4596-9861-51f864d0b01f", "aliases:array": "sherman-weissman:MAZ-siRNA-1;sherman-weissman:MAZ-siRNA-2;sherman-weissman:MAZ-siRNA-3;sherman-weissman:MAZ-siRNA-4", "modified_site_by_target_id": "MAZ-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-012588-00", "rnai_sequences:array": "CGGAUCACCUCAACAGUCA;GAAAGUGCCAUGUCACGUG;GAGCUCGGCUUAUAUUUCG;CAAAGGUACUGGUGAGGUU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "32e36e4e-0768-402c-a347-694f8996f587", "aliases:array": "sherman-weissman:MNT-siRNA-1;sherman-weissman:MNT-siRNA-2;sherman-weissman:MNT-siRNA-3;sherman-weissman:MNT-siRNA-4", "modified_site_by_target_id": "MNT-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009373-00", "rnai_sequences:array": "GGAUGGACGUACUGGAGAU;GAAGUCAAAUCCAGUGAAC;GAUCGGAACCAGAGAAGUC;GAAGUUGGCACCAGCUGAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "13acf461-88ce-4e51-b6bc-76ea3a8bc423", "aliases:array": "sherman-weissman:MTA1-siRNA-1;sherman-weissman:MTA1-siRNA-2;sherman-weissman:MTA1-siRNA-3;sherman-weissman:MTA1-siRNA-4", "modified_site_by_target_id": "MTA1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-004127-00", "rnai_sequences:array": "GCAUCUUGUUGGACAUAUU;UCACGGACAUUCAGCAAGA;CCAGCAUCAUUGAGUACUA;GGACCAAACCGCAGUAACA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "7a70be36-a1db-44f7-9ec7-03b0d80d9227", "aliases:array": "sherman-weissman:MTA3-siRNA-1;sherman-weissman:MTA3-siRNA-2;sherman-weissman:MTA3-siRNA-3;sherman-weissman:MTA3-siRNA-4", "modified_site_by_target_id": "MTA3-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-022665-01", "rnai_sequences:array": "AGGGAAUGCCAGUCCGAAA;GUGCAACAGAAACGUCUAA;CCACUUACGGAUCGACAGA;CUUCAAUGACAUACGGCAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "322212c9-68a6-49d5-a308-3111d85f76f0", "aliases:array": "sherman-weissman:MXI1-siRNA-1;sherman-weissman:MXI1-siRNA-2;sherman-weissman:MXI1-siRNA-3;sherman-weissman:MXI1-siRNA-4", "modified_site_by_target_id": "MXI1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009947-00", "rnai_sequences:array": "GGAGAUGGAACGAAUACGA;GAACCCAGCAUGACAUAAC;GAAGUGGACAAUAUAAGUA;GCACACAACACUUGGUUUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b38601ed-d354-4527-9d6d-3facad4934bf", "aliases:array": "sherman-weissman:NBN-siRNA-1;sherman-weissman:NBN-siRNA-2;sherman-weissman:NBN-siRNA-3;sherman-weissman:NBN-siRNA-4", "modified_site_by_target_id": "NBN-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009641-00", "rnai_sequences:array": "GAAUAGAAACGUCUUGUUC;GCAGAUACAUGGGAUUUGA;AACAAUAUGUGCACUCAUU;CCAACUAAAUUGCCAAGUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "ce92b589-7430-4ef2-98ad-4d8c6a9235d7", "aliases:array": "sherman-weissman:NCOR1-siRNA-1;sherman-weissman:NCOR1-siRNA-2;sherman-weissman:NCOR1-siRNA-3;sherman-weissman:NCOR1-siRNA-4", "modified_site_by_target_id": "NCOR1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003518-00", "rnai_sequences:array": "GGAAAGUCCUCCCAUACGA;GCACACGGCCGAUAAUUGA;GCUGAGGGCUUCUGCAGAU;GCACUUAUUUGACUUCUCA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "f47dcf97-118f-43ca-9bd1-6bdbf7ea1308", "aliases:array": "sherman-weissman:NEUROD1-siRNA-1;sherman-weissman:NEUROD1-siRNA-2;sherman-weissman:NEUROD1-siRNA-3;sherman-weissman:NEUROD1-siRNA-4", "modified_site_by_target_id": "NEUROD1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-008667-00", "rnai_sequences:array": "UCCCAUGUCUUCCACGUUA;GAAAGCCCUCUGACUGAUU;UGAGACGCAUGAAGGCUAA;GUGCCUUGCUAUUCUAAGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b69baef8-3073-4275-a4a1-d13e797d0a80", "aliases:array": "sherman-weissman:NFE2L2-siRNA-1;sherman-weissman:NFE2L2-siRNA-2;sherman-weissman:NFE2L2-siRNA-3;sherman-weissman:NFE2L2-siRNA-4", "modified_site_by_target_id": "NFE2L2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003755-00", "rnai_sequences:array": "UAAAGUGGCUGCUCAGAAU;GAGUUACAGUGUCUUAAUA;UGGAGUAAGUCGAGAAGUA;CACCUUAUAUCUCGAAGUU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b9cf5d8e-dd30-4a04-b3dd-d39d8f413aac", "aliases:array": "sherman-weissman:NFKB2-siRNA-1;sherman-weissman:NFKB2-siRNA-2;sherman-weissman:NFKB2-siRNA-3;sherman-weissman:NFKB2-siRNA-4", "modified_site_by_target_id": "NFKB2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003918-00", "rnai_sequences:array": "GUAGACACGUACCGACAGA;GAUCUGCGCCGUUUCUGUG;CGAACAGCCUUGCAUCUAG;AGACGAGUGUGGUGAGCUU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "0f4b9918-0eb7-41e1-9ef7-cc3b078071a9", "modified_site_by_target_id": "Non-specific%20target%20control-human", "reagent_availability:object:array": "source:dharmacon, identifier:D-001810-10-05", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "lab": "michael-snyder", "award": "U54HG006996"}, - {"uuid": "9f41540d-fde5-48b0-be31-55130c00ccb1", "aliases:array": "sherman-weissman:NONO-siRNA-1;sherman-weissman:NONO-siRNA-2;sherman-weissman:NONO-siRNA-3;sherman-weissman:NONO-siRNA-4", "modified_site_by_target_id": "NONO-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-007756-01", "rnai_sequences:array": "AAACAAACGUCGCCGAUAC;CAAAGUGGAUCCAGUUAGA;GGAUGGGUCAGAUGGCUAU;GUCAAUUCUGUGUGGUAUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "ce25052b-2053-4c22-8c4c-4a163aa1b0be", "aliases:array": "sherman-weissman:NRF1-siRNA-1;sherman-weissman:NRF1-siRNA-2;sherman-weissman:NRF1-siRNA-3;sherman-weissman:NRF1-siRNA-4", "modified_site_by_target_id": "NRF1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-017924-00", "rnai_sequences:array": "GAAACGGCCUCAUGUAUUU;CACAUUGGCUGAUGCUUCA;UAGUAUAGCUCAUCUUGUA;GCUAUUGUCCUCUGUAUCU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "d4d4cdce-f8c1-4c32-bd2a-b9610a31cc43", "aliases:array": "sherman-weissman:PAX8-siRNA-1;sherman-weissman:PAX8-siRNA-2;sherman-weissman:PAX8-siRNA-3;sherman-weissman:PAX8-siRNA-4", "modified_site_by_target_id": "PAX8-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003778-00", "rnai_sequences:array": "CAUCCGGCCUGGAGUGAUA;CCUCACAACUCCAUCAGAU;CAGGAUAGCUGCCGACUAA;CGACAUCUCUCGCCAGCUC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b73608fa-cff3-4065-84ba-10a86bec73ab", "aliases:array": "sherman-weissman:PBX2-siRNA-1;sherman-weissman:PBX2-siRNA-2;sherman-weissman:PBX2-siRNA-3;sherman-weissman:PBX2-siRNA-4", "modified_site_by_target_id": "PBX2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-011746-00", "rnai_sequences:array": "GCCCAGAUCCGUCACAUAU;GCAGGCAUGUAAUGAGUUC;CGAAAGCGCCGUAACUUCA;GCUCAACGGAGAUUCCUAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "a518c599-5169-471f-b725-b33432ce0b02", "aliases:array": "sherman-weissman:POLR2A-siRNA-1;sherman-weissman:POLR2A-siRNA-2;sherman-weissman:POLR2A-siRNA-3;sherman-weissman:POLR2A-siRNA-4", "modified_site_by_target_id": "POLR2A-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-011186-00", "rnai_sequences:array": "CAACUAUAGUCCCACAUCA;UAAUAGAGGUCAUCGAGAA;GGGAUGAGAUGAACUUGCA;CAGGUGAACCGCAUUCUUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "18e49ad6-b728-4558-aaee-6fd043f125a8", "aliases:array": "sherman-weissman:POU5F1-siRNA-1;sherman-weissman:POU5F1-siRNA-2;sherman-weissman:POU5F1-siRNA-3;sherman-weissman:POU5F1-siRNA-4", "modified_site_by_target_id": "POU5F1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-019591-00", "rnai_sequences:array": "GCACUGUACUCCUCGGUCC;UCCCAUGCAUUCAAACUGA;CGAGAAGGAUGUGGUCCGA;GCGAUCAAGCAGCGACUAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "8d7fa78a-949a-476e-b644-0261017b8bd9", "aliases:array": "sherman-weissman:PPARGC1A-siRNA-1;sherman-weissman:PPARGC1A-siRNA-2;sherman-weissman:PPARGC1A-siRNA-3;sherman-weissman:PPARGC1A-siRNA-4", "modified_site_by_target_id": "PPARGC1A-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-005111-00", "rnai_sequences:array": "GAAGAGCGCCGUGUGAUUU;GAGAAUUCAUGGAGCAAUA;GCAGGUAACAUGUUCCCUA;ACACUCAGCUAAGUUAUAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "6e341955-609f-4f37-ac5c-3aabdc5c8287", "aliases:array": "sherman-weissman:PRDM1-siRNA-1;sherman-weissman:PRDM1-siRNA-2;sherman-weissman:PRDM1-siRNA-3;sherman-weissman:PRDM1-siRNA-4", "modified_site_by_target_id": "PRDM1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-009322-00", "rnai_sequences:array": "CCGAAUCAAUGAAGAAAUC;GAGAGUACAGCGUGAAAGA;GCAACUGGAUGCGCUAUGU;CCUCUACCGUUCUAACAUU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "68ee1a24-d044-4abb-a647-06dba4fb38b0", "aliases:array": "sherman-weissman:RAD21-siRNA-1;sherman-weissman:RAD21-siRNA-2;sherman-weissman:RAD21-siRNA-3;sherman-weissman:RAD21-siRNA-4", "modified_site_by_target_id": "RAD21-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-006832-00", "rnai_sequences:array": "GCUCAGCCUUUGUGGAAUA;GACCAAGGUUCCAUAUUAU;GCAUUGGAGCCUAUUGAUA;GGGAGUAGUUCGAAUCUAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "88077113-1a9b-4816-afe7-5003daab4ea6", "aliases:array": "sherman-weissman:RB1-siRNA-1;sherman-weissman:RB1-siRNA-2;sherman-weissman:RB1-siRNA-3;sherman-weissman:RB1-siRNA-4", "modified_site_by_target_id": "RB1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003296-02", "rnai_sequences:array": "GAACAGGAGUGCACGGAUA;GGUUCAACUACGCGUGUAA;CAUUAAUGGUUCACCUCGA;CAACCCAGCAGUUCGAUAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "40752043-6a75-4750-9ded-85dc1f23e78b", "aliases:array": "sherman-weissman:RCOR1-siRNA-1;sherman-weissman:RCOR1-siRNA-2;sherman-weissman:RCOR1-siRNA-3;sherman-weissman:RCOR1-siRNA-4", "modified_site_by_target_id": "RCOR1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-014076-00", "rnai_sequences:array": "CCAUUGACAUUGAGGUUGA;UAAGAUGCCCGAAGAGGAA;CAGGAAAUAUGGCCGAGAU;GGACAAUCUUGGCAUGUUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "63a2fb8e-d11a-41ad-bb12-244bf7196ddf", "aliases:array": "sherman-weissman:RELA-siRNA-1;sherman-weissman:RELA-siRNA-2;sherman-weissman:RELA-siRNA-3;sherman-weissman:RELA-siRNA-4", "modified_site_by_target_id": "RELA-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003533-00", "rnai_sequences:array": "CCACACAACUGAGCCCAUG;CCCACGAGCUUGUAGGAAA;GGAUUGAGGAGAAACGUAA;GGCUAUAACUCGCCUAGUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b0a236a2-7625-46f8-b8ac-2dfa0efbe889", "aliases:array": "sherman-weissman:RFX1-siRNA-1;sherman-weissman:RFX1-siRNA-2;sherman-weissman:RFX1-siRNA-3;sherman-weissman:RFX1-siRNA-4", "modified_site_by_target_id": "RFX1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-010147-00", "rnai_sequences:array": "UCACAGAGCUCGACCUCCA;CAACACAGGCGUAUACUGA;CCGCACAGAUCAACCAGAU;CCACGUGGCUCAAGAGGUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "76b962fc-121b-4896-a7b0-399ce4192d9c", "aliases:array": "sherman-weissman:RNF2-siRNA-1;sherman-weissman:RNF2-siRNA-2;sherman-weissman:RNF2-siRNA-3;sherman-weissman:RNF2-siRNA-4", "modified_site_by_target_id": "RNF2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-006556-00", "rnai_sequences:array": "ACAAAGGAGUGUUUACAUC;CGAGAUACAUAAAGACUUC;GUAUCUGGCUGUGAGGUUA;GGCAAUUGAUCCAGUAAUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "7054aed0-cb50-4f1d-ab11-77b9ced45f77", "aliases:array": "sherman-weissman:RUNX1-siRNA-1;sherman-weissman:RUNX1-siRNA-2;sherman-weissman:RUNX1-siRNA-3;sherman-weissman:RUNX1-siRNA-4", "modified_site_by_target_id": "RUNX1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003926-00", "rnai_sequences:array": "UGACAACCCUCUCUGCAGA;CAAAUGAUCUGGUGGUUAU;CGAUAGGUCUCACGCAACA;GAAACUAGAUGAUCAGACC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "727b2794-e22c-4a3f-b45b-cc0198910b82", "aliases:array": "sherman-weissman:SATB2-siRNA-1;sherman-weissman:SATB2-siRNA-2;sherman-weissman:SATB2-siRNA-3;sherman-weissman:SATB2-siRNA-4", "modified_site_by_target_id": "SATB2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-023161-01", "rnai_sequences:array": "UAAUAAGCCUGCUCGUUUA;GCCAGAUCUUUGCGAAUUA;UGUCUGAGAUUCUGCGUAA;AGUUUGUCCUGGUGCGGAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "0412b251-409f-40bf-9c1d-f2a3998a129b", "aliases:array": "sherman-weissman:SIRT1-siRNA-1;sherman-weissman:SIRT1-siRNA-2;sherman-weissman:SIRT1-siRNA-3;sherman-weissman:SIRT1-siRNA-4", "modified_site_by_target_id": "SIRT1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003540-00", "rnai_sequences:array": "GCAAAGGAGCAGAUUAGUA;GGAUAGGUCCAUAUACUUU;GCGAUUGGGUACCGAGAUA;CCACCUGAGUUGGAUGAUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "96b2ec26-36a2-472b-81fe-a6ae8c8c211d", "aliases:array": "sherman-weissman:SIX1-siRNA-1;sherman-weissman:SIX1-siRNA-2;sherman-weissman:SIX1-siRNA-3;sherman-weissman:SIX1-siRNA-4", "modified_site_by_target_id": "SIX1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-020093-00", "rnai_sequences:array": "GCACAAGAACGAGAGCGUA;GCAGCAAGGCGGAAACCUG;GCCAGGAGCUCAAACUAUU;GAAGGCGCAUUACGUGGAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b522c3a1-b80a-48df-a8b0-950e4cabc4ad", "aliases:array": "sherman-weissman:SKI-siRNA-1;sherman-weissman:SKI-siRNA-2;sherman-weissman:SKI-siRNA-3;sherman-weissman:SKI-siRNA-4", "modified_site_by_target_id": "SKI-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003927-00", "rnai_sequences:array": "GCGACGAGCUCCACAUCUA;UGAAGGAGAAAUUCGACUA;CCACGGAGGCCAAGCGUAA;GAAAGAGGCCAACGAGUCA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "d51bb50b-3b30-40eb-ada4-f6440f5629e0", "aliases:array": "sherman-weissman:SKIL-siRNA-1;sherman-weissman:SKIL-siRNA-2;sherman-weissman:SKIL-siRNA-3;sherman-weissman:SKIL-siRNA-4", "modified_site_by_target_id": "SKIL-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-010535-00", "rnai_sequences:array": "GGAAUUACAGUCAUGGUAU;GGGCAUACUUCCAUUCAAU;GCAAGUAAGUCCAUAUCAA;GAAUGAACAUGCUCAAAGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "5f59ea1a-2798-4dcf-9ac7-9818dcf1ff95", "aliases:array": "sherman-weissman:SMAD1-siRNA-1;sherman-weissman:SMAD1-siRNA-2;sherman-weissman:SMAD1-siRNA-3;sherman-weissman:SMAD1-siRNA-4", "modified_site_by_target_id": "SMAD1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-012723-00", "rnai_sequences:array": "GCUCUAUUGUCUACUAUGA;GGCGGUUGCUUAUGAGGAA;CAACAAUCGUGUGGGUGAA;CAAAUGGGUUCACCUCAUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "bb1c3f4d-22b1-4c65-8875-2f221aa0d4ae", "aliases:array": "sherman-weissman:SMAD2-siRNA-1;sherman-weissman:SMAD2-siRNA-2;sherman-weissman:SMAD2-siRNA-3;sherman-weissman:SMAD2-siRNA-4", "modified_site_by_target_id": "SMAD2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003561-00", "rnai_sequences:array": "GGUUUACUCUCCAAUGUUA;GAAUUGAGCCACAGAGUAA;ACUAGAAUGUGCACCAUAA;UCAUAAAGCUUCACCAAUC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "e62392d4-e7a5-4df3-9fe4-456949b4eeba", "aliases:array": "sherman-weissman:SMAD3-siRNA-1;sherman-weissman:SMAD3-siRNA-2;sherman-weissman:SMAD3-siRNA-3;sherman-weissman:SMAD3-siRNA-4", "modified_site_by_target_id": "SMAD3-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-020067-00", "rnai_sequences:array": "GGACGCAGGUUCUCCAAAC;CAACAGGAAUGCAGCAGUG;UUAGAGACAUCAAGUAUGG;GAGUUCGCCUUCAAUAUGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "c1ebb530-d9d1-4e7e-9181-5787f8033f0f", "aliases:array": "sherman-weissman:SMAD4-siRNA-1;sherman-weissman:SMAD4-siRNA-2;sherman-weissman:SMAD4-siRNA-3;sherman-weissman:SMAD4-siRNA-4", "modified_site_by_target_id": "SMAD4-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003902-00", "rnai_sequences:array": "CCCACAACCUUUAGACUGA;GUACAGAGUUACUACUUAG;GAAUCCAUAUCACUACGAA;GCAAUUGAAAGUUUGGUAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "79126840-b441-4704-924a-896e11b67298", "aliases:array": "sherman-weissman:SMARCA4-siRNA-1;sherman-weissman:SMARCA4-siRNA-2;sherman-weissman:SMARCA4-siRNA-3;sherman-weissman:SMARCA4-siRNA-4", "modified_site_by_target_id": "SMARCA4-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-010431-00", "rnai_sequences:array": "GACCAGCACUCCCAAGGUU;CCAAGCCGGUCGUGAGUGA;GCGACUCACUGACGGAGAA;GCACACCGCUGCAGAACAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "e137c9bc-b6a0-45ff-8999-fd9625149338", "aliases:array": "sherman-weissman:SMARCB1-siRNA-1;sherman-weissman:SMARCB1-siRNA-2;sherman-weissman:SMARCB1-siRNA-3;sherman-weissman:SMARCB1-siRNA-4", "modified_site_by_target_id": "SMARCB1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-010536-00", "rnai_sequences:array": "GUGACGAUCUGGAUUUGAA;GAAACUACCUCCGUAUGUU;GAUGACGCCUGAGAUGUUU;GGCAGAAGCCCGUGAAGUU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "32b81896-270b-4d62-8fea-00c9d34773a3", "aliases:array": "sherman-weissman:SOX6-siRNA-1;sherman-weissman:SOX6-siRNA-2;sherman-weissman:SOX6-siRNA-3;sherman-weissman:SOX6-siRNA-4", "modified_site_by_target_id": "SOX6-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-015101-01", "rnai_sequences:array": "AUACAAACCCCGACCGAAA;AAGAACAGAUUGCGAGACA;GGUCUUAAUUGUUUCGUAA;ACAUGGUGUUGACGGGAAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b2dafe76-7511-4f3a-a9fb-43635079e37f", "aliases:array": "sherman-weissman:SP1-siRNA-1;sherman-weissman:SP1-siRNA-2;sherman-weissman:SP1-siRNA-3;sherman-weissman:SP1-siRNA-4", "modified_site_by_target_id": "SP1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-026959-00", "rnai_sequences:array": "CUACAGAGGCACAAACGUA;GAAGGGAGGCCCAGGUGUA;GCCAAUAGCUACUCAACUA;GGGCAGACCUUUACAACUC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "56d121fd-28cc-439f-8e2a-e9315f3b4ac5", "aliases:array": "sherman-weissman:SP100-siRNA-1;sherman-weissman:SP100-siRNA-2;sherman-weissman:SP100-siRNA-3;sherman-weissman:SP100-siRNA-4", "modified_site_by_target_id": "SP100-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-015307-00", "rnai_sequences:array": "AGGCAUAGAUCUAAAGUAA;GAAGUGAGCCUGUGAUCAA;UACCAGAGCCCAUGGAUUU;GAAGGGCACUCUAUAUAAG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "20e678d9-1e60-47b3-81a1-f4ea6a182562", "aliases:array": "sherman-weissman:SPIB-siRNA-1;sherman-weissman:SPIB-siRNA-2;sherman-weissman:SPIB-siRNA-3;sherman-weissman:SPIB-siRNA-4", "modified_site_by_target_id": "SPIB-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-019722-00", "rnai_sequences:array": "CUGGACAGCUGCAAGCAUU;CAGAUGGCGUCUUCUAUGA;GAACUUCGCUAGCCAGACC;GAGGAAGACUUACCGUUGG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "322baa14-8504-4074-8e9e-9e45337427a9", "aliases:array": "sherman-weissman:STAT2-siRNA-1;sherman-weissman:STAT2-siRNA-2;sherman-weissman:STAT2-siRNA-3;sherman-weissman:STAT2-siRNA-4", "modified_site_by_target_id": "STAT2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-012064-00", "rnai_sequences:array": "GGACUGAGGAUCCAUUAUU;GGACUGAGUUGCCUGGUUA;GAUUUGCCCUGUGAUCUGA;GAGCCCUCCUGGCAAGUUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "c6c8dddb-9dfa-4cc6-a87a-62f490b062d8", "aliases:array": "sherman-weissman:STAT3-siRNA-1;sherman-weissman:STAT3-siRNA-2;sherman-weissman:STAT3-siRNA-3;sherman-weissman:STAT3-siRNA-4", "modified_site_by_target_id": "STAT3-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003544-00", "rnai_sequences:array": "CAACAUGUCAUUUGCUGAA;CCAACAAUCCCAAGAAUGU;GAGAUUGACCAGCAGUAUA;CAACAGAUUGCCUGCAUUG", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "ccc37222-9f32-4c09-a487-68ecba2ffdf3", "aliases:array": "sherman-weissman:STAT5A-siRNA-1;sherman-weissman:STAT5A-siRNA-2;sherman-weissman:STAT5A-siRNA-3;sherman-weissman:STAT5A-siRNA-4", "modified_site_by_target_id": "STAT5A-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-005169-00", "rnai_sequences:array": "CGGCUGGGAUCCUGGUUGA;GCGCUUUAGUGACUCAGAA;GUACUACACUCCUGUGCUG;GCAAUGAGCUUGUGUUCCA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "5afcdcaf-8c43-4413-8038-77f7c1753e23", "aliases:array": "sherman-weissman:STAT6-siRNA-1;sherman-weissman:STAT6-siRNA-2;sherman-weissman:STAT6-siRNA-3;sherman-weissman:STAT6-siRNA-4", "modified_site_by_target_id": "STAT6-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-006690-00", "rnai_sequences:array": "GUUACUAGCCUUCUUCUCA;GGAUGGCUCUCCACAGAUA;GCGGCUCUAUGUCGACUUU;GGAAUGGCGCACCGUUUGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "4930ee9d-785d-48c7-9688-7e603fc09b9e", "aliases:array": "sherman-weissman:SUZ12-siRNA-1;sherman-weissman:SUZ12-siRNA-2;sherman-weissman:SUZ12-siRNA-3;sherman-weissman:SUZ12-siRNA-4", "modified_site_by_target_id": "SUZ12-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-006957-00", "rnai_sequences:array": "GCAGUUCACUCUUCGUUGG;CAACGGACCAGUUAAGAGA;GGUGAAGUCUUACUCGUUG;GAACUGCCGCAAACUUUAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "3c2bd384-87a9-4532-8db8-6e6e6cc6ddd3", "aliases:array": "sherman-weissman:TAL1-siRNA-1", "modified_site_by_target_id": "TAL1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003928-00", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "748dcab0-0101-43a3-8bb2-584815229427", "aliases:array": "sherman-weissman:TARDBP-siRNA-1;sherman-weissman:TARDBP-siRNA-2;sherman-weissman:TARDBP-siRNA-3;sherman-weissman:TARDBP-siRNA-4", "modified_site_by_target_id": "TARDBP-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-012394-00", "rnai_sequences:array": "GGGCUUCGCUACAGGAAUC;CAAUCAAGGUAGUAAUAUG;GCUCAAGCAUGGAUUCUAA;CAGGGUGGAUUUGGUAAUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "42120827-5593-4533-b22b-fbe016f81ecc", "aliases:array": "sherman-weissman:TBL1XR1-siRNA-1;sherman-weissman:TBL1XR1-siRNA-2;sherman-weissman:TBL1XR1-siRNA-3;sherman-weissman:TBL1XR1-siRNA-4", "modified_site_by_target_id": "TBL1XR1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-012927-00", "rnai_sequences:array": "GGAAAUAGCGCUACUAGUU;CGUAAUGCCUGAUGUAGUA;CAUCCUAAGUGCUGGAGUA;GUACUUAGACAUUGUAUAC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "6c7a150c-9eda-482e-b9fa-fb1e22844e07", "aliases:array": "sherman-weissman:TCF19-siRNA-1;sherman-weissman:TCF19-siRNA-2;sherman-weissman:TCF19-siRNA-3;sherman-weissman:TCF19-siRNA-4", "modified_site_by_target_id": "TCF19-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-019641-00", "rnai_sequences:array": "CAAGGUACUUUGGUCAAUA;GGUCACAGGCUGGAAUUGA;CAACGCAAUCGGAGGAAAU;GAAACUCCGUGUAGACAAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "1e7328e3-6738-4d1e-8ca5-880ae775e0e9", "aliases:array": "sherman-weissman:TCF7-siRNA-1;sherman-weissman:TCF7-siRNA-2;sherman-weissman:TCF7-siRNA-3;sherman-weissman:TCF7-siRNA-4", "modified_site_by_target_id": "TCF7-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-019735-00", "rnai_sequences:array": "CCAAGAAGCCAACCAUCAA;UCAAUCUGCUCAUGCAUUA;CCAACUCUCUCUCUACGAA;GAUGCUAGGUUCUGGUGUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "2a9cd5ad-a0a7-4dd0-a2dc-458edb5e7182", "aliases:array": "sherman-weissman:TCF7L2-siRNA-1;sherman-weissman:TCF7L2-siRNA-2;sherman-weissman:TCF7L2-siRNA-3;sherman-weissman:TCF7L2-siRNA-4", "modified_site_by_target_id": "TCF7L2-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-003816-00", "rnai_sequences:array": "CAGCGAAUGUUUCCUAAAU;GAUGUCGGCUCACUCCAUA;CGAGACAAAUCCCGGGAAA;ACACUUACCAGCCGACGUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "9199db76-4a80-43b2-ad0e-c4210648716f", "aliases:array": "sherman-weissman:TCP1-siRNA-1;sherman-weissman:TCP1-siRNA-2;sherman-weissman:TCP1-siRNA-3;sherman-weissman:TCP1-siRNA-4", "modified_site_by_target_id": "TCP1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-012749-00", "rnai_sequences:array": "CCAACCAUAGUUAAAGUUA;GGUCUUGAUUUGAGCAAUG;AUGAUGAGCUGAUCUUAAU;UGAGAUGGAGCGCUCUUUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "141283e7-b557-4bca-9db0-06fa627a1948", "aliases:array": "sherman-weissman:TRIM22-siRNA-1;sherman-weissman:TRIM22-siRNA-2;sherman-weissman:TRIM22-siRNA-3;sherman-weissman:TRIM22-siRNA-4", "modified_site_by_target_id": "TRIM22-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-006927-00", "rnai_sequences:array": "GUAGAUGUGUCUGGAAAGA;AGUGAAAGCUGGACAUUGA;GUACGCACCUGCACAUUUA;UAAACGAGGUGGUCAAGGA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "2366a317-43f9-4a1c-8671-d482ff62786c", "aliases:array": "sherman-weissman:TRIM28-siRNA-1;sherman-weissman:TRIM28-siRNA-2;sherman-weissman:TRIM28-siRNA-3;sherman-weissman:TRIM28-siRNA-4", "modified_site_by_target_id": "TRIM28-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-005046-00", "rnai_sequences:array": "GAAAUGUGAGCGUGUACUG;GAACGAGGCCUUCGGUGAC;AGACAGCACUGGCGUGGUG;GCGAUCUGGUUAUGUGCAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "a7db0ba0-6c55-46c1-828c-846d2c57d79e", "aliases:array": "sherman-weissman:UBP1-siRNA-1;sherman-weissman:UBP1-siRNA-2;sherman-weissman:UBP1-siRNA-3;sherman-weissman:UBP1-siRNA-4", "modified_site_by_target_id": "UBP1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-017654-02", "rnai_sequences:array": "AAGCAGUGCAAGCGAGAAU;ACCAAAUAGUCACGCUUAA;CUGAAGUCAAGGUCGGUUA;CCUCAGAAGUUGCUCGAAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "69734432-e08f-4c38-876e-1b0e2c235b16", "aliases:array": "sherman-weissman:UBTF-siRNA-1;sherman-weissman:UBTF-siRNA-2;sherman-weissman:UBTF-siRNA-3;sherman-weissman:UBTF-siRNA-4", "modified_site_by_target_id": "UBTF-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-020670-00", "rnai_sequences:array": "CCAAUAAACGUAAGAGCAU;GAAGUUCCGUACAUUGACA;GGACCGUGCAGCAUAUAAA;UAACCAAGAUUCUGUCCAA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "b1ddf7d2-ba9d-4a49-8de6-b0486937dde8", "aliases:array": "sherman-weissman:UTY-siRNA-1;sherman-weissman:UTY-siRNA-2;sherman-weissman:UTY-siRNA-3;sherman-weissman:UTY-siRNA-4", "modified_site_by_target_id": "UTY-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-017344-01", "rnai_sequences:array": "GUAUUAAGAAGGCGAAUGA;GCUAGGCAGUAAUUGUAUA;GCUAGAAGCAAACGUUGUA;CCAUGGAGAUUCACCAAAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "0532291b-e49f-4458-aed3-a636bf84a8e2", "aliases:array": "sherman-weissman:VEZF1-siRNA-1;sherman-weissman:VEZF1-siRNA-2;sherman-weissman:VEZF1-siRNA-3;sherman-weissman:VEZF1-siRNA-4", "modified_site_by_target_id": "VEZF1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-019623-00", "rnai_sequences:array": "GGAAGGACCGGAUGACUUA;CACUUAAGCUGUCAUGUAA;GCAAGUAGAAACACUGAGA;GGCAAGGUAUCAUGUAACA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "e703e724-d166-467f-962e-eb7c6db0e97b", "aliases:array": "sherman-weissman:WRNIP1-siRNA-1;sherman-weissman:WRNIP1-siRNA-2;sherman-weissman:WRNIP1-siRNA-3;sherman-weissman:WRNIP1-siRNA-4", "modified_site_by_target_id": "WRNIP1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-010072-01", "rnai_sequences:array": "AGACAAAUGAUGUGCGAGA;AGGCGCAGUUCUUUCGAAU;GCGCCUACAACAACGUCAA;GAGCCGCUGUCGAGUGAUU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "6a9a1f74-4a6b-42bc-81e6-e03ed6452dd8", "aliases:array": "sherman-weissman:ZBTB24-siRNA-1;sherman-weissman:ZBTB24-siRNA-2;sherman-weissman:ZBTB24-siRNA-3;sherman-weissman:ZBTB24-siRNA-4", "modified_site_by_target_id": "ZBTB24-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-006915-02", "rnai_sequences:array": "ACUAUGAUCCCAAGACCGA;GCAGCUUGUUGUACACUCA;CGUCAAACUUAAAGAUUAC;CAGGCAAGCCAGAGUCGAU", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "f0e0a3cb-aaca-4de5-a5a6-ba43ac9aa6f3", "aliases:array": "sherman-weissman:ZBTB33-siRNA-1;sherman-weissman:ZBTB33-siRNA-2;sherman-weissman:ZBTB33-siRNA-3;sherman-weissman:ZBTB33-siRNA-4", "modified_site_by_target_id": "ZBTB33-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-019982-00", "rnai_sequences:array": "GUACAGCGCAGGAUGGUAA;GAUGGAAGGGUCUAUUAUA;UAAAUCAGGGCAGUUAUUA;UAAAGUCAGUUCAUAGUCA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "28a5e237-d0dd-4a2a-8d76-b38f0ae589d5", "aliases:array": "sherman-weissman:ZKSCAN1-siRNA-1;sherman-weissman:ZKSCAN1-siRNA-2;sherman-weissman:ZKSCAN1-siRNA-3;sherman-weissman:ZKSCAN1-siRNA-4", "modified_site_by_target_id": "ZKSCAN1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-025422-01", "rnai_sequences:array": "GGUAAAUGCUUCACGAGAA;AGGCUAAUCUUACGGAUAA;GAGAAUUAUGGGAGCGCAU;GAAGGAUGGUAUCGUAAUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "14364215-256c-4e98-a698-26283de30d5d", "aliases:array": "sherman-weissman:ZMIZ1-siRNA-1;sherman-weissman:ZMIZ1-siRNA-2;sherman-weissman:ZMIZ1-siRNA-3;sherman-weissman:ZMIZ1-siRNA-4", "modified_site_by_target_id": "ZMIZ1-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-007034-00", "rnai_sequences:array": "GCACAGUGAUGGGUCGUUC;GGAGGGACAUCCAUGAAUG;UUACAAGCCAGAACAGUUU;CCAGUCAGGGCCUCCAUUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "4ec30d2a-b1ce-4370-a972-16ce389efbab", "aliases:array": "sherman-weissman:ZNF143-siRNA-1;sherman-weissman:ZNF143-siRNA-2;sherman-weissman:ZNF143-siRNA-3;sherman-weissman:ZNF143-siRNA-4", "modified_site_by_target_id": "ZNF143-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-013965-00", "rnai_sequences:array": "GCAUAGCCAUCACUUAGUA;CAACAUGUACCCAUACCUA;CUACAAGAGUAACUGCUAA;GGCAGAUGGUGACAACUUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "84d3d4c7-056c-4f80-8fc6-bfd2acb4136f", "aliases:array": "sherman-weissman:ZNF180-siRNA-1;sherman-weissman:ZNF180-siRNA-2;sherman-weissman:ZNF180-siRNA-3;sherman-weissman:ZNF180-siRNA-4", "modified_site_by_target_id": "ZNF180-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-006589-02", "rnai_sequences:array": "GGUCUGAAUUCCAGUCUAU;CUAAUGGAGUGAAGAUAGA;AGUGAAACCUCUCAUAGUU;AGGCAGAGCUAUAAACUUA", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "9e89a28d-6f4f-42f0-b6fc-8029a20adcc7", "aliases:array": "sherman-weissman:ZNF207-siRNA-1;sherman-weissman:ZNF207-siRNA-2;sherman-weissman:ZNF207-siRNA-3;sherman-weissman:ZNF207-siRNA-4", "modified_site_by_target_id": "ZNF207-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-019557-00", "rnai_sequences:array": "AGGCAUACCUCCAUUAAUG;GGGCACAGUUACCUAAGUA;CAACUAGUGCAACCAGUAA;GAUGAAAGACGACGACUUC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "in progress", "submitted_by": "/users/d48be354-153c-4ca8-acaa-bf067c1fd836/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "9c968570-f9a7-4270-8343-63f386c10f14", "aliases:array": "sherman-weissman:ZNF384-siRNA-1;sherman-weissman:ZNF384-siRNA-2;sherman-weissman:ZNF384-siRNA-3;sherman-weissman:ZNF384-siRNA-4", "modified_site_by_target_id": "ZNF384-human", "reagent_availability:object:array": "source:dharmacon, identifier:L-017515-00", "rnai_sequences:array": "GAUGAAGGAUCAGCUGUUG;CGAGAUGAAUGACCCUUAU;CAUUUCGGCUCCCAUGAUU;CCAAGAAGGUAGCAUCGAC", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "lab": "sherman-weissman", "award": "U54HG006996"}, - {"uuid": "2c051fd0-8b23-4f8d-8e14-208808f8d5cf", "modified_site_by_target_id": "CTCF-human", "reagent_availability:object:array": "source:gregory-crawford, identifier:please-contact-lab", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/e74547f3-1676-43de-bcfc-9b946f0024c9/", "lab": "gregory-crawford", "award": "U54HG004563"}, - {"uuid": "99c3466d-0637-4546-97f3-94e034815bb3", "modified_site_by_target_id": "Control-human", "reagent_availability:object:array": "source:gregory-crawford, identifier:please-contact-lab", "category": "interference", "purpose": "repression", "method": "RNAi", "status": "released", "submitted_by": "/users/e74547f3-1676-43de-bcfc-9b946f0024c9/", "lab": "gregory-crawford", "award": "U54HG004563"} - ], - "construct_migration": [ - {"uuid": "85493b69-87f8-48b2-9c8f-f5aa11806989", "aliases:array": "kevin-white:AV007_eGFP-Sox102F", "modified_site_by_target_id": "eGFP-Sox102F-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-13J01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GTTTTTCTTCCGATGAAGTGGAACTTGCATCTCAGCGCGAGCTAGACGAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c34eaf48-af3e-4743-aea0-38ae6749b2ff", "aliases:array": "kevin-white:AV007_eGFP-repo", "modified_site_by_target_id": "eGFP-repo-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-186E13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCAGCAGCAGCAGCAGGGACAGAGCTACGTCCTGCCGCCTTTTTTGCAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "545e8564-af11-4534-9322-89a3d752a47f", "aliases:array": "kevin-white:modENCODE_YFP-eve", "modified_site_by_target_id": "YFP-eve-dmelanogaster", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: YFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "This construct contains an YFP tag at the C-terminal of eve", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U01HG004264"}, - {"uuid": "c97ca27f-5f6e-444d-9276-71ac3bf2609f", "aliases:array": "robert-waterston:OP201-GFP", "modified_site_by_target_id": "eGFP-pqm-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620bF09, url:https://www.sourcebioscience.com/search?search=WRM0620bF09", "description": "wgIs201 [pqm-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:02-21-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b07bed8d-d470-4a1c-a39f-025e3cc8a315", "aliases:array": "robert-waterston:OP474-GFP", "modified_site_by_target_id": "eGFP-ZK185.1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068dC03, url:https://www.sourcebioscience.com/search?search=WRM068dC03", "description": "wgIs474 [ZK185.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-28-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a07eed77-0638-4f69-b270-5df8ed61b916", "aliases:array": "kevin-white:AV007_eGFP-brk", "modified_site_by_target_id": "eGFP-brk-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-71L05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CACTGATTCTCGTGGCGGATACTGCGCCCACAAACCTGACCCTGGTGGCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7b729e00-b1f5-4c40-98e3-177fdc83b1a7", "aliases:array": "kevin-white:LAP_eGFP-CHES-1-like", "modified_site_by_target_id": "eGFP-CHES-1-like-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-85E05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CATTGCGAGGATTACGCACCAAGTTCAAGCGAAAGTCCGCCTGGATGCGG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1615d33b-c62d-42b6-966a-2f66a6337d70", "aliases:array": "kevin-white:LAP_eGFP-h", "modified_site_by_target_id": "eGFP-h-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-135D17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGTGATCAAGAAGCAGATCAAGGAGGAGGAGCAGCCCTGGCGGCCCTGG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6f91a7f6-f214-420a-89b3-43a0aecb29fa", "aliases:array": "kevin-white:AV001_eGFP-Hr51", "modified_site_by_target_id": "eGFP-Hr51-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-92H17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CTATTGGGAACACGCCCATGGAAAAGGTGCTCTGTGACATGTATAAGAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9670832b-fa05-41ba-b484-5d496c24dd87", "aliases:array": "kevin-white:AV007_eGFP-HmgD", "modified_site_by_target_id": "eGFP-HmgD-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-73H14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGAAGAGCAAGAAGGAGGAGTCCGACGAGGACGACGATGATGAGAGCGAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9623be73-3061-475a-8f50-9489b392c8b8", "modified_site_by_target_id": "eGFP-ADNP-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-141D11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AGCCCATGCATGGCAGCTTAGCCGGAGTTAAACTGAGCAGCCAACAGGCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "fc44dc06-c4b3-401b-8fdc-5903e20bcd4f", "modified_site_by_target_id": "eGFP-FOXO3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-238B11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: GGAACTTCACTGGTGCTAAGCAGGCCTCATCTCAGAGCTGGGTGCCAGGC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "64fd4089-6873-45da-a052-8d28aa468e7d", "modified_site_by_target_id": "eGFP-GATA1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-232B19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: GCCCCATGCCCCCCACCACCAGCACTACTGTGGTGGCTCCGCTCAGCTCA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "e4fa415d-3d43-43df-8c34-605b386ead4c", "modified_site_by_target_id": "eGFP-ILF3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-328C15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AAGGCGGCTATGGCAGAAACGCAGACCACAGCATGAACTACCAGTACAGA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "002ed79e-5d19-4dc3-84ce-b81609f52424", "modified_site_by_target_id": "eGFP-ORC4-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-212P19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ACTGTCCTACAGATGTGAGGCAGTGGGCAACATCCTCACTAAGCTGGTTA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "d4f706f8-8fa7-4e4a-a31f-f238bb22672f", "modified_site_by_target_id": "eGFP-SUZ12-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-279J20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AAACAGATAGTGTCTCAGGGGTTTCAAAACAGAGCAAAAAACAAAAACTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "cd334b05-0249-4c2b-af68-2b29f0320d5e", "modified_site_by_target_id": "eGFP-MECP2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-8F14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ACAGAGAGGAGCCTGTGGACAGCCGGACGCCCGTGACCGAGAGAGTTAGC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "6615aa0d-deae-491e-a36e-d376e8f2447e", "modified_site_by_target_id": "eGFP-ORC5-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-395I23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CAAGGGTCCTGTGGGCTGGCTGCACTGGCCTCTGCGGTGGTGCCTGCCAGA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "d85921df-7c2f-472e-b4e0-8da614876386", "modified_site_by_target_id": "eGFP-ID3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-275P01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AGCTCACTCCGGAACTTGTCATCTCCAACGACAAAAGGAGCTTTTGCCAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "65f0bb9f-3a09-4ff0-bd9f-ea4a9465417f", "aliases:array": "encode:Raf1-ER inducible", "modified_site_by_target_id": "RAF1-human", "introduced_tags:object:array": "location:other, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:carl-mann, identifier:please-contact-lab", "description": "An integrated construct for inducing senescence (pBabe-puro-GFP-ΔRAF1DD-ER; provided by Dr. Martin McMahon at UCSD)", "status": "released", "lab": "john-stamatoyannopoulos", "submitted_by": "/users/ec729133-c5f3-4c53-be5b-a5ea73a367dd/", "award": "U54HG004592"}, - {"uuid": "f8bee45c-fab9-4dcb-b97c-4a81b6edc11b", "modified_site_by_target_id": "eGFP-KLF13-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-151A19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ACAGCCGCTCCGACGCCAGCAGCCCCACCATCAGCCCGGCCAGCTCGCCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "7aef85f3-3399-43ee-b981-03cb368e36da", "modified_site_by_target_id": "eGFP-MCM3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-14F04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TGCAGGATGACAATCAGGTCATGGTGTCTGAGGGCATCATCTTCCTCATC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "a071568d-390d-4ef4-9bd2-b7dbd78e535f", "modified_site_by_target_id": "eGFP-MCM5-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-34N19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: GCGGCGAGATCCAGCATCGCATGCAGCGCAAGGTTCTCTACCGCCTCAAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "7f3491c0-8e41-49a7-8bbb-dc96103ae856", "modified_site_by_target_id": "eGFP-MCM8-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-220O08, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AGGGTTACCTCTTGAAAAAAGGCCCAAAAGTTTACCAGCTTCAAACTATG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "18102fdf-5185-4ef9-b208-2035e0009028", "modified_site_by_target_id": "eGFP-IRF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-142G03, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TGCTGACCCCAGTCCGGTTGCCCTCCATCCAGGCCATTCCCTGTGCACCG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "2d8b3b11-2639-4412-bf6e-2e5f587a875a", "modified_site_by_target_id": "eGFP-HDAC8-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-436L1, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TGGCTTTTATCCTCCTCAGGTACGAACCTCCTGCCCCAAATCCAGGCCTG", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "58b932e8-f8f0-4e86-a23e-23bef587c2e9", "modified_site_by_target_id": "eGFP-MCM6-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-214F01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ATGAAGAAGATCCCTACTTGGTAGTTAACCCTAACTACTTGCTCGAAGAT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "39680b8a-99e6-4b43-8eb3-3da276fb818c", "modified_site_by_target_id": "eGFP-ATF3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:invitrogen, identifier:CTD-2557F4, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ATGAGAGAAACCTCTTTATCCAACAGATAAAAGAAGGAACATTGCAGAGC", "documents:array": "/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "cdf61837-8409-48a2-8ed6-7ffe89404555", "modified_site_by_target_id": "eGFP-FOXO3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-238B11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of FOXO3. The last 50 bases before the stop codon of FOXO3 are as follows: GGAACTTCACTGGTGCTAAGCAGGCCTCATCTCAGAGCTGGGTGCCAGGC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "ff32047f-4f69-4761-8db6-02ac7b6f11f6", "modified_site_by_target_id": "eGFP-ETS2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-407C3, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ETS2. The last 50 bases before the stop codon of ETS2 are as follows: CGCCCGAGGAACTGCACGCCATCCTGGGCGTCCAGCCCGACACGGAGGAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "d52c94a3-868e-4f3c-9d1c-7e6d14b6a6f2", "modified_site_by_target_id": "eGFP-MAX-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-357F20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CTGAGCCTGAAGAGCCCCAAAGCAGGAAGAAGCTCCGGATGGAGGCCAGC", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "fd5c4774-17f5-4997-8a8e-a5f2a28a505b", "modified_site_by_target_id": "eGFP-MLLT1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-819E16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ACGAGACCACCGTGCGCAAACTGCAGAGCTGCCTGGAGGCCGTGGCCACA", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "849eeebc-33b2-4894-8d33-c23f15d52ba0", "modified_site_by_target_id": "eGFP-DR1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-273K16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CATCTAATCAGGCGGGATCTTCTCAGGATGAAGAAGATGATGATGATATC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "2098699c-560a-4a7e-bca7-932166c86c3d", "modified_site_by_target_id": "eGFP-E2F4-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-183L23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ACGAGAGTGAAGGTGTCTGTGACCTCTTTGATGTGCCTGTTCTCAACCTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "08dfb4a0-93a1-4917-817f-618c86d05f9e", "modified_site_by_target_id": "eGFP-ELF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-429P17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CTTCTCAGGTAGCTATGAAACAAAACGAACTGCTGGAACCCAACTCTTTT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "163e8067-d235-46eb-aeea-c2d08eb1dd40", "modified_site_by_target_id": "eGFP-HMGB1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-238E03, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AGGAGGAAGATGAAGAAGATGAAGATGAAGAAGAAGATGATGATGATGAA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "41e7a9ec-9757-4fda-8e5f-6719010f08b7", "modified_site_by_target_id": "eGFP-HSF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-213I11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CCCTGCTGACAGGCTCGGAGCCTCCCAAAGCCAAGGACCCCACTGTCTCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "be23fceb-442a-4cb6-a18a-512a5bff0d21", "modified_site_by_target_id": "eGFP-MYBL2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-172D23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TCCTGGGCCGCCTGAAGCCCAGCCACACATCTCGGACCCTCATCTTGTCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "459346b1-47cf-4604-a1bb-b97db0cfc619", "modified_site_by_target_id": "eGFP-ORC6-human", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-424K12, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TTTCGTTGACCCGCGGCGTTCACGGGAATTGTTCGCTTTAGTGCCGGCGCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/248a4510-055a-447a-9171-4eac079f0b14/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "e396abb0-ec25-4064-b3a0-c9595963d10a", "modified_site_by_target_id": "eGFP-REL-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-118C01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TGCAAAATGAGCAATTGAGTGACTCCTTTCCATATGAATTTTTTCAAGTA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "2c6391f5-2cda-44e2-a5fa-d751fffb0f35", "modified_site_by_target_id": "eGFP-COMMD3-BMI1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-232K21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ATAGACCTCGAAAATCATCAGTAAATGGGTCATCAGCAACTTCTTCTGGT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "be8583f0-b492-49b3-a794-2628cc5d8357", "modified_site_by_target_id": "eGFP-ESRRA-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-165G04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AGGTGCCCATGCACAAGCTGTTCTTGGAGATGCTCGAGGCCATGATGGAC", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "b2b246d6-2447-4190-96cf-41ae20b9730e", "modified_site_by_target_id": "eGFP-FOXK2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-17I04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TGAGCGTGGACACGCCACCGGCAGCCGTAAGGGAAAAGGGTGTCCAGAAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "cca3bea6-5ee5-4889-986f-15e0f1e9e778", "modified_site_by_target_id": "eGFP-ILF2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-315O06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CAGAAGAACCACCTCAAGGAGAGGAAGAAGAAAGCATGGAAACTCAGGAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "f3a73569-8894-4920-9bea-94bbeebf4cb2", "modified_site_by_target_id": "eGFP-ILK-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-438D16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: GACCCAAATTTGACATGATTGTGCCTATCCTTGAGAAGATGCAGGACAAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "d7c88a5a-93a6-477f-a633-76a6bccb3345", "modified_site_by_target_id": "eGFP-MCM7-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-423B01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AGCTCAATGTCTGGCAGGTCAATGCTTCCCGGACACGGATCACTTTTGTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "5ecdcd0e-01cd-4dbf-8ac6-21a15ecdfba1", "modified_site_by_target_id": "eGFP-HDAC10-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:invitrogen, identifier:CTD-2579L10, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TGCGCGCCTCTTCTCGGCTCCTCCTGTAGTGCCATCCTCACCTGGTGGCT", "documents:array": "/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "b7e98255-3d03-4c42-b16c-55bc6cf785bf", "modified_site_by_target_id": "eGFP-JUND-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:invitrogen, identifier:CTD-2100I3, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ACGTCAACAGCGGCTGCCAGCTGCTGCCCCAGCACCAGGTGCCCGCGTAC", "documents:array": "/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "ff0c40c2-065f-4cb2-b909-70f7fb1524b6", "modified_site_by_target_id": "eGFP-JUNB-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "ae0247e4-3b40-4257-a031-7f696c508e69", "modified_site_by_target_id": "eGFP-MCM9-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-46M01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CCACAGGAATTGGATCTACTAGTGCAGGTATTGTATGTGACAATTTCAAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "3ebd213e-cbcf-4e0d-9fdf-387f10feb9ae", "aliases:array": "kevin-white:AV007_eGFP-Kr-h2", "modified_site_by_target_id": "eGFP-Kr-h2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-181H12, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGTTCGTCAACCGCTTGGCGCCGCAGCTACAGCCGGCTGCAGCGCAAGAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0088e54e-1560-4fed-9749-0f885dc48a6d", "aliases:array": "kevin-white:AV007_eGFP-NC2beta", "modified_site_by_target_id": "eGFP-NC2%CE%B2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-145N14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of NC2%CE%B2, targeting these isoforms: NC2\\u03b2-RA. The 50bp preceding the tag are: TTGCCAGCAAGCCAAGTGAGGATGACGATGACGATGACGACGACGACTAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "84293b7b-e0dd-4dd5-bb57-ef199bd35d4c", "aliases:array": "kevin-white:AV007_eGFP-noc", "modified_site_by_target_id": "eGFP-noc-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-03P03, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACTACTCGCCATACGCCATGTACGGCCAGAGGATGGGAGCGGCTCATCAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5e8653d5-c23a-4a49-a32f-a532ae296aac", "aliases:array": "kevin-white:modENCODE_eGFP-tll", "modified_site_by_target_id": "eGFP-tll-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH322-83J21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct contains an eGFP tag at the C-terminal of tll.", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U01HG004264"}, - {"uuid": "4f74838c-4f81-42f7-825d-154e560b1dde", "aliases:array": "robert-waterston:OP494-GFP", "modified_site_by_target_id": "eGFP-ztf-16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0633cF04, url:https://www.sourcebioscience.com/search?search=WRM0633cF04", "description": "wgIs494 [ztf-16::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:06-18-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b71aa9b3-9cb2-4402-86f9-83eb60c7ceb6", "modified_site_by_target_id": "eGFP-usp-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH322-23L04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH322-23L04 has been chosen to target the gene ultraspiracle. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of Att sites. Recombinant individuals were screened based on mini-white presence.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "04cb1231-9e06-4edc-95cd-2062b15cf064", "aliases:array": "kevin-white:AV007_eGFP-CG13624", "modified_site_by_target_id": "eGFP-CG13624-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-23I09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCAATGTGAAAGCTGTGGAAATATCTTATAATCCTTCAATTTTCGTTTTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "12d720fd-9b54-4f20-8dfc-38f464c8e38f", "aliases:array": "kevin-white:AV007_eGFP-GATAd", "modified_site_by_target_id": "eGFP-GATAd-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-123L05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TATCCGCACCGCTTAACCTTGTTTCCAGTGAAAATAATGCAAAGTTAACA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "da85cb99-64b0-46a4-a71a-7b68ba974b1f", "aliases:array": "robert-waterston:OP390-GFP", "modified_site_by_target_id": "eGFP-med-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615bD03, url:https://www.sourcebioscience.com/search?search=WRM0615bD03", "description": "wgIs390 [med-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "be428c41-5171-4288-b3b9-357716ecf3bf", "aliases:array": "robert-waterston:OP456-GFP", "modified_site_by_target_id": "eGFP-ceh-54-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617cA04, url:https://www.sourcebioscience.com/search?search=WRM0617cA04", "description": "wgIs456 [T13C5.4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e3a350eb-b0e1-42c9-a3f9-a255eb67576a", "modified_site_by_target_id": "eGFP-ZNF446-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-39G21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF446. The last 50 bases before the stop codon of ZNF446 are as follows: GGAAGTCGCAGCTGGTCATCCACCGCAAGGGCCACCGGCCGGAGGTTCCA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "58341169-6009-437a-8178-213a1f36a5f9", "modified_site_by_target_id": "eGFP-TSC22D4-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-376D10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TSC22D4. The last 50 bases before the stop codon of TSC22D4 are as follows: CCTCGGGGGTCCCACGGCTTGGGCCCCCTGCGCCCAATGGGCCCTCCGTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "1aefe537-77a0-4ed5-84ca-fff6d27e4da8", "modified_site_by_target_id": "eGFP-HOXC6-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-368D12, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HOXC6. The last 50 bases before the stop codon of HOXC6 are as follows: GCGGAAAAGAGGAAAAGCGGGAAGAGACAGAAGAGGAGAAGCAGAAAGAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "81600014-87d9-4d29-a2ae-b396b6032635", "modified_site_by_target_id": "eGFP-PBX2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-274I23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of PBX2. The last 50 bases before the stop codon of PBX2 are as follows: TGACATCCCCAACGGAGGGACCAGGGAGTGTTCACTCTGATACCTCCAAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "8a53a5ef-2fc6-452b-b1f9-f8dfc9546651", "modified_site_by_target_id": "eGFP-ZBTB2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-145L5, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZBTB2. The last 50 bases before the stop codon of ZBTB2 are as follows: ACCCAGTGTTAGCTTCCATCAAAAAGGAACAAGAAACCGTCTTACTAGAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "b5c8ffbf-5234-4658-af17-6cb23d686a7e", "modified_site_by_target_id": "eGFP-MCM7-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-423B1, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MCM7. The last 50 bases before the stop codon of MCM7 are as follows: AGCTCAATGTCTGGCAGGTCAATGCTTCCCGGACACGGATCACTTTTGTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "b03186b0-c3ae-45ba-9603-7ba9e61a72a6", "modified_site_by_target_id": "eGFP-ID3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-275P1, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ID3. The last 50 bases before the stop codon of ID3 are as follows: AGCTCACTCCGGAACTTGTCATCTCCAACGACAAAAGGAGCTTTTGCCAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "854b362f-5d74-46ed-a3e5-0bdc839c277e", "modified_site_by_target_id": "eGFP-JUN-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-20N11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of JUN. The last 50 bases before the stop codon of JUN are as follows: ACGTTAACAGTGGGTGCCAACTCATGCTAACGCAGCAGTTGCAAACATTT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "e0cad012-6ac5-40bf-ac54-866a188e25d5", "modified_site_by_target_id": "eGFP-MCM9-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-46M1, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MCM9. The last 50 bases before the stop codon of MCM9 are as follows: CCACAGGAATTGGATCTACTAGTGCAGGTATTGTATGTGACAATTTCAAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "eb067e41-a135-45ed-b775-3a3cd2c2d9e3", "modified_site_by_target_id": "eGFP-STAT3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-222P10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of STAT3. The last 50 bases before the stop codon of STAT3 are as follows: CCCTCACCTTTGACATGGAGTTGACCTCGGAGTGCGCTACCTCCCCCATG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "5bfee6f4-80bb-4f95-a2cc-d530ad5db9f8", "modified_site_by_target_id": "eGFP-MCM6-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-214F1, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MCM6. The last 50 bases before the stop codon of MCM6 are as follows: ATGAAGAAGATCCCTACTTGGTAGTTAACCCTAACTACTTGCTCGAAGAT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "dc43d5e1-2da3-40fe-8021-7b8825a790cc", "modified_site_by_target_id": "eGFP-ILF2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-315O6, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ILF2. The last 50 bases before the stop codon of ILF2 are as follows: CAGAAGAACCACCTCAAGGAGAGGAAGAAGAAAGCATGGAAACTCAGGAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "1ebaa8ef-389b-4efa-8761-f7a093fddd8a", "modified_site_by_target_id": "eGFP-CEBPB-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-323M5, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of CEBPB. The last 50 bases before the stop codon of CEBPB are as follows: ACTTGTTCAAGCAGCTGCCCGAGCCCCTGCTCGCCTCCTCCGGCCACTGC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "702bcb4f-696d-4166-8ca2-b76084c8198f", "modified_site_by_target_id": "eGFP-AES-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-325B16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of AES. The last 50 bases before the stop codon of AES are as follows: ACGGGCACGATGGTGACACCCACCAGGAGGATGATGGCGAGAAGTCGGAT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "07679443-edb3-4675-9f7d-da24096a41ad", "modified_site_by_target_id": "eGFP-HDGF-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-338P10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HDGF . The last 50 bases before the stop codon of HDGF are as follows: CAAGGCCACACCATTAACCCTTCTCCCCTCCAACCCTCCCTCACAGCCTG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "fdec85bc-a098-4e9a-9504-076c24a5ede6", "modified_site_by_target_id": "eGFP-ZFPL1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-1023N24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZFPL1. The last 50 bases before the stop codon of ZFPL1 are as follows: ATCCCAACCTGGACCCACTCATGAACCCTCACATCCGCGTGGGCCCCTCC", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "99d9d9cb-9785-46df-a89e-4afc20eb39ba", "modified_site_by_target_id": "eGFP-DEK-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-478E3, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of DEK. The last 50 bases before the stop codon of DEK are as follows: TTTATGATTTATGGCAAAATAATGTTTCTCTTTCATTACAGCTAATTTCT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "6964d75a-dacc-4d91-a278-77d7605626e9", "modified_site_by_target_id": "eGFP-HNRNPUL1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-66M1, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HNRNPUL1. The last 50 bases before the stop codon of HNRNPUL1 are as follows: ACGACTACGGGAGCTACTCCGGGAACACACAGGGTGGCACAAGTACACAG", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "2f132381-cb9f-451c-bf32-330563e79f62", "modified_site_by_target_id": "eGFP-SERTAD1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-384E6, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of SERTAD1. The last 50 bases before the stop codon of SERTAD1 are as follows: ATGTGCTGGTGGGCACACAGGCACTGGAGCGACCGCCGGGGCCAGGGCGC", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "0377adea-08a0-4e11-ba1a-d6ebdf222bef", "modified_site_by_target_id": "eGFP-DDX5-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-7P13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of DDX5. The last 50 bases before the stop codon of DDX5 are as follows: CTGCAGCTGCACCTATGATTGGTTATCCAATGCCAACAGGATATTCCCAA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "8b23be8b-f300-4d88-888f-f56cf5781741", "modified_site_by_target_id": "eGFP-GATA2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:invitrogen, identifier:CTD-3241A20, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: GCCTCTCCTTCGGCCACCCCCACCCGTCCAGCATGGTGACCGCCATGGGC", "documents:array": "/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "9dcc9489-bca5-4e52-899b-71dd3cee4690", "modified_site_by_target_id": "E2F1-human", "introduced_tags:object:array": "location:N-terminal, name: HA;location:N-terminal, name:ER", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:peggy-farnham, identifier:please-contact-lab", "description": "MCF7 cells (ATCC # HTB­22) stably transfected with a plasmid containing human E2F1 fused at the N-­terminus to an HA tag and the estrogen receptor ligand binding domain.", "status": "released", "lab": "peggy-farnham", "submitted_by": "/users/2eb068c5-b7a6-48ec-aca2-c439e4dabb08/", "award": "U54HG004558"}, - {"uuid": "0c9f7254-989a-49ba-8eb9-dcdf89b1330a", "modified_site_by_target_id": "eGFP-ATF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-60E8, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TAATAGAAGAGTTAAAAACTTTGAAGGATCTTTATTCCAATAAAAGTGTT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "12107c74-44cc-444b-ac3f-e93cbdad7ba9", "modified_site_by_target_id": "eGFP-RELA-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-449E05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CCTCCATTGCGGACATGGACTTCTCAGCCCTGCTGAGTCAGATCAGCTCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "dab668e7-329e-4dc7-bcdb-e0414050185a", "modified_site_by_target_id": "eGFP-KLF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-296G22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: GTGCTTTTTCGCGCTCTGACCACCTGGCCTTGCACATGAAGCGCCACCTT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "16710924-1ed8-4b55-82de-e22858ac9afe", "modified_site_by_target_id": "eGFP-KLF16-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-202K15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CCGGGAGCCCTGCGCCCAGCCCCGCGCCCAGCCCAGCCCCCGCAGGCCTG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "ab660160-4c16-47e9-a233-eace487fc315", "modified_site_by_target_id": "eGFP-FOXA2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-463H05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ATACCTCCTACTACCAGGGGGTGTACTCCCGGCCCATTATGAACTCCTCT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "63eb4068-a11a-4641-85aa-a977cf8f57d1", "aliases:array": "encode:lenti-MyoD", "modified_site_by_target_id": "MYOD1-human", "introduced_tags:object:array": "location:N-terminal, name: 3xFLAG;location:other, name:T2A;location:C-terminal, name:DsRed", "category": "insertion", "purpose": "tagging", "method": "transduction", "reagents:object:array": "source:gregory-crawford, identifier:please-contact-lab", "description": "An induceable lentivirus (pAK111-TRE-3xflag hMyoD-T2A-dsRed) containing tet-inducible MyoD.", "documents:array": "/documents/41834812-d94c-4343-b2b4-0f31aeaaa305/", "status": "released", "lab": "john-stamatoyannopoulos", "submitted_by": "/users/e74547f3-1676-43de-bcfc-9b946f0024c9/", "award": "U54HG004563"}, - {"uuid": "7313f3ff-f470-4242-93ae-fe1f9b9caae2", "modified_site_by_target_id": "eGFP-NFYB-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-45D10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NFYB. The last 50 bases before the stop codon of NFYB are as follows: TTTAAATTTTCTAATCTTAGATTTCTGGTGTTCAGCAAATTCAGTTTTCA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "f8eabd61-6171-4a4d-9dd9-c97d5b4b243f", "modified_site_by_target_id": "eGFP-NR1D1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-829A4, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NR1D1. The last 50 bases before the stop codon of NR1D1 are as follows: TGAACAACATGCATTCCGAGAAGCTGCTGTCCTTCCGGGTGGACGCCCAG", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "e25aa5e2-f173-499e-aca4-a6708ab34e6a", "modified_site_by_target_id": "eGFP-SMAD2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-5E15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AAGTATTAACTCAGATGGGATCCCCTTCAGTGCGTTGCTCAAGCATGTCA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "03fc0ef1-103b-4bb4-ac1c-91d858c11350", "modified_site_by_target_id": "eGFP-NR2F2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-46C2, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ATATGTTACTGTCCGGCAGCAGTTTTAACTGGCCGTATATGGCAATTCAA", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "fc9afde7-6a87-4a51-83f6-fa9684de969e", "modified_site_by_target_id": "eGFP-CREB1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-3252I12, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TGATTGAGGAGCTAAAAGCACTTAAGGACCTTTACTGCCACAAATCAGAT", "documents:array": "/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "7c69f81b-132d-4618-b3ed-ad66e1542bb9", "modified_site_by_target_id": "eGFP-NFYB-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-45D10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TTTAAATTTTCTAATCTTAGATTTCTGGTGTTCAGCAAATTCAGTTTTCA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "90eb6dfc-c9ef-4eb5-9efc-70914a3bd27a", "modified_site_by_target_id": "eGFP-HMGB2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-347G11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AGGAGGAAGAAGAAGATGAAGATGAGGAGGAAGAGGATGAAGATGAAGAA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "e1860b33-ea80-45c1-bc6c-2c5283622e69", "modified_site_by_target_id": "eGFP-SMAD3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-187G10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AGGTCCTCACCCAGATGGGCTCCCCAAGCATCCGCTGTTCCAGTGTGTCT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "81f6a8be-4852-4471-8ca7-c64ce842f837", "modified_site_by_target_id": "eGFP-MCM2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-343I20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TGAACAAGTTCAGCCACGACCTGAAAAGGAAAATGATCCTGCAGCAGTTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "b42f4fe3-967e-4ff7-96d0-ced6ca0f9ca3", "modified_site_by_target_id": "eGFP-NR4A1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:invitrogen, identifier:CTD-3122J9, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TGCCCCCTCCACCCATCATTGACAAGATCTTCATGGACACGCTGCCCTTC", "documents:array": "/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "8eb15214-a897-4977-8e7b-e940e3a8a793", "modified_site_by_target_id": "eGFP-SMARCA1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-265M11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of SMARCA1. The last 50 bases before the stop codon of SMARCA1 are as follows: AGAAGAAACGGGCAACTAAAACTCCAATGGTAAAATTTTCAGCATTTTCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "a082ce8f-0103-4498-a79f-ea705fd7145b", "modified_site_by_target_id": "eGFP-FOXK2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-17I4, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of FOXK2. The last 50 bases before the stop codon of FOXK2 are as follows: TGAGCGTGGACACGCCACCGGCAGCCGTAAGGGAAAAGGGTGTCCAGAAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "7b92ed48-e0da-4aa7-af46-d20c14525b17", "aliases:array": "robert-waterston:OP453-GFP", "modified_site_by_target_id": "eGFP-nhr-149-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061cF09, url:https://www.sourcebioscience.com/search?search=WRM061cF09", "description": "wgIs453 [nhr-149::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7e5d33d7-eda7-48df-b6a1-b893910ae990", "aliases:array": "robert-waterston:OP190-GFP", "modified_site_by_target_id": "eGFP-pax-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620dB02, url:https://www.sourcebioscience.com/search?search=WRM0620dB02", "description": "wgIs190 [pax-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "90bc81ff-387e-4122-a309-b68853da87fb", "aliases:array": "robert-waterston:OP423-GFP", "modified_site_by_target_id": "eGFP-nhr-120-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623bC08, url:https://www.sourcebioscience.com/search?search=WRM0623bC08", "description": "wgIs423 [nhr-120::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-01-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3b6348eb-dc72-4405-be98-72af122104b9", "aliases:array": "robert-waterston:OP454-GFP", "modified_site_by_target_id": "eGFP-nhr-178-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0625dE08, url:https://www.sourcebioscience.com/search?search=WRM0625dE08", "description": "wgIs454 [nhr-178::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ea0ec640-c360-4da4-bd0d-c097af78c9db", "aliases:array": "robert-waterston:OP162-GFP", "modified_site_by_target_id": "eGFP-unc-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065aH04, url:https://www.sourcebioscience.com/search?search=WRM065aH04", "description": "wgIs162 [unc-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6581152e-655a-4caf-8701-865d9983fb9d", "aliases:array": "robert-waterston:OP342-GFP", "modified_site_by_target_id": "eGFP-skn-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aG02, url:https://www.sourcebioscience.com/search?search=WRM0641aG02", "description": "wgIs342 [skn-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of skn-1 coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:E Preston-D Vafeados RECEIVED:08-23-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e00e5d6e-d0d6-4337-bce7-234f8be40045", "aliases:array": "robert-waterston:OP375-GFP", "modified_site_by_target_id": "eGFP-cey-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0629bA11, url:https://www.sourcebioscience.com/search?search=WRM0629bA11", "description": "wgIs375 [cey-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:05-09-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2fddf61e-8db5-4b51-9be1-5672d46ca01f", "aliases:array": "robert-waterston:OP184-GFP", "modified_site_by_target_id": "eGFP-lin-15B-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0616dB02, url:https://www.sourcebioscience.com/search?search=WRM0616dB02", "description": "wgIs184 [lin-15B::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Niu W, et al. Genome Res. 2011 Feb;21(2):245-54. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:01-18-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "aacf4e0c-dc08-495b-b31a-283f06138ba8", "aliases:array": "robert-waterston:OP106-GFP", "modified_site_by_target_id": "eGFP-mdl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618dG08, url:https://www.sourcebioscience.com/search?search=WRM0618dG08", "description": "wgIs106 [mdl-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of mdl-1 coding sequence of fosmid ID#WRM0618dG08 by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-22-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "720618d3-781e-4c30-a95f-8c59cd6334ec", "aliases:array": "robert-waterston:OP458-GFP", "modified_site_by_target_id": "eGFP-nhr-167-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063aG06, url:https://www.sourcebioscience.com/search?search=WRM063aG06", "description": "wgIs458 [nhr-167::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-14-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5507037a-2ccb-425d-b5e6-a463cc284369", "modified_site_by_target_id": "eGFP-TAF7-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-834J21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TAF7. The last 50 bases before the stop codon of TAF7 are as follows: AGGAGCAACTCAGCTCTTTGCAAGAGGAGCTAGAATCACTCCTAGAGAAG", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "febb5762-020b-4e28-b32b-ca9fad2d5820", "modified_site_by_target_id": "eGFP-E2F4-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-183L23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of E2F4. The last 50 bases before the stop codon of E2F4 are as follows: ACGAGAGTGAAGGTGTCTGTGACCTCTTTGATGTGCCTGTTCTCAACCTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "68e79d4b-3d8b-477e-8dbd-a793db69a199", "modified_site_by_target_id": "eGFP-FOSL1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-332A20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of FOSL1. The last 50 bases before the stop codon of FOSL1 are as follows: GCGGAGACCCATCCTCTGACCCCCTTGGCTCTCCAACCCTCCTCGCTTTG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "bcfe91b4-09d4-4cf4-adf5-dd43229a8ec7", "modified_site_by_target_id": "eGFP-CREB1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-3252I12, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of CREB1. The last 50 bases before the stop codon of CREB1 are as follows: TGATTGAGGAGCTAAAAGCACTTAAGGACCTTTACTGCCACAAATCAGAT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "4196edc8-4bac-4124-8dbf-fc8f62ae9588", "modified_site_by_target_id": "eGFP-HSF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-213I11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HSF1. The last 50 bases before the stop codon of HSF1 are as follows: CCCTGCTGACAGGCTCGGAGCCTCCCAAAGCCAAGGACCCCACTGTCTCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "c13f843b-29b0-4408-8bd3-5ed429061901", "modified_site_by_target_id": "eGFP-SMAD2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-5E15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of SMAD2. The last 50 bases before the stop codon of SMAD2 are as follows: AAGTATTAACTCAGATGGGATCCCCTTCAGTGCGTTGCTCAAGCATGTCA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "bbe093fa-c04c-492f-ac61-12f36c8728b1", "aliases:array": "kevin-white:NFE2L1", "modified_site_by_target_id": "eGFP-NFE2L1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-423H11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the Human RP11 BAC library, derived from male whole blood, and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NFE2L1. The last 50 bases before the stop codon of NFE2L1 are as follows: CCGACCAGCAGGCCCGGCGGCAGGAGAGGAAGCCAAAGGACCGGAGAAAG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "94927224-c27c-4457-8981-4273c09c83f8", "modified_site_by_target_id": "eGFP-PRPF4B-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-7G22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of PRPF4B. The last 50 bases before the stop codon of PRPF4B are as follows: GAATTAGCATCAACCAGGCCCTACAGCACGCCTTCATCCAGGAAAAAATT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "bc6a435b-88a0-4767-9d2f-a446546521d1", "modified_site_by_target_id": "eGFP-PTRF-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-46I15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of PTRF. The last 50 bases before the stop codon of PTRF are as follows: AGATCACCGAGGAGTCGGACGCCGTGCTGGTGGACAAGAGCGACAGCGAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "3f1fc0f1-f81a-48f8-b4bf-9642ef05766c", "modified_site_by_target_id": "eGFP-YBX3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-110G18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of CSDA. The last 50 bases before the stop codon of CSDA are as follows: AAGCACCAACTGAGAACCCTGCTCCACCCACCCAGCAGAGCAGTGCTGAG", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "17411d92-3263-4af3-9b23-c5ef5898b27f", "modified_site_by_target_id": "eGFP-ETV1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-458L9, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ETV1. The last 50 bases before the stop codon of ETV1 are as follows: CGGAAGGGGGCTGCTGCAACCCCCACCCCTACAACGAAGGCTACGTGTAT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "11172cd1-9587-4e02-8f6d-81d3953d41ec", "modified_site_by_target_id": "eGFP-PTTG1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-284A14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of PTTG1. The last 50 bases before the stop codon of PTTG1 are as follows: TGTCGACCCTGGATGTTGAATTGCCACCTGTTTGCTGTGACATAGATATT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "f7855436-902c-4b97-a39d-70b1b51f5320", "modified_site_by_target_id": "eGFP-PHF10-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-373P17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of PHF10. The last 50 bases before the stop codon of PHF10 are as follows: CCCCAACACCCAGGAAAGTGGGCAGAAGGGGGAAAAACAGCAAAGAGGGA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "de534c88-84e6-435a-a3d0-a1d0d5e794a3", "modified_site_by_target_id": "eGFP-KHSRP-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-828J24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of KHSRP. The last 50 bases before the stop codon of KHSRP are as follows: TCCCTCCCCGTAGTGACCAATTCCTATCTCTTCCCTCTCCGCAGGCTCAA", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "b071de77-5fad-4e20-98e2-30d9488d690f", "modified_site_by_target_id": "eGFP-TFAM-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-1152J22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TFAM. The last 50 bases before the stop codon of TFAM are as follows: TTCTACGTCGCACAATAAAGAAACAACGAAAATATGGTGCTGAGGAGTGT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "7f8bcba7-3780-4784-9fdd-13014b850863", "modified_site_by_target_id": "eGFP-KMT2A-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTC-803L4, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MLL. The last 50 bases before the stop codon of MLL are as follows: ACAAGCTGCCCTGCAACTGTGGCGCCAAGAAATGCCGGAAGTTCCTAAAC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "c84bf48a-7a6f-4120-98ee-d09027cb8b48", "modified_site_by_target_id": "eGFP-MLLT1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-819E16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MLLT1. The last 50 bases before the stop codon of MLLT1 are as follows: ACGAGACCACCGTGCGCAAACTGCAGAGCTGCCTGGAGGCCGTGGCCACA", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "9d421b5a-f030-49d5-8927-8bd0b73369c4", "modified_site_by_target_id": "eGFP-ESRRA-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-165G4, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ESRRA. The last 50 bases before the stop codon of ESRRA are as follows: AGGTGCCCATGCACAAGCTGTTCTTGGAGATGCTCGAGGCCATGATGGAC", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "5dd803f2-5cda-43d5-b790-791fa11d9fb0", "modified_site_by_target_id": "eGFP-GATA2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-3241A20, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of GATA2. The last 50 bases before the stop codon of GATA2 are as follows: GCCTCTCCTTCGGCCACCCCCACCCGTCCAGCATGGTGACCGCCATGGGC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "5e88516f-f05e-4da3-a90c-5906968c4f57", "modified_site_by_target_id": "eGFP-FOS-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:invitrogen, identifier:CTD-2655F5, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of FOS. The last 50 bases before the stop codon of FOS are as follows: GCAATGAGCCTTCCTCTGACTCGCTCAGCTCACCCACGCTGCTGGCCCTG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "d1720bfc-50c7-4eca-a0b0-b9fac7548195", "modified_site_by_target_id": "eGFP-MEF2D-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-397O7, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MEF2D. The last 50 bases before the stop codon of MEF2D are as follows: CCACCCCCTCACACCCCCTTCTCCATCTCCTCTCTTCACAGACATTAAAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "b6823606-80cb-45d0-ba92-f4d00d0b5ab8", "modified_site_by_target_id": "eGFP-ADNP-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-141D11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ADNP. The last 50 bases before the stop codon of ADNP are as follows: AGCCCATGCATGGCAGCTTAGCCGGAGTTAAACTGAGCAGCCAACAGGCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "acc9ecf1-53fc-4922-8799-a47d2ed7deb4", "modified_site_by_target_id": "eGFP-KLF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-296G22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of KLF1. The last 50 bases before the stop codon of KLF1 are as follows: GTGCTTTTTCGCGCTCTGACCACCTGGCCTTGCACATGAAGCGCCACCTT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "9b92c607-e908-4dfb-b156-af1f77c5ba85", "modified_site_by_target_id": "eGFP-NR3C1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-722H2, url:https://bacpacresources.org/cloneInfoSearch.php", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "a54ab14a-fee5-400e-bce2-88492d9f7462", "aliases:array": "kevin-white:TOE1", "modified_site_by_target_id": "eGFP-TOE1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-316A8, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TOE1. The last 50 bases before the stop codon of TOE1 are as follows: GTTCCTCCAAAGCCCACAATCAGAAGATGAAGCTCACTTGGGGCAGTAGC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "d01a5225-d860-4d1f-a958-a5a7a9469c1a", "aliases:array": "kevin-white:CEBPG", "modified_site_by_target_id": "eGFP-CEBPG-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-75F8, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of CEBPG. The last 50 bases before the stop codon of CEBPG are as follows: AGTCCATTAGCACTGAAAATACGACAGCAGATGGCGACAATGCAGGACAG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "444c7f44-2526-4bde-8c20-26f250df38ee", "modified_site_by_target_id": "eGFP-ATF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-60E8, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ATF1. The last 50 bases before the stop codon of ATF1 are as follows: TAATAGAAGAGTTAAAAACTTTGAAGGATCTTTATTCCAATAAAAGTGTT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "9dff9257-6353-4c8f-839e-f31c025e489c", "aliases:array": "michael-snyder:eGFP_ZNF791_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF791-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:53014, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=53014", "description": "This construct contains an eGFP N-terminal tag to ZNF791 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "82e032e5-8df3-49bd-9d78-9a94b2f7bb98", "aliases:array": "michael-snyder:eGFP_ZFP69B_FRT_construct", "modified_site_by_target_id": "eGFP-ZFP69B-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:7225, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=7225", "description": "This construct contains an eGFP N-terminal tag to ZFP69B under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "f797e881-4ce5-42f1-9c50-560d1ef8f525", "aliases:array": "michael-snyder:eGFP_ZNF777_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF777-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:70907, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=70907", "description": "This construct contains an eGFP N-terminal tag to ZNF777 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "22043e65-1e77-48a7-b50a-ae0eda8673d2", "modified_site_by_target_id": "eGFP-NCOR1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-375L2, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NCOR1. The last 50 bases before the stop codon of NCOR1 are as follows: CTGCCCCACTGCTCTCAGCACAGTACGAGACCCTGTCGGATAGTGATGAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "98079e4a-0e22-4da3-89fa-490475a4c3f7", "modified_site_by_target_id": "eGFP-IRF9-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-156P5, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of IRF9. The last 50 bases before the stop codon of IRF9 are as follows: ACTTGCTGGAGCAGACTCCAGAGCAGCAGGCAGCCATTCTGTCCCTGGTG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "5da5adf9-dec4-4998-ac84-7764fedbd4f4", "modified_site_by_target_id": "eGFP-HDAC11-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-624L22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HDAC11. The last 50 bases before the stop codon of HDAC11 are as follows: GCGTCTCCGCACAGAACTCAGACACACCGCTGCTTCCCCCTGCAGTGCCC", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "6fd340c6-13db-4d4f-b55c-bfc71fa5ae85", "modified_site_by_target_id": "eGFP-SMARCA5-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-956G16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of SMARCA5. The last 50 bases before the stop codon of SMARCA5 are as follows: AAATGGATGGCGCACCTGATGGTCGAGGAAGAAAAAAGAAGCTGAAACTA", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "4472d375-6ae3-4fa0-a6d0-3635c832063d", "modified_site_by_target_id": "eGFP-MCM5-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-34N19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MCM5. The last 50 bases before the stop codon of MCM5 are as follows: GCGGCGAGATCCAGCATCGCATGCAGCGCAAGGTTCTCTACCGCCTCAAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "2708bf6c-37dc-4372-bc67-32b60b4289d2", "modified_site_by_target_id": "eGFP-RELA-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-449E5, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of RELA. The last 50 bases before the stop codon of RELA are as follows: CCTCCATTGCGGACATGGACTTCTCAGCCCTGCTGAGTCAGATCAGCTCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "9158a1ec-8bad-4af2-8be8-05895765271b", "modified_site_by_target_id": "eGFP-IRF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-142G3, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of IRF1. The last 50 bases before the stop codon of IRF1 are as follows: TGCTGACCCCAGTCCGGTTGCCCTCCATCCAGGCCATTCCCTGTGCACCG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "edcbe862-fec6-4b66-b4e4-67a985104eb7", "modified_site_by_target_id": "eGFP-HSBP1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-234D11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HSBP1. The last 50 bases before the stop codon of HSBP1 are as follows: GGGTGGAAGAACTGGAAAGTGAAAACAAGATACCTGCCACGCAAAAGAGT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "d6713ee7-ca7d-476d-9378-9e42908a0cb8", "aliases:array": "kevin-white:SIN3A", "modified_site_by_target_id": "eGFP-SIN3A-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-329B2, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of SIN3A. The last 50 bases before the stop codon of SIN3A are as follows: TGAGCATTAACAAGTATCGTGTCAAATACGGCACAGTATTCAAAGCCCCT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "5a0f2b2c-6480-4969-bdb1-9945aa39ab18", "modified_site_by_target_id": "eGFP-GTF3A-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-54O5, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of GTF3A. The last 50 bases before the stop codon of GTF3A are as follows: ACTGTGTGGAAGACAAGATGCTCTCGACAGTTGCAGTACTTACCCTTGGC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "4848e73c-36fa-4ea6-9244-512844273563", "aliases:array": "robert-waterston:OP90-GFP", "modified_site_by_target_id": "eGFP-nhr-6-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0632dD06, url:https://www.sourcebioscience.com/search?search=WRM0632dD06", "description": "wgIs90 [nhr-6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "79f79d61-1108-4880-9a0e-c74e6ed22065", "aliases:array": "kevin-white:AV001_eGFP-Hnf4", "modified_site_by_target_id": "eGFP-Hnf4-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-61C16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TTTCAGAACCCTGTCGCATGACACTTAAACAGGAGCCAGAGACTGGTTAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "29ffbcf9-e5b3-4aec-b7e8-cbd1e01c0c1d", "aliases:array": "kevin-white:AV007_eGFP-ey", "modified_site_by_target_id": "eGFP-ey-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-38O22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCCCGGGAAAACAACAGTTCTTCGCCTCCTGTTTCTACTCACCGTGGGTC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c7d5e017-e6ba-4b13-b972-5a863deb0ddf", "aliases:array": "kevin-white:AV007_eGFP-Atf3", "modified_site_by_target_id": "eGFP-Atf3-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-51N24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCGACCTGGACTCAGCCACTGCCTTCATGAACAACGGCAGTTGCCTGGCG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f4cd687e-e59c-4fa8-ad50-89e01fe29f92", "aliases:array": "kevin-white:eGFP-FlAsH-StrepII-3xFLAG_eGFP-Hr4", "modified_site_by_target_id": "eGFP-Hr4-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-95K17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (eGFP-FlAsH-StrepII-TEV-FLAG) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGAGCAAGATGTTCTATGTGCCCTTCGTGCTCAACTCGGCGAGCATAAGG", "documents:array": "/documents/87a38c2c-9836-4670-aa5d-d2e30e6806f4/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "541761db-4f63-4f24-bb05-c21907e08353", "aliases:array": "kevin-white:AV007_eGFP-emc", "modified_site_by_target_id": "eGFP-emc-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-19P18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGCTTCTCTCTTTTTAGCCACAGAATGCGGAGAAAGACAGCAGACAGTCG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "97f6678d-2d62-4290-b01f-b962549367ab", "aliases:array": "robert-waterston:OP448-GFP", "modified_site_by_target_id": "eGFP-nhr-190-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0610cF07, url:https://www.sourcebioscience.com/search?search=WRM0610cF07", "description": "wgIs448 [nhr-190::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "70578d0c-a4ce-4f20-bec7-51e2dbadea38", "aliases:array": "robert-waterston:OP188-GFP", "modified_site_by_target_id": "eGFP-dac-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0616dE09, url:https://www.sourcebioscience.com/search?search=WRM0616dE09", "description": "wgIs188 [dac-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "64361c6b-63f3-4bd7-a674-ff2127f5b2cd", "aliases:array": "robert-waterston:OP37-GFP", "modified_site_by_target_id": "eGFP-pha-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617dE06, url:https://www.sourcebioscience.com/search?search=WRM0617dE06", "description": "wgIs37 [pha-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of pha-4 coding sequence of fosmid ID#WRM0617dE06 by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-22-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c4775092-5863-4b5c-b07f-061ae34cd9df", "aliases:array": "robert-waterston:OP364-GFP", "modified_site_by_target_id": "eGFP-nhr-112-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618bF08, url:https://www.sourcebioscience.com/search?search=WRM0618bF08", "description": "wgIs364 [nhr-112::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:02-08-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "973a0386-0f33-4599-944c-9b2193421e46", "modified_site_by_target_id": "eGFP-TCERG1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-229K22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TCERG1 . The last 50 bases before the stop codon of TCERG1 are as follows: GTCCACCCCCACCTCCCACAGCATCGGAGCCCACGAGACGATCAACAAAA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "2482800d-92fe-4f85-b092-34f1cfda77da", "modified_site_by_target_id": "eGFP-TEAD2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-360G9, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TEAD2. The last 50 bases before the stop codon of TEAD2 are as follows: CCACCAGCGAGCGTGGGGCCCAGCATCACATTTACCGCCTGGTCAGGGAC", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "b09f4d8a-cfeb-4622-9b46-339f1906eb0b", "modified_site_by_target_id": "eGFP-PYGO2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-94F9, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of PYGO2. The last 50 bases before the stop codon of PYGO2 are as follows: CTGTCTACATCCGTGAGGGCATGGGGCAGCTGGTGGCTGCTAACGATGGG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "70e2605c-578b-46d0-a031-5fb9f70ba64d", "modified_site_by_target_id": "eGFP-NR2F2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-46C2, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NR2F2. The last 50 bases before the stop codon of NR2F2 are as follows: ATATGTTACTGTCCGGCAGCAGTTTTAACTGGCCGTATATGGCAATTCAA", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "fe1843c9-e12c-40f7-95e4-5badc3c9c967", "modified_site_by_target_id": "eGFP-GATA1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-232B19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of GATA1. The last 50 bases before the stop codon of GATA1 are as follows: GCCCCATGCCCCCCACCACCAGCACTACTGTGGTGGCTCCGCTCAGCTCA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "2b932361-cb1d-4538-a015-2e09b7df3009", "modified_site_by_target_id": "eGFP-HDAC8-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-436L1, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HDAC8. The last 50 bases before the stop codon of HDAC8 are as follows: TGGCTTTTATCCTCCTCAGGTACGAACCTCCTGCCCCAAATCCAGGCCTG", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "f5c617b6-bad1-4969-adee-3da5c6f9168b", "modified_site_by_target_id": "eGFP-FOS-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "9eeb3a83-ef82-449a-a9c4-b42198d8fbe1", "modified_site_by_target_id": "eGFP-GATA2-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "799e171c-e080-4aae-b1af-a8c79123112d", "modified_site_by_target_id": "eGFP-ILF2-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "d690443c-b1c5-48f4-8360-4204929b434d", "modified_site_by_target_id": "eGFP-KMT2E-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "92765071-1de8-484e-b01e-a31d2b9b04a6", "modified_site_by_target_id": "eGFP-JUNB-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2265O21, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of JUNB. The last 50 bases before the stop codon of JUNB are as follows: ACGTCAGCAACGGCTGTCAGCTGCTGCTTGGGGTCAAGGGACACGCCTTC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "e722c0e5-66cd-406d-bec5-ae95f78219be", "modified_site_by_target_id": "eGFP-TEF-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-348I12, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TEF. The last 50 bases before the stop codon of TEF are as follows: GCAAGTGCAAGACCATCGTGTCCAAGTATGAGACCAAATACGGGCCCTTG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "9e08d975-f46d-46f9-b077-85f743937de2", "modified_site_by_target_id": "eGFP-HMGA2-human", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-462A13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a N-terminal Fluorescent Localization and Affinity Purification (NFLAP) tag at the N-terminal of HMGA2. The last 50 bases before the stop codon of HMGA2 are as follows: GGCGGTCGAGGCGAAGCGGCTGCAGCGGCGGTAGCGGCGGCGGGAGGCAGG", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/248a4510-055a-447a-9171-4eac079f0b14/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "b64463d4-9013-41c9-a375-b635137b864b", "modified_site_by_target_id": "eGFP-HDAC8-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "7f51c32a-8d85-479b-a3ce-f67b327e8a6e", "modified_site_by_target_id": "eGFP-HMGB1-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "e3c33e63-9e2b-48dc-b424-3532bc746163", "modified_site_by_target_id": "eGFP-NR4A1-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "fd9958a8-5abe-47de-b516-e09eb12dc969", "modified_site_by_target_id": "eGFP-SMARCA1-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "13600b94-eae5-4ec0-9a83-54a09497d1dd", "aliases:array": "kevin-white:AV007_eGFP-corto", "modified_site_by_target_id": "eGFP-corto-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-05J20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGGCCACGCCCACATTCCAGCACCTGCCGCAGATCTCCTGCTACAACGTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c518f9a3-9329-4e8a-98ac-1ca67f2d55dd", "aliases:array": "kevin-white:AV007_eGFP-dsx", "modified_site_by_target_id": "eGFP-dsx-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-11A03, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGAATATCTATGACGGGGGTGAGCTGCGCAACACAACGCGGCAATGTGGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "91a3b927-ee03-4447-ab49-ae6dd4cf92a6", "aliases:array": "kevin-white:LAP_eGFP-Jra", "modified_site_by_target_id": "eGFP-Jra-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-63P04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGAGCACATTGCCGCGGGCTGCACGGTGCCGCCGAACTCGACAGACCAA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7325b790-12c4-4f1b-8b5e-a43869831f20", "aliases:array": "michael-snyder:eGFP_ZSCAN5CP_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN5CP-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENSG00000204532, url:http://uswest.ensembl.org/Homo_sapiens/Gene/Summary?g=ENSG00000204532;r=19:56202301-56209452", "introduced_sequence": "ATGGCTGCAAATTGCACATCCTCATGGAGTCTAGGAGAATCCTGCAACAGCCCTGGGTCAGAGCCACCACAGTCCATGCCATCCCCAGCAACTCAACTTGGAAATCATGACAGTGATCCTGAGACTTGTCACGTGAACTTCAGGATGTTCAGCTGCCCGAAGGAGTCGGACCCCATCCAGGCTCTGAGGAAACTCACTGAGCTGTGCCATCTGTGGCTGAGGCCCGACCTCCACACCAAAGAGCAGATCCTGGACATGCTGGTGATGGAGCAGTTCATGATCTCCATGCCCCAGGAGCTCCAGGTCTTAGTCATGATGAACGGTGTGCAGAGCTGCAAAGACCTGGAGGACCTGCTACGAAATAACAGAAGACCCAAGAAATGGTCTGTAGTCAGTTTTCTTGGCAAGGAATATCTTATGCAGGAATCAGATGTGGAGATGGCTGAAGCCCCCGCCAGTGTCAGAGATGATCCGAGACACGTGTCCAGCCAGCGGACCTCCTCTGTGAACCAGATGTGTCCGGAGGAAGGCCAGGCCAGCCAAGAGCTGCAGACCCTGCCCAGGGTCCCTGCACTGTTCAGGAGGCAGGAAGAGGACTTCCTGCTGCCAGAGACTACTGTCATGAAAGGTGACCCAAAGGCTCTGAGACCCAAGCCGACCTTGGAGAAGGACCTGGAGGAAGACAGGGAGGAGAACCCAGGACTTACATCCCCAGAGCCTCAGCTTCCAAACAGTCCCACAGGGGTGGTGGGAGCAAAGGAGGGGAAGGAACCCCAAAAAAGAGCCTCTGTGGAAAATGTGGATGCTGACACACCTTCTGCCTGCGTTGTGGAGAGAGAAGCTTCGACTCACAGCGGGAGCAGAGGAGACGCTCTGAATCTGAGAGGTCTCAAAAGAAGCAAACCAGACGCCACCTCCATTTCCCAAGAAGAGCCTCAAGGAGAAGCCACACCTGTGGGCAACAGAGAATCCCCGGGACAAGCTGAGATCAATCCAGTTCATTCCCCAGGCCCTGCGGGCCCAGTCAGTCACCCCAGTGGCCAAGAAGTCAAGGAACTGCTGCCCTTTGCATGTGAGGTGTGCGGCAAGAGGTTTAAGTATCGCGGCAAGTTAGCCGTCCACACGAGATCACACACAGGCGAGAGACTCTTTCAGTGTAATCTCTGCGGGAAGCGCTTCATGCAGCGCATAGGCCTGCAATTTCACCAGCGAACCCACACTGGCGAGAGGCCCTACACGTGTGACATCTGCCAGAAGCAGTTCACCCAGAAGTCCTACTTGAAGTGTCACAAGAGAAGCCACACAGGGGAGAAGCCCTTCGAATGTAAAGACTGCAAGAAAGTTTTCACCTACAAGGCAAATCTGAAGGAGCACCAGCGCATCCACTCTGGAGAGAAACCCCACAAATGTTCCAAGTGTCCAAGAGCCTTCGGTCGGCCGGCGACCTTAAGACGCCACCAGAAAACACATCGAGAAGCCACTTCACAG", "description": "This construct contains an eGFP N-terminal tag to ZSCAN5CP under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "198bd545-5266-4a81-9eb6-af5c55936830", "aliases:array": "michael-snyder:eGFP_ZNF8_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF8-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10463, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10463", "description": "This construct contains an eGFP N-terminal tag to ZNF8 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "f4e3d154-12d4-4081-bcdc-86364eeddda6", "aliases:array": "richard-myers:AHR-FLAG", "modified_site_by_target_id": "FLAG-AHR-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "de751ac3-cce4-48c5-b2c6-96b4abed4650", "aliases:array": "richard-myers:SAP130-FLAG", "modified_site_by_target_id": "FLAG-SAP130-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GTCTAGACCCAGAACAATC;GTCCAATCTCCTGATTGTTCT", "reagents:object:array": "source:addgene, identifier:86267, url:https://www.addgene.org/86267/; source:addgene, identifier:86310, url:https://www.addgene.org/86310/; source:addgene, identifier:86311, url:https://www.addgene.org/86311/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "4e360922-f071-47a2-829d-4de8da6c8517", "aliases:array": "richard-myers:ATF4-FLAG", "modified_site_by_target_id": "FLAG-ATF4-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCCCCTAGTTGAGGATAGTC;GCTCCTGACTATCCTCAACT", "reagents:object:array": "source:addgene, identifier:72350, url:https://www.addgene.org/72350/; source:addgene, identifier:72351, url:https://www.addgene.org/72351/; source:addgene, identifier:72352, url:https://www.addgene.org/72352/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "985245a6-56f4-409d-b2b4-ec5c32d956ed", "aliases:array": "richard-myers:STAT6-FLAG", "modified_site_by_target_id": "FLAG-STAT6-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "6cd44ecb-5801-4fd9-a490-c51c85c7bfbd", "aliases:array": "kevin-white:AV007_eGFP-tin", "modified_site_by_target_id": "eGFP-tin-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-12K16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGCAGCAGCAGCAGCAGCATCATGCACAGCAGCAACAGATGCAGCACATG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "33ad729b-fc86-4432-a3c4-7c8bcd68ed47", "aliases:array": "kevin-white:AV007_eGFP-CG4424", "modified_site_by_target_id": "eGFP-CG4424-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-23H06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGACTGCCTATCTAAGTACCTTTAAAGTGGGGATTACTGTAGCTAATGCT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6abc48d3-dccc-4c8b-8ad0-7095a01975b9", "aliases:array": "kevin-white:AV007_eGFP-CG4617", "modified_site_by_target_id": "eGFP-CG4617-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-73E22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAAATCTGGCCGACACGCTCGACAACATCGCCTACGTAATGCCCGGACTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2889a6df-6b4f-4358-860b-4966d3b6d581", "aliases:array": "kevin-white:AV007_eGFP-CG6792", "modified_site_by_target_id": "eGFP-CG6792-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-63H08, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TTAATCCTGACAAGCGACTGAAAACACTACTGCCCAAGGAGACTGTAGAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "51d578db-5c3e-4674-bff9-75d039ce0f05", "modified_site_by_target_id": "eGFP-WBP11-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-27N15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of WBP11. The last 50 bases before the stop codon of WBP11 are as follows: CTAAGGATGATGTCTATGAGGCTTTCATGAAAGAGATGGAAGGGCTACTG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "3de05a23-99d2-4753-b540-ce81994c24ed", "modified_site_by_target_id": "eGFP-DDX20-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-423B19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of DDX20. The last 50 bases before the stop codon of DDX20 are as follows: CTTATCACATGAATACCATTTATCTACAAGAAATGATGCATAGTAACCAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "228fdc38-8760-4e71-962e-7d854e5996b8", "modified_site_by_target_id": "eGFP-NR2C1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-759P19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NR2C1-L. The last 50 bases before the stop codon of NR2C1-L are as follows: TGAAAATGGAGCCTGCAGATTATAACTCTCAAATAATTGGTCACAGCATT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "7725d9ca-8fe2-4920-9b3e-86bf447df3df", "modified_site_by_target_id": "eGFP-HIST1H1C-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-276P5, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HIST1H1C. The last 50 bases before the stop codon of HIST1H1C are as follows: CCGCTAAGCCCAAGGTTGTCAAGCCTAAGAAGGCGGCGCCCAAGAAGAAA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "098bdcf9-3bf7-4b72-8e0c-dcd8978ee4fb", "modified_site_by_target_id": "eGFP-HDAC10-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2579L10, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HDAC10. The last 50 bases before the stop codon of HDAC10 are as follows: TGCGCGCCTCTTCTCGGCTCCTCCTGTAGTGCCATCCTCACCTGGTGGCT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "6828a9c3-af40-4e17-a028-95dc7bb10297", "modified_site_by_target_id": "eGFP-ELK1-human", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2320N10, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a N-terminal Fluorescent Localization and Affinity Purification (NFLAP) tag at the N-terminal of ELK1-NTERM. The last 50 bases before the stop codon of ELK1-NTERM are as follows: GCTGTTTGCTCTCCAGGTACCCCTGGGATGGCGTGAGCACTCCCCCAGCG", "documents:array": "/documents/248a4510-055a-447a-9171-4eac079f0b14/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "09b09a2c-628b-4e16-9004-94caddb80d28", "modified_site_by_target_id": "eGFP-CNOT7-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-4O23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of CNOT7. The last 50 bases before the stop codon of CNOT7 are as follows: TACAGAATGGCACAGGGAATGCATATGAAGAGGAAGCCAACAAGCAGTCA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "284d4fe3-18b1-44e4-a26a-d234b3f0cc95", "modified_site_by_target_id": "eGFP-CREB3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-145E14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of CREB3. The last 50 bases before the stop codon of CREB3 are as follows: GGCTTCCTACTGGTAGCCCCTCTGTCATTTTGCAGGACAGATACTCAGGC", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "b09c4468-f0a9-4a16-9048-72b953811569", "modified_site_by_target_id": "eGFP-HINFP-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-120C23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HINFP. The last 50 bases before the stop codon of HINFP are as follows: TCATGGAAAAGCTTCAAGGAATAGCTGAGGAGCCAGAGATCCAGATGGTT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "7661da84-8c50-494a-8660-5d69bb492e10", "modified_site_by_target_id": "eGFP-MAFG-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-634L10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MAFG. The last 50 bases before the stop codon of MAFG are as follows: CCGCCACCAGCGTCATCACAATAGTAAAGTCCAAGACGGATGCCCGATCG", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "db3a59e1-13b9-46cf-b97f-a93f44562c00", "aliases:array": "robert-waterston:OP374-GFP", "modified_site_by_target_id": "eGFP-F37B4.10-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627aC12, url:https://www.sourcebioscience.com/search?search=WRM0627aC12", "description": "wgIs374 [F37B4.10::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:05-09-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "17938f07-bf99-4564-8929-c19e38a18528", "aliases:array": "robert-waterston:OP409-GFP", "modified_site_by_target_id": "eGFP-nhr-127-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065bB02, url:https://www.sourcebioscience.com/search?search=WRM065bB02", "description": "wgIs409 [nhr-127::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-25-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ce001923-e00e-48e5-9006-0e1bf07f807f", "aliases:array": "robert-waterston:OP384-GFP", "modified_site_by_target_id": "eGFP-nhr-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0629bE01, url:https://www.sourcebioscience.com/search?search=WRM0629bE01", "description": "wgIs384 [nhr-30::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT RECEIVED:06-13-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9a72d928-1e5a-4c15-98b7-d89837c16d50", "aliases:array": "robert-waterston:OP412-GFP", "modified_site_by_target_id": "eGFP-nhr-168-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062aD04, url:https://www.sourcebioscience.com/search?search=WRM062aD04", "description": "wgIs412 [nhr-168::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-25-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "eb47d020-a16f-491c-a34e-822fc4bb14bd", "aliases:array": "robert-waterston:OP475-GFP", "modified_site_by_target_id": "eGFP-pos-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638aA11, url:https://www.sourcebioscience.com/search?search=WRM0638aA11", "description": "wgIs475 [pos-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-28-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "29562191-bd21-462a-9979-1e9c21b0fee3", "aliases:array": "robert-waterston:OP77-GFP", "modified_site_by_target_id": "eGFP-unc-130-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638cC05, url:https://www.sourcebioscience.com/search?search=WRM0638cC05", "description": "wgIs77 [unc-130::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e4b4dc3e-0306-4689-bb51-730b1467063c", "aliases:array": "robert-waterston:OP75-GFP", "modified_site_by_target_id": "eGFP-elt-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613aE03, url:https://www.sourcebioscience.com/search?search=WRM0613aE03", "description": "wgIs75 [elt-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e88ff628-40db-4749-a4d7-83b4319a42a1", "aliases:array": "robert-waterston:OP83-GFP", "modified_site_by_target_id": "eGFP-zag-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063aA08, url:https://www.sourcebioscience.com/search?search=WRM063aA08", "description": "wgIs83 [zag-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1f695e13-1039-4444-95bd-f9a899ce7327", "aliases:array": "robert-waterston:OP376-GFP", "modified_site_by_target_id": "eGFP-fkh-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615dC04, url:https://www.sourcebioscience.com/search?search=WRM0615dC04", "description": "wgIs376 [fkh-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:05-09-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "47139901-5597-4496-92ad-8c1afa5827b3", "aliases:array": "robert-waterston:OP360-GFP", "modified_site_by_target_id": "eGFP-peb-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621aA11, url:https://www.sourcebioscience.com/search?search=WRM0621aA11", "description": "wgIs360 [peb-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-23-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "68e91b70-dea7-4f0c-8708-2b3239e8856f", "modified_site_by_target_id": "eGFP-NCOR1-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "55bdb7dd-baba-41e1-b4a0-5c40285ccc07", "aliases:array": "kevin-white:AV007_eGFP-Kr", "modified_site_by_target_id": "eGFP-Kr-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-95L15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGTATGATTTAGATGATGCCCCGGCTTCTTATATGGGCCATCAACAACAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4fa2e887-204f-4ee9-bc20-221425c0533b", "aliases:array": "kevin-white:AV007_eGFP-lilli", "modified_site_by_target_id": "eGFP-lilli-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-34M12, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GTCTCAAGACGCTCAGGGATGCCGTGTCGCATCCGACGCATCAGTCGCAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0f0d7de8-a963-4e9e-be84-5d6018706341", "aliases:array": "kevin-white:AV001_eGFP-Su(H)", "modified_site_by_target_id": "eGFP-Su(H)-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-149G01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCCCTCCATCTCAGAAGTGCAATGGAATAGTCATGGTAGCGGCTTATCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6fb6d0f3-bf08-47e5-9278-1c3e12c33a01", "aliases:array": "kevin-white:AV007_eGFP-trh", "modified_site_by_target_id": "eGFP-trh-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-75C09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACCTTTACCACAAGGGCAGCCCGGCCAGCGGCTGGTACTCCACGCCCTCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2e943533-3a38-4e80-960b-a095e48941e5", "aliases:array": "kevin-white:AV001_eGFP-Hr46", "modified_site_by_target_id": "eGFP-Hr46-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-23L02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGGCGCTGTACAAGGAGCTGTTCTCGATAGATTCGCAGCAGGACCTGACA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0a2ec5a0-cb24-4a6d-a61d-bc64ed3275e0", "aliases:array": "kevin-white:AV007_eGFP-jim", "modified_site_by_target_id": "eGFP-jim-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-05M07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CATCCGGCGTGGTGGTTCAGCAGAATGCTTCTGCCTCTGTGGTAGCCCAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e0175897-2cf6-402c-91ce-f637680d618e", "aliases:array": "kevin-white:AV007_eGFP-kn", "modified_site_by_target_id": "eGFP-kn-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-96P06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCACCTGCAATACACAGGGCTATAGCACCCAACTGGTGACGTCAACCAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "acafa6d1-5cf0-49d6-bd2b-36d316cacf0d", "aliases:array": "kevin-white:AV001_eGFP-Atf-2", "modified_site_by_target_id": "eGFP-Atf-2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-06J20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCAACGTGTTAGTGCCTTCGTCCGCCAGCAACGCAAGCGCGGCCAAGAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cbc643a3-4e72-45db-a783-4cec740dac45", "aliases:array": "kevin-white:AV007_eGFP-CG10147", "modified_site_by_target_id": "eGFP-CG10147-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-173N09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGGATAATCAGCAGACCGCTTGTGCTCTGCTGCAACTGACTAGCATGGGT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "969b0323-589e-40d7-9e4d-c746fd97f7f3", "aliases:array": "robert-waterston:OP399-GFP", "modified_site_by_target_id": "eGFP-F22D6.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635bC12, url:https://www.sourcebioscience.com/search?search=WRM0635bC12", "description": "wgIs399 [F22D6.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ee56eb9e-7bb7-4f4b-8cd9-f6d88c9a9531", "aliases:array": "kevin-white:AV007_eGFP-sima-RA", "modified_site_by_target_id": "eGFP-sima-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-06J13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGTTTAGCGACAACCAGTTGGAGCAAGTCCTGGGTTGGCCAGAAATCGCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fcdd2e08-e41e-4b25-8c5c-39e7ad072608", "aliases:array": "kevin-white:AV012_eGFP-cnc", "modified_site_by_target_id": "eGFP-cnc-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-28M20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCTGATAGCTTAATCAGTAACTCTTATTTTATTAGTTATAGGTGGAAAG", "documents:array": "/documents/f470b0c9-aef8-4c42-84b7-2b50a082aa82/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d932c6a4-5627-4c89-8d43-c50a0fdaabe8", "aliases:array": "kevin-white:AV007_eGFP-sima-RB", "modified_site_by_target_id": "eGFP-sima-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-06J13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TTTTTCCTCCTTTTCTGCCCCAAAAAAACAGGATGACGATTCCGAAGCAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "31cdbb9f-c0b2-4d07-aed8-092c54557d9a", "aliases:array": "robert-waterston:OP462-GFP", "modified_site_by_target_id": "eGFP-rnt-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621aD07, url:https://www.sourcebioscience.com/search?search=WRM0621aD07", "description": "wgIs462 [rnt-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-14-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e8ebcabb-cecc-4c55-b7ca-4829e4ab5a68", "aliases:array": "kevin-white:LAP_eGFP-Abd-B", "modified_site_by_target_id": "eGFP-Abd-B-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-91P18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACCTGAACCTTAGCCTGAACATGGGTCACCATGCCGCCAAGATGCACCAG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6ddb39e1-b214-493e-97ca-26ddcea5efc5", "aliases:array": "kevin-white:AV007_eGFP-CG14965", "modified_site_by_target_id": "eGFP-CG14965-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-191G10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCTGGCTGGAGAAAAAAAATACGGAAAATTCGGAAGAGTTTCTAGACTTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1aa5fc7a-f033-4208-bbc0-2321dcf66b46", "aliases:array": "kevin-white:AV001_eGFP-ftz-f1", "modified_site_by_target_id": "eGFP-ftz-f1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-56J20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of ftz-f1, targeting these isoforms: ftz-f1-RB, ftz-f1-RA, ftz-f1-RC. The 50bp preceding the tag are: CGCCCACCCAAACGCTGCTCATGGAGATGCTGCACGCCAAGCGCAAGGGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "bbd92b58-5b78-48e7-befa-883184e540c3", "aliases:array": "kevin-white:AV007_eGFP-btn", "modified_site_by_target_id": "eGFP-btn-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-138E16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCGCATCAAACTGGAGGAGCAGCAAGGCAGCTCGGCCAAAACGCCATTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a6d282d8-69bc-4ce1-bbad-752aa79bd042", "aliases:array": "kevin-white:AV007_eGFP-bab1", "modified_site_by_target_id": "eGFP-bab1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-69B22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGTTACAGGTAAGTTCCTGTGGTGACTTTCCTTTGGCCAACGTAAGTACA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "63d94aff-d2af-4126-ade9-0c7b5a3192be", "aliases:array": "kevin-white:AV007_eGFP-CG8319", "modified_site_by_target_id": "eGFP-CG8319-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-94N13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCACTTTCTGGGCAAGCATCGGGATGGAGATCAAAAGCTAAAGCTAAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b9e46f1d-0b5d-4d06-a1f3-e5a322a1ac0b", "aliases:array": "michael-snyder:eGFP_ZNF585B_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF585B-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079594, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079594", "description": "This construct contains an eGFP N-terminal tag to ZNF585B under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6d29e45e-1a48-48ee-aff6-f7a1b9ff793e", "aliases:array": "kevin-white:AV007_eGFP-CG7368", "modified_site_by_target_id": "eGFP-CG7368-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-164N21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCAACAGCAGACTTCGCAGCAGCAGCAGCAACAGCAGCAAATGATAAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4225c709-d19a-4cb0-947f-d8edf2cb9a7f", "aliases:array": "michael-snyder:eGFP_ZNF121_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF121-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399375, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00399375", "description": "This construct contains an eGFP N-terminal tag to ZNF121 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "200b2cb0-294a-478c-b1f1-027702e46a52", "aliases:array": "michael-snyder:eGFP_ZNF101_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF101-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:2941, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=2941", "description": "This construct contains an eGFP N-terminal tag to ZNF101 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "133dd866-f48d-4cd4-972c-4546b3322feb", "aliases:array": "michael-snyder:eGFP_ZNF788_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF788-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF788, synthesized by Life Technologies (using the sequence identified by XM_930581), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "4dd0778e-db59-4f3a-a4f6-0f6381740556", "aliases:array": "michael-snyder:eGFP_ZFP37_FRT_construct", "modified_site_by_target_id": "eGFP-ZFP37-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:54490, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=54490", "description": "This construct contains an eGFP N-terminal tag to ZFP37 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d21bfa01-008e-4600-8ee2-481769c9d82d", "aliases:array": "michael-snyder:eGFP_ZNF2_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:5031, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=5031", "description": "This construct contains an eGFP N-terminal tag to ZNF2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6173e67b-59e2-407a-a291-0d7a5284ba06", "aliases:array": "michael-snyder:eGFP_ZNF80_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF80-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF80, synthesized by Life Technologies (using the sequence identified by ENST00000482457), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "ccd3309b-9685-4f2a-91c0-21886c26f80d", "aliases:array": "michael-snyder:eGFP_ZNF362_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF362-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00342009, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00342009", "description": "This construct contains an eGFP N-terminal tag to ZNF362 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "cac3ea59-d45a-4c5c-bbe0-b8547b5c5271", "modified_site_by_target_id": "eGFP-SUZ12-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-279J20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of SUZ12. The last 50 bases before the stop codon of SUZ12 are as follows: AAACAGATAGTGTCTCAGGGGTTTCAAAACAGAGCAAAAAACAAAAACTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "f7266110-4e87-4554-b081-2ada3857d20a", "modified_site_by_target_id": "eGFP-HDAC3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-15J20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HDAC3. The last 50 bases before the stop codon of HDAC3 are as follows: AGTTCTATGATGGAGACCATGACAATGACAAGGAAAGCGATGTGGAGATT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "9813ad4d-0b73-4fcb-9658-cb798d679a22", "aliases:array": "kevin-white:ATF3-L", "modified_site_by_target_id": "eGFP-ATF3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2557F4, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ATF3. The last 50 bases before the stop codon of ATF3 are as follows: ATGAGAGAAACCTCTTTATCCAACAGATAAAAGAAGGAACATTGCAGAGC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "feb7cda4-74f3-47b9-8a96-0f6c8b0d4588", "modified_site_by_target_id": "eGFP-HMGB2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-347G11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HMGB2. The last 50 bases before the stop codon of HMGB2 are as follows: AGGAGGAAGAAGAAGATGAAGATGAGGAGGAAGAGGATGAAGATGAAGAA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "31b67aed-b9d4-4e6c-8ecd-e28c41ea6e76", "modified_site_by_target_id": "eGFP-ZNF22-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-396D18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF22. The last 50 bases before the stop codon of ZNF22 are as follows: TACCCTCTTGGAAAGCTGGTACAGGAAGGAAGTCTGTGGCTGGTCTCCGT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "39ba2e17-ae77-44af-980c-c540893ecc89", "modified_site_by_target_id": "eGFP-NR4A1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-3122J9, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NR4A1. The last 50 bases before the stop codon of NR4A1 are as follows: TGCCCCCTCCACCCATCATTGACAAGATCTTCATGGACACGCTGCCCTTC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "84291886-14f7-47ba-b76b-e15fa488c058", "modified_site_by_target_id": "eGFP-CDKN1B-human", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-113I21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a N-terminal Fluorescent Localization and Affinity Purification (NFLAP) tag at the N-terminal of CDKN1B. The last 50 bases before the stop codon of CDKN1B are as follows: TTTGTTTTTTTGAGAGTGCGAGAGAGGCGGTCGTGCAGACCCGGGAGAAAG", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/248a4510-055a-447a-9171-4eac079f0b14/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "0b1e1d3e-36e1-4145-a597-c82e37418b38", "modified_site_by_target_id": "eGFP-DAZAP2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-310D17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of DAZAP2. The last 50 bases before the stop codon of DAZAP2 are as follows: AGGGTGAGGAAGACAACGGTGATAACAACTTGGAAAGGAGAGGGAAAATG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "b4a95d6d-4933-4acc-9b24-ee42f99cbd2a", "modified_site_by_target_id": "eGFP-CCNE1-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "fe844122-06e5-4a27-9eb9-ec9d8629b6a9", "modified_site_by_target_id": "eGFP-ELF1-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "dec1f296-0716-4074-a037-0ef3bfe664bf", "aliases:array": "robert-waterston:OP357-GFP", "modified_site_by_target_id": "eGFP-nhr-84-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621cD02, url:https://www.sourcebioscience.com/search?search=WRM0621cD02", "description": "wgIs357 [nhr-84::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-23-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "bf083574-acc8-4778-b5b9-155f8c8d7d24", "aliases:array": "robert-waterston:OP361-GFP", "modified_site_by_target_id": "eGFP-nhr-21-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619bF09, url:https://www.sourcebioscience.com/search?search=WRM0619bF09", "description": "wgIs361 [nhr-21::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-23-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7ca3259a-b840-46da-8504-66e761fc4c1c", "aliases:array": "robert-waterston:OP196-GFP", "modified_site_by_target_id": "eGFP-sptf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621cG01, url:https://www.sourcebioscience.com/search?search=WRM0621cG01", "description": "wgIs196 [sptf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a76245de-0efa-482a-a10c-abeb8c57d2a0", "aliases:array": "robert-waterston:OP239-GFP", "modified_site_by_target_id": "eGFP-nhr-10-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0629bF03, url:https://www.sourcebioscience.com/search?search=WRM0629bF03", "description": "wgIs239 [nhr-10::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f59e859f-c1ff-4494-9b82-9f627f3d3677", "aliases:array": "robert-waterston:OP424-GFP", "modified_site_by_target_id": "eGFP-nfya-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613bG01, url:https://www.sourcebioscience.com/search?search=WRM0613bG01", "description": "wgIs424 [nfya-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-01-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "84b0ac04-bd31-4d2a-a308-d4c4fa1c7caa", "aliases:array": "robert-waterston:OP208-GFP", "modified_site_by_target_id": "eGFP-nhr-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636dG03, url:https://www.sourcebioscience.com/search?search=WRM0636dG03", "description": "wgIs208 [nhr-27::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5de028f1-8eba-4e01-a8ae-f3bec50832b7", "aliases:array": "robert-waterston:OP217-GFP", "modified_site_by_target_id": "eGFP-aly-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630aH09, url:https://www.sourcebioscience.com/search?search=WRM0630aH09", "description": "ddIs172 [aly-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Cell. 2012 Aug 17;150(4):855-66. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Mihail Sarov RECEIVED:03-04-13 from Sarov M, MPI-CBG, Dresden, Germany", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a4e0a5d2-97b5-464c-9690-1e307fb996ac", "aliases:array": "robert-waterston:OP362-GFP", "modified_site_by_target_id": "eGFP-alr-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068bC04, url:https://www.sourcebioscience.com/search?search=WRM068bC04", "description": "wgIs362 [alr-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:01-11-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d41e66e7-3a6c-4f2c-aff1-18a8c5b4fa26", "aliases:array": "robert-waterston:OP402-GFP", "modified_site_by_target_id": "eGFP-ceh-24-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065cF04, url:https://www.sourcebioscience.com/search?search=WRM065cF04", "description": "MADE BY:DKV-RJT-PW RECEIVED:08-29-11 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b86cf6be-b213-4cf9-813a-c6adb0ee7892", "aliases:array": "robert-waterston:OP436-GFP", "modified_site_by_target_id": "eGFP-madf-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cB04, url:https://www.sourcebioscience.com/search?search=WRM0636cB04", "description": "wgIs436 [C01G12.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "63ff8837-158e-475a-9baf-16de2e0b5a8c", "aliases:array": "kevin-white:AV007_eGFP-chn", "modified_site_by_target_id": "eGFP-chn-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-52N13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCAGGCAGCTCTGCAGAAGAGGATTAGCCGAGGACAGGCGGACAAATGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8fbd61b5-506a-4936-8a21-94d25165efcb", "aliases:array": "kevin-white:AV007_eGFP-Crg-1", "modified_site_by_target_id": "eGFP-Crg-1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-16B10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATGTAGATATGTATATAAAAGCTGCAAAAAAAAAACATGAACTACCAAGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fa33cfe4-0720-4860-a688-c84f45a9eba8", "aliases:array": "kevin-white:AV007_eGFP-CG4854", "modified_site_by_target_id": "eGFP-CG4854-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-23H06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACCACAAAAACAGCCACGAAAAGTCACACAAAAGGACGAAAGAGGTGAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f28230b0-c049-4f2e-a359-c91552a05e5f", "aliases:array": "kevin-white:AV007_eGFP-HLH54F", "modified_site_by_target_id": "eGFP-HLH54F-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-167G21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCAGCATCAGCGGGGCATAGCTATAGCCACTAGCCATGCCCATGGCATT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "74241c4b-bab1-4428-a53e-da9cbcaf8ecd", "aliases:array": "kevin-white:AV001_eGFP-Med", "modified_site_by_target_id": "eGFP-Med-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-90L08, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGACGAAGTGCTGCACGCCATGCCGATCGATGGCCCGCGTGCCGCCGCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3de38ccb-16ae-4acf-b6d0-1b0c8d801f85", "aliases:array": "robert-waterston:OP81-GFP", "modified_site_by_target_id": "eGFP-eor-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617cB05, url:https://www.sourcebioscience.com/search?search=WRM0617cB05", "description": "wgIs81 [eor-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4157a6d7-1287-479b-bcfc-ada450eb0ee9", "aliases:array": "robert-waterston:OP114-GFP", "modified_site_by_target_id": "eGFP-F16B12.6-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618aC10, url:https://www.sourcebioscience.com/search?search=WRM0618aC10", "description": "wgIs114 [F16B12.6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Niu W, et al. Genome Res. 2011 Feb;21(2):245-54. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:01-18-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7ac25eb6-d52a-4165-bff4-b9b5ec5272d0", "aliases:array": "robert-waterston:OP385-GFP", "modified_site_by_target_id": "eGFP-F55B11.4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0610aG11, url:https://www.sourcebioscience.com/search?search=WRM0610aG11", "description": "wgIs385 [F55B11.4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT RECEIVED:06-13-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7a8d9861-638a-4fb9-b3f7-454616620217", "modified_site_by_target_id": "eGFP-FOXM1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-188P11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of FOXM1. The last 50 bases before the stop codon of FOXM1 are as follows: CACTGGGCCCTGACAACATCAACTGGTCCCAGTTTATTCCTGAGCTACAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "1664fb42-11cd-48ee-b4a5-712627115f44", "aliases:array": "robert-waterston:OP129-GFP", "modified_site_by_target_id": "eGFP-sea-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613bE07, url:https://www.sourcebioscience.com/search?search=WRM0613bE07", "description": "wgIs129 [sea-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2e5fe306-9f34-490b-9cff-4c9d4cbcea13", "aliases:array": "robert-waterston:OP408-GFP", "modified_site_by_target_id": "eGFP-nhr-136-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615bC10, url:https://www.sourcebioscience.com/search?search=WRM0615bC10", "description": "wgIs408 [nhr-136::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-25-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f142f631-563c-4f73-ad53-df3747baec0f", "modified_site_by_target_id": "eGFP-TCEB1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-406K9, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TCEB1. The last 50 bases before the stop codon of TCEB1 are as follows: CACCTGAAATTGCACTGGAACTGCTGATGGCTGCGAACTTCTTAGATTGT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "f7d23422-b548-4a85-adcb-e78149e676b3", "aliases:array": "robert-waterston:OP73-GFP", "modified_site_by_target_id": "eGFP-ceh-14-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617cA12, url:https://www.sourcebioscience.com/search?search=WRM0617cA12", "description": "wgIs73 [ceh-14::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5d4c38d7-945e-4c14-9693-35a28a72f0d1", "aliases:array": "robert-waterston:OP100-GFP", "modified_site_by_target_id": "eGFP-fkh-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615dC04, url:https://www.sourcebioscience.com/search?search=WRM0615dC04", "description": "wgIs100 [fkh-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:02-21-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f9fa678d-749f-4c98-bee0-df8bce6b739d", "aliases:array": "robert-waterston:OP222-GFP", "modified_site_by_target_id": "eGFP-daf-12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0612bB01, url:https://www.sourcebioscience.com/search?search=WRM0612bB01", "description": "wgIs222 [daf-12::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "dd9aab48-b852-4114-9213-daa31ae53e3d", "aliases:array": "robert-waterston:OP180-GFP", "modified_site_by_target_id": "eGFP-gei-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618dB09, url:https://www.sourcebioscience.com/search?search=WRM0618dB09", "description": "wgIs180 [gei-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "73e3ac8c-f8d5-4bda-8966-d0d22c769e8a", "aliases:array": "robert-waterston:OP457-GFP", "modified_site_by_target_id": "eGFP-nhr-149-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061cF09, url:https://www.sourcebioscience.com/search?search=WRM061cF09", "description": "wgIs457 [nhr-149::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-14-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "69276cb2-7ce8-4cde-83c0-19af4b88c474", "aliases:array": "robert-waterston:OP62-GFP", "modified_site_by_target_id": "eGFP-lin-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624dE10, url:https://www.sourcebioscience.com/search?search=WRM0624dE10", "description": "wgIs62 [lin-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9a9883a2-ac6e-403f-8965-db8f6c0ff90c", "aliases:array": "robert-waterston:OP451-GFP", "modified_site_by_target_id": "eGFP-ztf-15-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0626bA07, url:https://www.sourcebioscience.com/search?search=WRM0626bA07", "description": "wgIs451 [R06C7.9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "09836388-121b-47d9-bea7-e561a5cfae01", "aliases:array": "robert-waterston:OP177-GFP", "modified_site_by_target_id": "eGFP-egl-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627aB03, url:https://www.sourcebioscience.com/search?search=WRM0627aB03", "description": "wgIs177 [egl-27::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of egl-27 coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-20-10 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0f77019e-19f2-4234-8d6c-5c0b69e96ddc", "aliases:array": "michael-snyder:eGFP_PRDM2_FRT_construct", "modified_site_by_target_id": "eGFP-PRDM2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399236, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00399236", "description": "This construct contains an eGFP N-terminal tag to PRDM2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "9b8840ce-2b48-4115-8148-ed96114e3656", "aliases:array": "michael-snyder:eGFP_ZNF414_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF414-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF414 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "a24703cc-b90a-4a6d-8de7-f7ee8752e9e1", "aliases:array": "robert-waterston:OP252-GFP", "modified_site_by_target_id": "eGFP-dao-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630aC10, url:https://www.sourcebioscience.com/search?search=WRM0630aC10", "description": "unc-119(ed3);ddIs293[WRM0630A_C10::unc-119-Nat([39067]dao-5::2xTY1wEGFP3xflag)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9ec7abb9-e80d-42aa-b773-aeeaf280757d", "aliases:array": "robert-waterston:OP487-GFP", "modified_site_by_target_id": "eGFP-ets-7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aA07, url:https://www.sourcebioscience.com/search?search=WRM0641aA07", "description": "wgIs487(F19F10.5::TY1 EGFP 3xFLAG(91H12);unc-119(+);unc-119(tm4063)", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ea986935-a3e7-4e5f-adb2-fd849d0fc430", "aliases:array": "robert-waterston:QP0661-GFP", "modified_site_by_target_id": "eGFP-xnd-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "This strain is xnd-1 mutant with transgene eaIs3[xnd-1::2xTy::GFP::3xFLAG +unc-119(+)]. This transgene is a fosmid transgene and was bombarded to get the stable transgenic lines. This transgene rescues xnd-1 mutant. We dont know its location but what we know is that its not on ChrIII.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "89abbd10-23b7-4f6c-84f4-7bf014f76e7d", "aliases:array": "robert-waterston:ZM7247-GFP", "modified_site_by_target_id": "eGFP-daf-16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "daf-16(mu86);daf-2(e1370) III; hpSi4II (Pmyo-3 GFP::daf-16a). Generated by MosSci into ttTi5605; unc-119. the resulting insertion was outcrossed to remove unc-119 and then crossed into daf-16; daf-2 strain.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "67ef611f-0c6c-4d1a-a7fd-c98dd002b2c8", "aliases:array": "robert-waterston:OP578-GFP", "modified_site_by_target_id": "eGFP-unc-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636aF12, url:https://www.sourcebioscience.com/search?search=WRM0636aF12", "description": "wgIs578 [unc-3::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "79970efa-70c2-4688-b0f1-89b933828de9", "aliases:array": "richard-myers:HMG20A-FLAG", "modified_site_by_target_id": "FLAG-HMG20A-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GTGAACAGACTCGATCGTTA;GACTCGATCGTTAGGGAA", "reagents:object:array": "source:addgene, identifier:86271, url:https://www.addgene.org/86271/; source:addgene, identifier:86318, url:https://www.addgene.org/86318/; source:addgene, identifier:86319, url:https://www.addgene.org/86319/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "e75e6cbd-a7d7-47c7-9ba6-cab1d1d4c7d2", "aliases:array": "richard-myers:NFIA_isoform1-FLAG", "modified_site_by_target_id": "FLAG-NFIA_isoform1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "459b4f69-7cb3-481d-8ec7-b950e46aad49", "aliases:array": "richard-myers:THAP11-FLAG", "modified_site_by_target_id": "FLAG-THAP11-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "b5ae525d-1d8b-4dac-886b-822a5685c422", "modified_site_by_target_id": "eGFP-STAT1-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "cf38f36b-765d-4009-9ac4-4e5ae409fb9d", "modified_site_by_target_id": "eGFP-SUPT6H-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-452H20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of SUPT6H. The last 50 bases before the stop codon of SUPT6H are as follows: CCATGTCCATTGCTGGCGATGCCACCCCACTCCTGGACGAGATGGATCGG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "6dd10635-c5d8-4145-877b-ebb6f6af182d", "aliases:array": "kevin-white:AV007_eGFP-psq", "modified_site_by_target_id": "eGFP-psq-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-61B16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCAGCAGCTTCAGCAGATCTATCAGCACCACGGGACGCCGGAGCGTAGT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e35f5f21-9942-4bc3-95fb-95ca2e3302bf", "aliases:array": "kevin-white:LAP_eGFP-bcd", "modified_site_by_target_id": "eGFP-bcd-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-100D18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATCCCCATCGGAACGCCGCGGGCAACTCGCAGTTTGCCTACTGCTTCAAT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0a3522a2-5042-4e59-81cb-f74b7f004d40", "aliases:array": "kevin-white:LAP_eGFP-cad", "modified_site_by_target_id": "eGFP-cad-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-115J21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCACAGTGCGCAGATGTCCGCTGCGGCGGCAGTGGGCACGCTCTCGATG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3d3b510c-b9c2-439e-b4bc-2669fb56a58e", "aliases:array": "kevin-white:AV007_eGFP-CG4282", "modified_site_by_target_id": "eGFP-CG4282-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-98A04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGAAGATTTCGCGCAACGCCTCGACGCAAAACAAGCCGAAACAGGAAATC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "994dbda1-637b-41eb-b0b0-d738d8cd62f5", "aliases:array": "kevin-white:AV001_eGFP-dsf", "modified_site_by_target_id": "eGFP-dsf-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-46H07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CTCGACTGCTGCGCGACATGTACACCATGGAACCGGCACAGGTGGACAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "74884efa-8819-4dc1-9036-a51b6bc111a6", "aliases:array": "kevin-white:AV001_eGFP-Hr38", "modified_site_by_target_id": "eGFP-Hr38-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64K11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCCCGCGCCAGCTCTCATCGAGAACATGTTCGTCACCACATTGCCCTTC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cf0baa03-b6be-4902-a72a-e01e8808a7ab", "aliases:array": "kevin-white:AV007_eGFP-Hr83", "modified_site_by_target_id": "eGFP-Hr83-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-06P23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGCTTTCTTGTATGTTTCGCAGCGTGGTCAGGGACATCTTAAAAACACTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "43795acb-cf45-49ae-8569-e0ce8484e895", "aliases:array": "kevin-white:AV007_eGFP-prd", "modified_site_by_target_id": "eGFP-prd-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-94D04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCTGATAGCTTAATCAGTAACTCTTATTTTATTAGTTATAGGTGGAAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "221c4c0a-37b9-4f8d-9df4-2b66d0d01aeb", "aliases:array": "robert-waterston:OP450-GFP", "modified_site_by_target_id": "eGFP-nhr-154-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639dF01, url:https://www.sourcebioscience.com/search?search=WRM0639dF01", "description": "wgIs450 [nhr-154::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9fed7e0e-e796-4c0f-a858-b81a26450b63", "aliases:array": "robert-waterston:OP55-GFP", "modified_site_by_target_id": "eGFP-mec-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM069bA11, url:https://www.sourcebioscience.com/search?search=WRM069bA11", "description": "wgIs55 [mec-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ba031f5b-1863-4825-8862-8620e9e18e26", "aliases:array": "kevin-white:AV007_eGFP-CG10543", "modified_site_by_target_id": "eGFP-CG10543-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-140L20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CACCGCACGGGCAGCAGCCGGATCTAATCTACTACCCAGTGAAGAACGAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "083f30e1-e13c-406f-b8a8-1a43ca86697f", "aliases:array": "kevin-white:AV007_eGFP-CG18619", "modified_site_by_target_id": "eGFP-CG18619-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-40A17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CAACCAACAATGACCAGTTACTTCAGGAACTCGGAATCCTCAAACAAGAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4c83da13-9664-47a6-9731-294083bef183", "aliases:array": "kevin-white:AV007_eGFP-CG30431", "modified_site_by_target_id": "eGFP-CG30431-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-170I06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCACGCAGATATCATTGAGGCCCAGTTAGAGGCGGAGGGCATCGAGAGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b758ff0e-d075-461f-822d-d06a5175ed13", "aliases:array": "kevin-white:AV007_eGFP-unpg", "modified_site_by_target_id": "eGFP-unpg-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-150N10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GAGTCGGCCTGGGGGTATCCACGCCCCTCTCCCTCGCCAGGAGCATCTAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9e85bdc3-f549-4134-a0a1-baa4681b208e", "aliases:array": "kevin-white:AV001_eGFP-Su(var)3-7", "modified_site_by_target_id": "eGFP-Su(var)3-7-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-115H04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GTTGTCAAATCACAACATTTCGGACAATGGTGAACCATAACCGCAGGCCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0b11c854-04fd-4286-8dd3-3eab29e994ec", "aliases:array": "kevin-white:AV007_eGFP-CG9305", "modified_site_by_target_id": "eGFP-CG9305-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-185C18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TACCAGAGCATATTGTTCAATGCATAATGAATGTTATGCAGCCAGAGGAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "05aca60c-2bac-41bb-995a-2a35e22db3e4", "aliases:array": "kevin-white:AV001_eGFP-Hr39", "modified_site_by_target_id": "eGFP-Hr39-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-74G02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCGATGGAGCTGATTTCAATTTGCTAATGGAGCTTTTGCGCGGAGAGCAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "887747c3-a6e3-4173-88eb-7fc9e9e978bd", "aliases:array": "kevin-white:AV007_eGFP-Chrac-16", "modified_site_by_target_id": "eGFP-Chrac-16-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-178O21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACGATGATGACGATGAAGAAGAGTCCGAATCGGAATCGGAGTCTGATGAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a8ebc337-8af5-49f6-a7ae-d79fbfd2c630", "aliases:array": "robert-waterston:OP169-GFP", "modified_site_by_target_id": "eGFP-ceh-39-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065bC11, url:https://www.sourcebioscience.com/search?search=WRM065bC11", "description": "wgIs169 [ceh-39::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "423bbd9e-2a4c-47f9-934a-d8c5af479674", "aliases:array": "robert-waterston:OP301-GFP", "modified_site_by_target_id": "eGFP-mef-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637bF09, url:https://www.sourcebioscience.com/search?search=WRM0637bF09", "description": "wgIs301 [mef-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Niu W, et al. Genome Res. 2011 Feb;21(2):245-54. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:01-18-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2c1cd882-0e49-4dad-bf4d-f6b8ec777b29", "aliases:array": "robert-waterston:OP305-GFP", "modified_site_by_target_id": "eGFP-nhr-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aC03, url:https://www.sourcebioscience.com/search?search=WRM0639aC03", "description": "wgIs305 [nhr-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c30f49b8-020f-47e4-849c-be55f0e04563", "aliases:array": "robert-waterston:OP339-GFP", "modified_site_by_target_id": "eGFP-nhr-129-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064cD08, url:https://www.sourcebioscience.com/search?search=WRM064cD08", "description": "wgIs339 [nhr-129::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Elicia Preston RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "96679357-a545-45a5-bf04-5f095d37b256", "aliases:array": "robert-waterston:OP340-GFP", "modified_site_by_target_id": "eGFP-nhr-129-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064cD08, url:https://www.sourcebioscience.com/search?search=WRM064cD08", "description": "wgIs340 [nhr-129::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Elicia Preston RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7d547196-7db1-42c6-8ab6-14264c835c3d", "aliases:array": "robert-waterston:OP99-GFP", "modified_site_by_target_id": "eGFP-nhr-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618bB02, url:https://www.sourcebioscience.com/search?search=WRM0618bB02", "description": "wgIs99 [nhr-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1854bbe9-e6d6-47c7-8e1f-6c4db7f7113d", "aliases:array": "robert-waterston:OP422-GFP", "modified_site_by_target_id": "eGFP-nhr-82-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618cC08, url:https://www.sourcebioscience.com/search?search=WRM0618cC08", "description": "wgIs422 [nhr-82::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-01-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d952d48c-656d-488a-9144-b81dec37aa64", "aliases:array": "robert-waterston:OP425-GFP", "modified_site_by_target_id": "eGFP-crh-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620bH06, url:https://www.sourcebioscience.com/search?search=WRM0620bH06", "description": "wgIs425 [C27D6.4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-01-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2474e585-9221-4cc1-8803-9f668aefd0b2", "aliases:array": "robert-waterston:OP102-GFP", "modified_site_by_target_id": "eGFP-ham-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621bG11, url:https://www.sourcebioscience.com/search?search=WRM0621bG11", "description": "wgIs102 [ham-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Niu W, et al. Genome Res. 2011 Feb;21(2):245-54. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:01-18-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ef410778-6098-4dd2-a23e-b0d924fabb15", "aliases:array": "robert-waterston:OP227-GFP", "modified_site_by_target_id": "eGFP-syp-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623aH01, url:https://www.sourcebioscience.com/search?search=WRM0623aH01", "description": "wgIs227 [syp-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9048cbe2-6587-4b6a-81cf-c06eaa640efe", "aliases:array": "robert-waterston:OP324-GFP", "modified_site_by_target_id": "eGFP-C34F6.9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627dG05, url:https://www.sourcebioscience.com/search?search=WRM0627dG05", "description": "wgIs324 [C34F6.9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4be50b53-e0b9-4e72-a1c0-ff89fa547f6c", "aliases:array": "robert-waterston:OP202-GFP", "modified_site_by_target_id": "eGFP-ceh-9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613bE07, url:https://www.sourcebioscience.com/search?search=WRM0613bE07", "description": "wgIs202 [ceh-9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "aec9c0e8-9217-42a4-bc0d-2c11a1bba0b6", "aliases:array": "robert-waterston:OP234-GFP", "modified_site_by_target_id": "eGFP-jun-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aE11, url:https://www.sourcebioscience.com/search?search=WRM0641aE11", "description": "wgIs234 [jun-1::TY1::EGFP::3xFLAG + unc-119(+)]. \\TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f52513d9-b68f-4c57-9ec7-efe267074cc6", "aliases:array": "robert-waterston:OP367-GFP", "modified_site_by_target_id": "eGFP-lsy-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063dD08, url:https://www.sourcebioscience.com/search?search=WRM063dD08", "description": "wgIs367 [lsy-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:03-08-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0d8b271e-f9dd-4f39-b12d-7a8e22ad5765", "aliases:array": "robert-waterston:OP413-GFP", "modified_site_by_target_id": "eGFP-nhr-63-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636aD12, url:https://www.sourcebioscience.com/search?search=WRM0636aD12", "description": "wgIs413 [nhr-63::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-25-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2c5fd85f-d1ac-4b4b-a26c-e390b8a3f44a", "aliases:array": "robert-waterston:OP428-GFP", "modified_site_by_target_id": "eGFP-cid-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064aD06, url:https://www.sourcebioscience.com/search?search=WRM064aD06", "description": "wgIs428 [cid-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-01-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4e4ad398-654f-4ab0-9262-77d1eac659bb", "aliases:array": "robert-waterston:OP464-GFP", "modified_site_by_target_id": "eGFP-nhr-43-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067dC05, url:https://www.sourcebioscience.com/search?search=WRM067dC05", "description": "wgIs464 [nhr-43::TY1::EGFP::3xFLAG(91G08) + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-14-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "424c61a5-3c76-475b-b224-4a7ed51c00cf", "aliases:array": "robert-waterston:OP507-GFP", "modified_site_by_target_id": "eGFP-nfx-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0640cG10, url:https://www.sourcebioscience.com/search?search=WRM0640cG10", "description": "wgIs507 [tag-182::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-16-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8cbe8cb9-f2e2-4069-b706-ea54e0f1fdd6", "aliases:array": "robert-waterston:OP56-GFP", "modified_site_by_target_id": "eGFP-elt-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cA10, url:https://www.sourcebioscience.com/search?search=WRM062cA10", "description": "wgIs56 [elt-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6400c8a9-325e-4bdd-8f74-d5b683daebc4", "aliases:array": "kevin-white:AV007_eGFP-esn", "modified_site_by_target_id": "eGFP-esn-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-65F01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGGCGGGGCACCGGCGATCATGCACGAGAGCAAGAACTGCACGATTTCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0339aad5-60a6-4fd6-83e8-43263b32b46f", "aliases:array": "richard-myers:TFE3-FLAG", "modified_site_by_target_id": "FLAG-TFE3-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GTCAGGCCTCACCCCTCCCCT;GGTGGGAAAGTCCCAGGGGA", "reagents:object:array": "source:addgene, identifier:86325, url:https://www.addgene.org/86325/; source:addgene, identifier:86326, url:https://www.addgene.org/86326/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "b3f9504d-366d-49cf-ac91-a369187ad4a9", "aliases:array": "richard-myers:RBPJ-FLAG", "modified_site_by_target_id": "FLAG-RBPJ-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "1aad52b7-f6af-4227-b6b8-223b8542e676", "aliases:array": "richard-myers:ZNF639-FLAG", "modified_site_by_target_id": "FLAG-ZNF639-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "99a79128-3111-44e2-a80e-f3cfb276a2a1", "aliases:array": "richard-myers:GABPB1_isoform2-FLAG", "modified_site_by_target_id": "FLAG-GABPB1_isoform2-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "1f7ef470-eaff-4048-8337-b3af6bc6e5d5", "aliases:array": "richard-myers:MYRF-FLAG", "modified_site_by_target_id": "FLAG-MYRF-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "7e205528-4832-4478-83e0-843a52c3f5e5", "aliases:array": "richard-myers:CIZ1-FLAG", "modified_site_by_target_id": "FLAG-CIZ1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "358b66aa-aa9d-4c2a-9a84-fcc1fcadc17f", "aliases:array": "richard-myers:HMG20B_isoform2-FLAG", "modified_site_by_target_id": "FLAG-HMG20B_isoform2-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "fc14603c-e776-4aad-b960-684b3c3d071d", "aliases:array": "richard-myers:HMGXB4-FLAG", "modified_site_by_target_id": "FLAG-HMGXB4-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "a3a30c5b-7a07-4c31-9b6d-24999f19d70e", "aliases:array": "richard-myers:RFXANK-FLAG", "modified_site_by_target_id": "FLAG-RFXANK-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GAGTGTCTGAGTCCCCGGC;GCCCGCTGACCCTGAGTGA", "reagents:object:array": "source:addgene, identifier:86296, url:https://www.addgene.org/86296/; source:addgene, identifier:86364, url:https://www.addgene.org/86364/; source:addgene, identifier:86365, url:https://www.addgene.org/86365/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "76ba6c42-0efe-4f02-9fa5-2a4077706e34", "aliases:array": "richard-myers:MXD3_isoform1-FLAG", "modified_site_by_target_id": "FLAG-MXD3_isoform1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "65e2c482-9952-40f4-b733-dd3be91d46f4", "aliases:array": "kevin-white:modENCODE_eGFP-inv", "modified_site_by_target_id": "eGFP-inv-dmelanogaster", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "This construct contains an eGFP tag at the N or C-terminal of inv.", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U01HG004264"}, - {"uuid": "80aacb20-62c2-4fd2-8cf5-bb18a929c24f", "aliases:array": "kevin-white:AV007_eGFP-CG7045", "modified_site_by_target_id": "eGFP-CG7045-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-145P02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGATGACTCCGATCTGCAGGAAGTGCTTATCAAAGACCAGGTGCCTTCAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "96db911f-6302-47b3-928c-c58bdfac7595", "aliases:array": "kevin-white:AV001_eGFP-Eip78C", "modified_site_by_target_id": "eGFP-Eip78C-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-05P13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGCCCCTCTTCGCCGAGATCTTCGACATCCCGAAGGCTGACGATGAGCTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "66ea2b24-ac6b-4cfa-bd76-2fd054622c87", "aliases:array": "kevin-white:AV001_eGFP-Ets65A", "modified_site_by_target_id": "eGFP-Ets65A-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-83M04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGACCCCCTCCCACGTAGCGCCCCACCTGAGCAGCTATCCCCACTACGCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "25e2bb55-83f3-41ce-b25b-78b103333804", "modified_site_by_target_id": "eGFP-cad-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH322-115J21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH322_115J21 has been chosen to target the gene caudal. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of ATT sites. Recombinant individuals were screened based on mini-white presence. The line has been stabilized as homozygous for the transgene.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "78e3bf23-17c5-4f8f-abdf-2ca02885fad5", "aliases:array": "kevin-white:AV007_eGFP-CG2120", "modified_site_by_target_id": "eGFP-CG2120-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-187N24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GATTTCTGCGCAAATCCAATCATAAGCAACACCTCAAGGTGCACGAGCGT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a35878cf-d82a-4100-820c-7a8bd352f30f", "aliases:array": "kevin-white:AV007_eGFP-CG3919", "modified_site_by_target_id": "eGFP-CG3919-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-102M24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GACTTATGCTGCAGCTGCCAAAGCTGGTGTCCAAGGCATCCAAAGATTTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e76153f6-fa6c-44c2-aaef-028b244898fa", "aliases:array": "kevin-white:AV007_eGFP-Dif", "modified_site_by_target_id": "eGFP-Dif-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-10D24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of Dif, targeting these isoforms: Dif-RA, Dif-RB, Dif-RD. The 50bp preceding the tag are: TCCAGGACATTGAGGCAGAACTCAATAGCTTGGGAATTCAGCCATTCAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ea3166c1-b4a0-4f87-86c0-a6bc7b41f0f9", "aliases:array": "kevin-white:AV007_eGFP-polybromo", "modified_site_by_target_id": "eGFP-polybromo-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-91P13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCGCAACTTCATGGTCGACGATATACTTCAAATACGGCGCAGTTGCAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1ff1c5ae-6934-4dff-ab76-a597afd9d241", "aliases:array": "robert-waterston:OP332-GFP", "modified_site_by_target_id": "eGFP-ztf-7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618cF06, url:https://www.sourcebioscience.com/search?search=WRM0618cF06", "description": "wgIs332 [ztf-7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Niu W, et al. Genome Res. 2011 Feb;21(2):245-54. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:01-18-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3692cb9b-f084-4342-b142-6356f949ffb7", "aliases:array": "kevin-white:AV001_eGFP-Mad", "modified_site_by_target_id": "eGFP-Mad-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-32N01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGTGCTCACCCAAATGGGCTCTCCGCATAATGCAATTAGTTCGGTATCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "67ed44a3-2a98-4340-b60d-077d996d36c3", "modified_site_by_target_id": "eGFP-Eip74EF-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH321-90E15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH321-90E15 has been chosen to target the gene Ecdysone-induced protein 74EF. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of Att sites. Recombinant individuals were screened based on mini-white presence. The line has been stabilized as homozygous for the transgene.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "f7182d36-622f-4504-bec9-6db38a2aa3c6", "aliases:array": "kevin-white:modENCODE_eGFP-sens", "modified_site_by_target_id": "eGFP-sens-dmelanogaster", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "This construct contains an eGFP tag at the N-terminal of sens.", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U01HG004264"}, - {"uuid": "98ed43c4-060e-4ec6-b236-eda9dd12f716", "aliases:array": "kevin-white:AV007_eGFP-Mio", "modified_site_by_target_id": "eGFP-Mio-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-23K15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCAAAGCCCTCCAGAATTCAAGTGGCCAGCATCCAAATCTGCATGGACCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "84a00978-97db-4064-98df-3c8d5c05acb9", "aliases:array": "kevin-white:LAP_eGFP-slou", "modified_site_by_target_id": "eGFP-slou-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-90F02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCCCCTACTTCCACCCCCTGGGCGCACATCACCTCAGCCACTCGCACTCA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "030b5894-bbd5-4f77-b8fa-0969047ebfb9", "aliases:array": "kevin-white:AV001_eGFP-tai", "modified_site_by_target_id": "eGFP-tai-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-89M04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATTTCATTTTTATTTCGATAGCGGACTTCTTCACCAGCAGCGCTACGAGG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c614f92a-387c-4d36-b3f7-3975fe67a36e", "aliases:array": "kevin-white:AV001_eGFP-usp", "modified_site_by_target_id": "eGFP-usp-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-23L04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCGAGCAGCTGGAGGCGCCGCCGCCACCCGGCCTGGCGATGAAACTGGAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d4865e30-de05-4146-84a4-85b0e4a8c54c", "modified_site_by_target_id": "eGFP-exd-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH322-35A16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "(P)acman BAC number CH322 35A16 has been chosen to target the gene caudal. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of Att sites. Recombinant individuals were screened based on mini-white presence. The line has been stabilized as homozygous for the transgene.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "43e19624-fc5c-42aa-b871-233f1289f9d1", "aliases:array": "kevin-white:AV007_eGFP-ss-RC", "modified_site_by_target_id": "eGFP-ss-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-28L15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCAGTCCGCTGCTCTCCTTCTCCGAGGTGACCAACACGCTACTGAACCAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "be2ff431-ecf8-4b47-9228-e14785a26f20", "aliases:array": "kevin-white:AV001_eGFP-Smox", "modified_site_by_target_id": "eGFP-Smox-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-24M24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCGTGCTCACACAGATGGGTTCGCCACGGCTGCCGTGCAGCTCCATGTCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "498f3723-b2d8-42be-b731-58ae537a2e89", "aliases:array": "robert-waterston:OP488-GFP", "modified_site_by_target_id": "eGFP-syd-9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623dB10, url:https://www.sourcebioscience.com/search?search=WRM0623dB10", "description": "wgIs488 [syd-9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-09-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "41ec4811-c1e9-4c4b-92ea-78ae505eaf7e", "aliases:array": "robert-waterston:OP124-GFP", "modified_site_by_target_id": "eGFP-aha-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630aC10, url:https://www.sourcebioscience.com/search?search=WRM0630aC10", "description": "wgIs124 [aha-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6873f08e-3e97-4f92-be7f-3485611aea44", "aliases:array": "robert-waterston:OP175-GFP", "modified_site_by_target_id": "eGFP-lir-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0632cA06, url:https://www.sourcebioscience.com/search?search=WRM0632cA06", "description": "wgIs175 [lir-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d067efca-ef63-4a83-bee4-c46c0a9b403b", "aliases:array": "robert-waterston:OP318-GFP", "modified_site_by_target_id": "eGFP-nhr-12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635cC03, url:https://www.sourcebioscience.com/search?search=WRM0635cC03", "description": "wgIs318 [nhr-12::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "34591669-f457-4b8d-9fbd-b1f35ac9b453", "aliases:array": "robert-waterston:OP345-GFP", "modified_site_by_target_id": "eGFP-C16A3.4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636aG04, url:https://www.sourcebioscience.com/search?search=WRM0636aG04", "description": "wgIs345 [C16A3.4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:E Preston-D Vafeados RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4b3ae2a4-c5a8-4b92-91c5-4538e22c3fb4", "aliases:array": "robert-waterston:OP395-GFP", "modified_site_by_target_id": "eGFP-unc-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aA08, url:https://www.sourcebioscience.com/search?search=WRM0639aA08", "description": "wgIs395 [unc-30::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8b48908b-68c7-43e7-96cc-c9ea4cff98b5", "aliases:array": "kevin-white:AV007_eGFP-CG33213", "modified_site_by_target_id": "eGFP-CG33213-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-154H19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCATCCTTGGCCATTTTAGACGGCTGTCCAGGGTCCTCAAGAAGGAGCTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ab4885eb-663b-449e-9007-94556722000c", "aliases:array": "kevin-white:AV007_eGFP-dm", "modified_site_by_target_id": "eGFP-dm-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-88A16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CTCTGGCCAGTTACCAAATGGAGTTGAACGAATCGCGCTCGGTTAGTGGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f9c7a1fa-9029-47cf-a041-f8793733659a", "aliases:array": "robert-waterston:OP479-GFP", "modified_site_by_target_id": "eGFP-nhr-201-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0612aH09, url:https://www.sourcebioscience.com/search?search=WRM0612aH09", "description": "wgIs479 [nhr-201::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:06-05-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "013480b7-f241-4974-854f-bfb8091390a2", "aliases:array": "robert-waterston:OP417-GFP", "modified_site_by_target_id": "eGFP-nhr-124-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617bB02, url:https://www.sourcebioscience.com/search?search=WRM0617bB02", "description": "wgIs417 [nhr-124::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-25-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ad1d6358-c348-46c5-a0d1-e916635f9344", "aliases:array": "kevin-white:AV001_eGFP-Hr78", "modified_site_by_target_id": "eGFP-Hr78-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64B11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGATGCTCTTATTCCGTTCATACTGATGACCAGCAACACCAGTGGACTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "31ddaa06-844a-4640-b224-1ff6b84f1020", "aliases:array": "robert-waterston:OP183-GFP", "modified_site_by_target_id": "eGFP-D1081.8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0614dB03, url:https://www.sourcebioscience.com/search?search=WRM0614dB03", "description": "wgIs183 [D1081.8::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e8b63455-9c26-42b2-93c3-c0f3cafb72c5", "aliases:array": "robert-waterston:OP369-GFP", "modified_site_by_target_id": "eGFP-sex-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061dE05, url:https://www.sourcebioscience.com/search?search=WRM061dE05", "description": "wgIs369 [sex-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:RJT-PW RECEIVED:04-12-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8e8949e6-c41b-44f9-b6c4-943ea49ae408", "aliases:array": "robert-waterston:OP54-GFP", "modified_site_by_target_id": "eGFP-egl-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624aF02, url:https://www.sourcebioscience.com/search?search=WRM0624aF02", "description": "wgIs54 [egl-5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of egl-5 coding sequence of fosmid ID#WRM066cA09 by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-22-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9292e076-362c-4c99-bb06-4113cdcbeaea", "aliases:array": "robert-waterston:OP467-GFP", "modified_site_by_target_id": "eGFP-nhr-195-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637bC02, url:https://www.sourcebioscience.com/search?search=WRM0637bC02", "description": "wgIs467 [nhr-195::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-28-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "09b56a61-4c31-4712-9ee6-31652940d33a", "aliases:array": "robert-waterston:OP397-GFP", "modified_site_by_target_id": "eGFP-D1046.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aH02, url:https://www.sourcebioscience.com/search?search=WRM0639aH02", "description": "wgIs397 [D1046.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d9c6a53a-1ce0-4007-9ad0-09b6c6a94835", "aliases:array": "robert-waterston:OP473-GFP", "modified_site_by_target_id": "eGFP-ZK546.5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067dD04, url:https://www.sourcebioscience.com/search?search=WRM067dD04", "description": "wgIs473 [ZK546.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-28-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b3e1bf8b-213b-4dd1-becb-c8f900ce8eb2", "aliases:array": "robert-waterston:OP34-GFP", "modified_site_by_target_id": "eGFP-ama-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0610dA01, url:https://www.sourcebioscience.com/search?search=WRM0610dA01", "description": "wgIs34 [ama-1::TY1::EGFP::3xFLAG + unc-119(+)]. Slightly Dpy. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of ama-1 coding sequence of fosmid ID#WRM0610dA01 by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-22-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8e8e3872-536f-4d6f-8fe5-d851035eead5", "aliases:array": "robert-waterston:OP205-GFP", "modified_site_by_target_id": "eGFP-ceh-57-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617bG10, url:https://www.sourcebioscience.com/search?search=WRM0617bG10", "description": "ddIs164 [C07E3.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Cell. 2012 Aug 17;150(4):855-66. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Mihail Sarov RECEIVED:03-04-13 from Sarov M, MPI-CBG, Dresden, Germany", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7ae86ac3-33b8-4b06-9dc1-c98f66fac45d", "aliases:array": "robert-waterston:OP212-GFP", "modified_site_by_target_id": "eGFP-ceh-82-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619bA03, url:https://www.sourcebioscience.com/search?search=WRM0619bA03", "description": "ddEx58 [F45C12.2::TY1::EGFP::3xFLAG + unc-119(+)]. Pick wild-type to maintain array. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Cell. 2012 Aug 17;150(4):855-66. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Mihail Sarov RECEIVED:03-04-13 from Sarov M, MPI-CBG, Dresden, Germany", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8d1ac3be-eb4b-45bf-8be2-56f75344a795", "aliases:array": "richard-myers:ZFP1_isoform1-FLAG", "modified_site_by_target_id": "FLAG-ZFP1_isoform1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GACTCCAGCCAGGTCTTACTG", "reagents:object:array": "source:addgene, identifier:86294, url:https://www.addgene.org/86294/; source:addgene, identifier:86360, url:https://www.addgene.org/86360/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "2456b646-98c0-4c83-9658-5ffbd3b5a9d5", "modified_site_by_target_id": "Geminin-human", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:thermo-fisher, identifier:P36238, url:https://www.thermofisher.com/us/en/home/life-science/cell-analysis/cell-viability-and-regulation/cell-cycle/live-cell-imaging-of-cell-cycle-and-division.html#ord", "description": "Premo FUCCI Cell Cycle Sensor", "status": "released", "lab": "john-stamatoyannopoulos", "submitted_by": "/users/20ce8cd4-c407-453c-b0f3-7e45e5b7e493/", "award": "U54HG007010"}, - {"uuid": "e28222a3-d7d8-4b1e-8f49-989ff383aeaf", "aliases:array": "kevin-white:AV007_eGFP-CG1832", "modified_site_by_target_id": "eGFP-CG1832-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-20C06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TTCCTGACATGGAGGATGAGGCCCAACAGGAAGTGATTATCGGTGGGTTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0e0347e9-0674-443f-bb6c-4d4ff4d963ff", "aliases:array": "kevin-white:AV007_eGFP-ebx", "modified_site_by_target_id": "eGFP-E(bx)-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-169D05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CTCTAACCCCTGTTCACCAATCGGCTGCGCATCAGCAAGTGAGTAGTTTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f163b58d-fbb2-4b0a-959c-4c4011242b33", "aliases:array": "hugo-bellen:ADD-1-MiMIC-GFP", "modified_site_by_target_id": "eGFP-CG8290-dmelanogaster", "introduced_tags:object:array": "location:other, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI09552, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI09552", "description": "This line was created by RCME to replace the EGFP-miniwhite sequence within the MiMIC transposon with an eGFP-3xFLAG sequence. They were a gift from Hugo Bellens lab at Baylor College of Medicine", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "bb496c2d-bc83-419f-8d51-ea9e0f16575c", "aliases:array": "kevin-white:AV007_eGFP-six4", "modified_site_by_target_id": "eGFP-Six4-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-192H07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCATGTTCAATGCTCCAAGCTATTATCCCGAAACGATTTTCAATGGGCAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a4abdde5-e303-43f8-acc4-924d9d9b8d23", "aliases:array": "kevin-white:AV007_eGFP-CG8944", "modified_site_by_target_id": "eGFP-CG8944-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-20K23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GACCCAATGGTGCCGTCGGCGCTGTTGGTCGTTCGGGTCGTAGCAGTCTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "58df8ab6-1d04-408d-8624-f6d568a8dd49", "aliases:array": "kevin-white:AV007_eGFP-CG1620", "modified_site_by_target_id": "eGFP-CG1620-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-126F22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGAGGACGAGGACAACAACGTCGAGGAAGAACCCAGCCTGTCCACAGTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4bb063b4-648e-48fb-8b1c-c602b3614bec", "aliases:array": "kevin-white:AV007_eGFP-Bteb2", "modified_site_by_target_id": "eGFP-Bteb2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-59O01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCGACGATCTGTATGCCGTGCGACCAGGTCGAAAGCGAAAGAATCAGTTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f5944e71-fc44-488a-9dde-6f7cb690d9c8", "aliases:array": "kevin-white:AV007_eGFP-CG13123", "modified_site_by_target_id": "eGFP-CG13123-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-184G11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CACTGCTGGATTACAGGCCAGCCAGTCAGGATCGGGATAATCCGCGCTCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3b1608a4-8c98-43d5-bfa7-022912be65a8", "aliases:array": "robert-waterston:OP304-GFP", "modified_site_by_target_id": "eGFP-fos-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619bE10, url:https://www.sourcebioscience.com/search?search=WRM0619bE10", "description": "wgIs304 [fos-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "71ad30b7-bbfd-489a-b5c3-e25c3b688cf1", "aliases:array": "robert-waterston:OP437-GFP", "modified_site_by_target_id": "eGFP-C02F12.5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0622cF02, url:https://www.sourcebioscience.com/search?search=WRM0622cF02", "description": "wgIs437 [C02F12.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "934827a8-c191-4be2-8487-c8ca9472fc3c", "aliases:array": "robert-waterston:OP232-GFP", "modified_site_by_target_id": "eGFP-ceh-40-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0629bH01, url:https://www.sourcebioscience.com/search?search=WRM0629bH01", "description": "wgIs232 [ceh-40::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7ba1cfb3-748e-498a-8b9f-b4c26612e741", "aliases:array": "robert-waterston:OP224-GFP", "modified_site_by_target_id": "eGFP-rabs-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cB05, url:https://www.sourcebioscience.com/search?search=WRM062cB05", "description": "wgIs224 [rabs-5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "40339962-54d8-4bfc-856a-59b8e0e08453", "aliases:array": "robert-waterston:OP231-GFP", "modified_site_by_target_id": "eGFP-ZK546.5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067dD04, url:https://www.sourcebioscience.com/search?search=WRM067dD04", "description": "wgIs231 [ZK546.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4eb81522-ad16-412e-9c91-d69d97fbf8e6", "aliases:array": "robert-waterston:OP359-GFP", "modified_site_by_target_id": "eGFP-nhr-42-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639dA07, url:https://www.sourcebioscience.com/search?search=WRM0639dA07", "description": "wgIs359 [nhr-42::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-23-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8657c7a9-9361-49b3-97fb-3dd13f82d479", "aliases:array": "robert-waterston:OP373-GFP", "modified_site_by_target_id": "eGFP-nhr-67-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0633cC01, url:https://www.sourcebioscience.com/search?search=WRM0633cC01", "description": "wgIs373 [nhr-67::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:04-20-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "36eb7d19-e0fc-49b8-adda-d5d25b0b440c", "aliases:array": "robert-waterston:OP381-GFP", "modified_site_by_target_id": "eGFP-F44E2.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635aH12, url:https://www.sourcebioscience.com/search?search=WRM0635aH12", "description": "wgIs381 [F44E2.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT RECEIVED:06-13-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a69ca2b6-9034-43f3-ab68-2936e5958da2", "aliases:array": "robert-waterston:OP117-GFP", "modified_site_by_target_id": "eGFP-pax-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0610aH07, url:https://www.sourcebioscience.com/search?search=WRM0610aH07", "description": "wgIs117 [pax-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d7f95315-13f9-4448-bd03-2366b7780fd6", "aliases:array": "robert-waterston:OP368-GFP", "modified_site_by_target_id": "eGFP-tbx-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613cB10, url:https://www.sourcebioscience.com/search?search=WRM0613cB10", "description": "wgIs368 [tbx-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:04-12-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "94242b49-8acf-4c4a-8b39-2a771a3b035c", "aliases:array": "kevin-white:AV007_eGFP-Nf-YB", "modified_site_by_target_id": "eGFP-Nf-YB-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-182I11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GTTATCCGCACAACGAAGATGGGTCCTCCGCAAACGATGCGGGGAAACAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "54e1fc3c-1069-4a89-9149-ba70c0360d9a", "aliases:array": "robert-waterston:OP523-GFP", "modified_site_by_target_id": "eGFP-hlh-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0614bF09, url:https://www.sourcebioscience.com/search?search=WRM0614bF09", "description": "wgIs523(hlh-4::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0090_2A04);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2e76fd32-92e1-4ca2-b232-7f9b6a244e4a", "aliases:array": "kevin-white:AV001_eGFP-dl-RC", "modified_site_by_target_id": "eGFP-dl-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-10D24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. This tags the C isoform. The 50 bases preceding the tag are as follows: TTTTAACGCCGGATGAGGTGGCCAAGCGATTGGCTGCGGCAAATGGCATC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b1878c01-7301-4b9b-8ffd-33e967efc45a", "aliases:array": "kevin-white:AV007_eGFP-chif-RB", "modified_site_by_target_id": "eGFP-chif-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-141A23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCACCTGCAGGCGACTAAGGGCGCCATTCCGACGCTTTCGATACCGTCGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "10c1dff9-43e3-4a7c-97ea-c017daaa273b", "aliases:array": "robert-waterston:OP323-GFP", "modified_site_by_target_id": "eGFP-ceh-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624dD02, url:https://www.sourcebioscience.com/search?search=WRM0624dD02", "description": "wgIs323(ceh-2::TY1 EGFP 3xFLAG(P000007_G02); unc-119(+));unc-119(ed3)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ec311192-7077-4f85-af3c-250d338f62e0", "aliases:array": "robert-waterston:OP391-GFP", "modified_site_by_target_id": "eGFP-med-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615bD03, url:https://www.sourcebioscience.com/search?search=WRM0615bD03", "description": "wgIs391 [med-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0ac11868-dfd8-4cc5-9555-44947422e3f2", "aliases:array": "robert-waterston:OP520-GFP", "modified_site_by_target_id": "eGFP-ref-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618bB06, url:https://www.sourcebioscience.com/search?search=WRM0618bB06", "description": "wgIs520(ref-2::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0089_1G06);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cad8c06f-f866-4cd9-975d-5edcffb45c85", "modified_site_by_target_id": "eGFP-HDAC11-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-624L22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: GCGTCTCCGCACAGAACTCAGACACACCGCTGCTTCCCCCTGCAGTGCCC", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "33208d07-2def-49ee-8179-39496ed5881f", "modified_site_by_target_id": "eGFP-HDAC3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-15J20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: AGTTCTATGATGGAGACCATGACAATGACAAGGAAAGCGATGTGGAGATT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "6c3c9a4b-c0af-48f9-ace8-bf49415fb98e", "modified_site_by_target_id": "eGFP-GTF2B-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-239N15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TTCCTACAGACTTCAAATTTGACACCCCAGTGGACAAACTACCACAGCTA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "444b361d-c6eb-4e77-b697-1a225eb52d8e", "aliases:array": "robert-waterston:OP421-GFP", "modified_site_by_target_id": "eGFP-nhr-82-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618cC08, url:https://www.sourcebioscience.com/search?search=WRM0618cC08", "description": "wgIs421 [nhr-82::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-25-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "95c46d42-2cba-4b5b-ab0e-f89b6e6533c9", "aliases:array": "robert-waterston:OP170-GFP", "modified_site_by_target_id": "eGFP-pha-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063aB05, url:https://www.sourcebioscience.com/search?search=WRM063aB05", "description": "wgIs170 [pha-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f1e8d15e-dcd5-4bc6-aec5-20ceb09eab14", "aliases:array": "robert-waterston:OP347-GFP", "modified_site_by_target_id": "eGFP-hlh-8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063cA11, url:https://www.sourcebioscience.com/search?search=WRM063cA11", "description": "wgIs347 [hlh-8::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Elicia Preston RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "31f403d7-a476-4b1b-9a54-1aa10aa3908c", "aliases:array": "robert-waterston:OP228-GFP", "modified_site_by_target_id": "eGFP-nhr-237-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067cC10, url:https://www.sourcebioscience.com/search?search=WRM067cC10", "description": "wgIs228 [nhr-237::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2e76f773-0dae-40e3-9c47-48539c3a6fea", "aliases:array": "robert-waterston:OP356-GFP", "modified_site_by_target_id": "eGFP-nhr-25-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM069bB11, url:https://www.sourcebioscience.com/search?search=WRM069bB11", "description": "wgIs356 [nhr-25::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-08-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e49c4f35-8c6b-4e65-8f03-7bea70b7f367", "aliases:array": "robert-waterston:OP444-GFP", "modified_site_by_target_id": "eGFP-ceh-53-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639dH09, url:https://www.sourcebioscience.com/search?search=WRM0639dH09", "description": "wgIs444 [C09G12.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "bdc8171c-991f-4bcf-946b-a8be4cd2157a", "aliases:array": "robert-waterston:OP416-GFP", "modified_site_by_target_id": "eGFP-ceh-62-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637aE03, url:https://www.sourcebioscience.com/search?search=WRM0637aE03", "description": "wgIs416 [R06F6.6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-25-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cc190ef6-a987-4855-b227-1a3c25d95f4d", "aliases:array": "robert-waterston:OP74-GFP", "modified_site_by_target_id": "eGFP-hlh-8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063cA11, url:https://www.sourcebioscience.com/search?search=WRM063cA11", "description": "wgIs74 [hlh-8::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8371958f-72ce-4cf6-ba80-e03e7ff3b497", "aliases:array": "robert-waterston:OP207-GFP", "modified_site_by_target_id": "eGFP-ztf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628bD10, url:https://www.sourcebioscience.com/search?search=WRM0628bD10", "description": "ddIs166 [ztf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Cell. 2012 Aug 17;150(4):855-66. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Mihail Sarov RECEIVED:03-04-13 from Sarov M, MPI-CBG, Dresden, Germany", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "47f1f180-cfb9-4f3f-9919-5f7bf2649164", "aliases:array": "robert-waterston:OP466-GFP", "modified_site_by_target_id": "eGFP-nhr-162-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613cA02, url:https://www.sourcebioscience.com/search?search=WRM0613cA02", "description": "wgIs466 [nhr-162::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-28-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "df60e97d-0f32-46cc-8aaf-90c50621b169", "aliases:array": "robert-waterston:OP130-GFP", "modified_site_by_target_id": "eGFP-sma-9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cH08, url:https://www.sourcebioscience.com/search?search=WRM062cH08", "description": "wgIs130 [sma-9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fafa3bf1-c190-402b-81b9-818c75664d56", "aliases:array": "robert-waterston:OP210-GFP", "modified_site_by_target_id": "eGFP-ceh-90-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aF12, url:https://www.sourcebioscience.com/search?search=WRM0639aF12", "description": "wgIs210 [ceh-90:EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2375214c-7da1-4461-8e4a-bfa2c5dddcfb", "aliases:array": "robert-waterston:OP18-GFP", "modified_site_by_target_id": "eGFP-lin-39-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0616aE11, url:https://www.sourcebioscience.com/search?search=WRM0616aE11", "description": "wgIs18 [lin-39::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of lin-39 coding sequence of fosmid ID#WRM0616aE11 by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-22-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a29d1d55-dfd4-43ec-af1f-30c3f6605df4", "aliases:array": "robert-waterston:OP343-GFP", "modified_site_by_target_id": "eGFP-gmeb-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618aD03, url:https://www.sourcebioscience.com/search?search=WRM0618aD03", "description": "wgIs343 [C01B12.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Elicia Preston RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "39ebafbb-09af-4167-aa37-a66ea42eca1c", "aliases:array": "robert-waterston:OP211-GFP", "modified_site_by_target_id": "eGFP-nhr-245-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0625dE10, url:https://www.sourcebioscience.com/search?search=WRM0625dE10", "description": "wgIs211 [nhr-245::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a03a59fe-fa64-40ce-b834-5c77b6529d9c", "aliases:array": "robert-waterston:OP32-GFP", "modified_site_by_target_id": "eGFP-dpy-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0626aB12, url:https://www.sourcebioscience.com/search?search=WRM0626aB12", "description": "wgIs32 [dpy-27::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "16dceb02-729e-425a-8068-f06cd2122619", "aliases:array": "robert-waterston:OP238-GFP", "modified_site_by_target_id": "eGFP-T18D3.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067dC06, url:https://www.sourcebioscience.com/search?search=WRM067dC06", "description": "wgIs238 [T18D3.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2de80213-2ecf-43ce-ab90-a9e0c4233fcd", "aliases:array": "robert-waterston:OP321-GFP", "modified_site_by_target_id": "eGFP-tlp-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cA04, url:https://www.sourcebioscience.com/search?search=WRM0636cA04", "description": "wgIs321 [tlp-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Niu W, et al. Genome Res. 2011 Feb;21(2):245-54. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:01-18-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f42a3d2a-1c0a-410f-a1f9-49fdb0002711", "aliases:array": "robert-waterston:OP346-GFP", "modified_site_by_target_id": "eGFP-C30G4.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635bE05, url:https://www.sourcebioscience.com/search?search=WRM0635bE05", "description": "wgIs346 [C30G4.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Elicia Preston RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "109d2427-b7d3-4305-a6e4-c381ab0ceb75", "aliases:array": "robert-waterston:OP426-GFP", "modified_site_by_target_id": "eGFP-mbf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064dE02, url:https://www.sourcebioscience.com/search?search=WRM064dE02", "description": "wgIs426 [mbf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-01-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e359381d-0b01-4ba2-bcda-af108169314c", "aliases:array": "kevin-white:AV007_eGFP-BtbVII", "modified_site_by_target_id": "eGFP-BtbVII-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-173K05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCAGCAGTGGAGCGGGTGCAGCTCGTCATTATACCAAGACGGAATCGATA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4123241e-f675-4796-8151-f39075a4fcdc", "aliases:array": "kevin-white:AV007_eGFP-CG18011", "modified_site_by_target_id": "eGFP-CG18011-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-165J17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGAGGCGGACGATTTTATTGACGAGATACCAGATGAGGACACACAGAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "304e524f-d8f4-4fd9-9d07-c43caea9e8be", "aliases:array": "kevin-white:AV007_eGFP-CG3281", "modified_site_by_target_id": "eGFP-CG3281-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-66E05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACGAAAATCCGTTCGGAAAAAATCAGAAAATCATCAAAGCCGAATATAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c42abdb0-21b1-45c8-a29d-47f22d4178c1", "aliases:array": "kevin-white:AV007_eGFP-Usf", "modified_site_by_target_id": "eGFP-Usf-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-186C24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGTCGCTGGGATTCGGCAAGCGTGGCCTGCTGATCAGCGATTTTGATGAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "726b5107-5b3b-49d3-921b-4e29d4f2b67c", "aliases:array": "kevin-white:AV007_eGFP-Suvar2-10", "modified_site_by_target_id": "eGFP-Su(var)2-10-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-05O22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCCCGGCACAGCAGCCCCAGCAATCCGGTACGTTGGATCCCTTTTTGCAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "620d0790-1b29-44ac-bada-9b4883dd030c", "aliases:array": "kevin-white:AV007_eGFP-bcd", "modified_site_by_target_id": "eGFP-bcd-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-100D18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATCCCCATCGGAACGCCGCGGGCAACTCGCAGTTTGCCTACTGCTTCAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "840d8879-e164-407f-ac62-03e613d1a8d3", "aliases:array": "michael-snyder:eGFP_ZSCAN26_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN26-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:12427, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=12427", "description": "This construct contains an eGFP N-terminal tag to ZSCAN26 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "93e522f9-13ac-43c5-95f9-5ce8f0551e9c", "aliases:array": "michael-snyder:eGFP_ZNF195_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF195-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56630, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56630", "description": "This construct contains an eGFP N-terminal tag to ZNF195 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "beb4bef4-146e-4e63-bd4e-10c027e78b17", "aliases:array": "michael-snyder:eGFP_ZNF174_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF174-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:BC000876", "description": "This construct contains an eGFP N-terminal tag to ZNF174 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "44961207-74b5-4404-8dec-0231fba42c17", "aliases:array": "michael-snyder:eGFP_ZNF350_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF350-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:BC009921", "description": "This construct contains an eGFP N-terminal tag to ZNF350 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "c5fb3a85-2054-4d68-9724-46b001440257", "aliases:array": "robert-waterston:OP500-GFP", "modified_site_by_target_id": "eGFP-pros-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617bG01, url:https://www.sourcebioscience.com/search?search=WRM0617bG01", "description": "wgIs500 [ceh-26::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Niu W, et al. Genome Res. 2011 Feb;21(2):245-54. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:01-18-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1db22e34-f9e5-43c7-a9b1-e3abaf8e84f1", "aliases:array": "robert-waterston:OP322-GFP", "modified_site_by_target_id": "eGFP-ztf-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624aC07, url:https://www.sourcebioscience.com/search?search=WRM0624aC07", "description": "wgIs322 [ztf-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f872b3f8-6806-4ca8-8278-986b14410245", "aliases:array": "robert-waterston:OP225-GFP", "modified_site_by_target_id": "eGFP-nhr-275-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0626dE08, url:https://www.sourcebioscience.com/search?search=WRM0626dE08", "description": "wgIs225 [nhr-275::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0886a3f2-b71a-480c-8509-5d4c7b5c472f", "aliases:array": "robert-waterston:OP382-GFP", "modified_site_by_target_id": "eGFP-ztf-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0631bH07, url:https://www.sourcebioscience.com/search?search=WRM0631bH07", "description": "wgIs382 [C06E1.8::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT RECEIVED:06-13-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "bbfd41a3-a940-4275-8311-bc9e556d47c7", "aliases:array": "robert-waterston:OP64-GFP", "modified_site_by_target_id": "eGFP-hlh-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063aH05, url:https://www.sourcebioscience.com/search?search=WRM063aH05", "description": "wgIs64 [hlh-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2f8f4a79-06a3-458c-afcc-a497ab97333d", "aliases:array": "kevin-white:AV001_eGFP-Eip74EF", "modified_site_by_target_id": "eGFP-Eip74EF-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-90E15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGTTCGTGGATGTGCCCAAGGACATCATCGAGATTGACTGCAACGGTGTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a6863e5d-4efa-4e63-b2a6-dd7767af69c4", "aliases:array": "robert-waterston:OP48-GFP", "modified_site_by_target_id": "eGFP-med-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0612aG10, url:https://www.sourcebioscience.com/search?search=WRM0612aG10", "description": "wgIs48 [med-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a145ffdf-b239-4d5c-a378-b96dc1352647", "aliases:array": "robert-waterston:OP350-GFP", "modified_site_by_target_id": "eGFP-eor-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617cB05, url:https://www.sourcebioscience.com/search?search=WRM0617cB05", "description": "wgIs350 [eor-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Elicia Preston RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c10486de-fecf-4977-ab8f-17f1dfc01bd5", "aliases:array": "robert-waterston:OP344-GFP", "modified_site_by_target_id": "eGFP-efl-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0622dE10, url:https://www.sourcebioscience.com/search?search=WRM0622dE10", "description": "wgIs344 [F49E12.6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Elicia Preston RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "03f4d321-1634-485e-aa10-e145d0b02df4", "aliases:array": "robert-waterston:OP153-GFP", "modified_site_by_target_id": "eGFP-lin-22-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627dG07, url:https://www.sourcebioscience.com/search?search=WRM0627dG07", "description": "wgIs153 [lin-22::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8ba5d18e-2c93-4c09-952a-540e5aac9284", "modified_site_by_target_id": "eGFP-NFE2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-120C04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ATGGGACCATCTTCCTTGTGCCCCGGGGGACCAAGATGGAGGCCACAGAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "6e0446b1-0735-4a09-8d28-16e07d19d04d", "modified_site_by_target_id": "eGFP-STAT1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-131O22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CAGTGTAATAAACTTAACCACATTTTGTCTTTTTACAGATGAACACAGTA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "9270e6bb-6a52-47ca-8468-38b479e2a9e0", "modified_site_by_target_id": "eGFP-H2AFZ-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:invitrogen, identifier:CTD-2326L11, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CACACATCCACAAATCTCTGATTGGGAAGAAAGGACAACAGAAGACTGTC", "documents:array": "/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "3fc8a94d-e217-45c1-aaf4-0e9e14db7704", "modified_site_by_target_id": "eGFP-CEBPB-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-323M05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: ACTTGTTCAAGCAGCTGCCCGAGCCCCTGCTCGCCTCCTCCGGCCACTGC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "b05db16c-46e7-4a4a-904b-5e90c6af7654", "aliases:array": "kevin-white:ELK1", "modified_site_by_target_id": "eGFP-ELK1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2320N10, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ELK1. The last 50 bases before the stop codon of ELK1 are as follows: GCTGTTTGCTCTCCAGGTACCCCTGGGATGGCGTGAGCACTCCCCCAGCG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "039986dc-6560-449f-b629-ab115212a8bd", "modified_site_by_target_id": "eGFP-ETS2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-407C03, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CGCCCGAGGAACTGCACGCCATCCTGGGCGTCCAGCCCGACACGGAGGAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "882bc45c-7cc6-47c9-aa3b-c8497744ec25", "modified_site_by_target_id": "eGFP-SMAD4-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-301B13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: TAGACGAAGTACTTCATACCATGCCGATTGCAGACCCACAACCTTTAGAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "e2f8c0c5-5296-4c80-a019-0f935c6927f6", "modified_site_by_target_id": "eGFP-NFATC1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-420M24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of the protein of interest. The last 50 bases before the stop codon of the tagged-protein are as follows: CCATCTTTCTAACCGTAAGCCGTGAACATGAGCGCGTGGGGTGCTTTTTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/29f3829e-a942-4175-9637-1b691ff268e5/", "award": "U54HG006996"}, - {"uuid": "ff0c1caa-38f4-4947-baba-a36863ae3d89", "aliases:array": "encode:ER-Src", "modified_site_by_target_id": "SRC-human", "introduced_tags:object:array": "location:other, name: ER", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-struhl, identifier:please-contact-lab", "description": "To generate v-Src:ER, DNA sequences encoding the Schmidt Ruppin A form of v-Src (a gift from Josh Kaplan) were fused to hbER and cloned into the pWZLblast3, pBabepuro3, or pLNCX retroviral expression vectors. In the case of pWZLblast3 (a gift from Jay Morgenstern), expression of a bicistronic mRNA from the murine leukemia virus long terminal repeat containing the encephalomyocarditis virus internal ribosome entry site permits the expression of both v-Src:ER and the blasticidin drug resistance gene - from PMID:9891045.", "documents:array": "/documents/4e67bce6-c33a-42a6-806d-91114e6c2630/", "status": "released", "lab": "kevin-struhl", "submitted_by": "/users/17a8d3bf-b027-4d5f-aa49-0c8c14ada1a8/", "award": "U54HG004558"}, - {"uuid": "58caf371-8aac-4a94-bb1f-820ec1712d27", "modified_site_by_target_id": "eGFP-HMBOX1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:N/A, url:https://bacpacresources.org/cloneInfoSearch.php", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "47534ff9-7d15-4d7f-a996-f6ef75f6cee5", "aliases:array": "robert-waterston:OP396-GFP", "modified_site_by_target_id": "eGFP-hlh-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061dG04, url:https://www.sourcebioscience.com/search?search=WRM061dG04", "description": "wgIs396 [hlh-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "83b7f47a-3e38-4c91-b299-8199e72c877b", "aliases:array": "robert-waterston:OP415-GFP", "modified_site_by_target_id": "eGFP-nhr-120-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623bC08, url:https://www.sourcebioscience.com/search?search=WRM0623bC08", "description": "wgIs415 [nhr-120::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-25-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a52cef02-4a62-42ee-9527-9df02eb64a76", "aliases:array": "robert-waterston:OP178-GFP", "modified_site_by_target_id": "eGFP-skn-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aG02, url:https://www.sourcebioscience.com/search?search=WRM0641aG02", "description": "wgIs178 [skn-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of skn-1 coding sequence of fosmid ID#WRM0641aG02 by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-22-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "234d7767-0a17-4fdc-9eaa-d669b0af38ed", "aliases:array": "robert-waterston:OP219-GFP", "modified_site_by_target_id": "eGFP-attf-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065bF12, url:https://www.sourcebioscience.com/search?search=WRM065bF12", "description": "wgIs219 [C05D10.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "614029ae-f29e-4809-b7f9-8a910bc2cf24", "aliases:array": "robert-waterston:OP236-GFP", "modified_site_by_target_id": "eGFP-ztf-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062dF11, url:https://www.sourcebioscience.com/search?search=WRM062dF11", "description": "wgIs236 [ztf-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4e5fd722-5f6a-4cc8-9a1a-4d6a6daf4313", "aliases:array": "robert-waterston:OP327-GFP", "modified_site_by_target_id": "eGFP-zip-8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628bC01, url:https://www.sourcebioscience.com/search?search=WRM0628bC01", "description": "wgIs327 [F23F12.9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b15b329e-0384-4336-944d-735f2f48aad6", "aliases:array": "robert-waterston:OP380-GFP", "modified_site_by_target_id": "eGFP-pal-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636dB09, url:https://www.sourcebioscience.com/search?search=WRM0636dB09", "description": "wgIs380 [pal-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:05-09-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6246f4a6-6e27-4669-b3e5-04cc8c384cee", "aliases:array": "robert-waterston:OP427-GFP", "modified_site_by_target_id": "eGFP-mbf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064dE02, url:https://www.sourcebioscience.com/search?search=WRM064dE02", "description": "wgIs427 [mbf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "dbc9b0ab-5d92-40ad-904b-ae3261492b65", "aliases:array": "kevin-white:AV007_eGFP-bsh", "modified_site_by_target_id": "eGFP-bsh-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-186C13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACTCCAGCGACGTGGACATCGTCGGCGATGCGAAACTCTACCAGTTAACA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "362e9e06-787b-4b06-9538-fbb2f3bb59ed", "aliases:array": "kevin-white:AV007_eGFP-EcR", "modified_site_by_target_id": "eGFP-EcR-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-83K24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCAGCTTATCGGGGGAGTGGCGGTTAAGTCGGAGCACTCGACGACTGCA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1abd32a6-fd23-42b2-92ef-743b40ceb189", "aliases:array": "robert-waterston:OP400-GFP", "modified_site_by_target_id": "eGFP-lsy-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0634bD08, url:https://www.sourcebioscience.com/search?search=WRM0634bD08", "description": "wgIs400 [F47H4.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "415763c8-fb56-4d3f-b161-e3d73c8eeaff", "aliases:array": "robert-waterston:OP447-GFP", "modified_site_by_target_id": "eGFP-tag-68-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637cB01, url:https://www.sourcebioscience.com/search?search=WRM0637cB01", "description": "wgIs447 [tag-68::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2f30bf3a-eb04-47b3-b3f7-0e7db295d9bc", "aliases:array": "robert-waterston:OP503-GFP", "modified_site_by_target_id": "eGFP-pos-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638aA11, url:https://www.sourcebioscience.com/search?search=WRM0638aA11", "description": "wgIs503 [pos-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:06-18-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "193053cb-8d89-49d2-ab46-8176ffbe5b98", "aliases:array": "robert-waterston:OP82-GFP", "modified_site_by_target_id": "eGFP-ceh-16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aB09, url:https://www.sourcebioscience.com/search?search=WRM0641aB09", "description": "wgIs82 [ceh-16::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Niu W, et al. Genome Res. 2011 Feb;21(2):245-54. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:01-18-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fab305e7-9b02-4569-8afd-44b524b2a8d6", "aliases:array": "robert-waterston:OP87-GFP", "modified_site_by_target_id": "eGFP-pes-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0633dB02, url:https://www.sourcebioscience.com/search?search=WRM0633dB02", "description": "wgIs87 [pes-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c88a6eb9-f930-4c0a-8ae3-e1c341b5e0e2", "aliases:array": "kevin-white:AV007_eGFP-E(var)3-9", "modified_site_by_target_id": "eGFP-E(var)3-9-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-77D16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCTTTGACTTAAAAATTAAGCTTAACAGACATCTTAAGCAGCATAAGGGT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2cb05a9a-ac9b-421b-bb4f-69727bc1d10c", "aliases:array": "kevin-white:AV001_eGFP-grn", "modified_site_by_target_id": "eGFP-grn-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-94H18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GACCTTTCTCCTCCTTCCTCCTTCAGGGCACCTGGCGCACTGACTACACG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9cab7ff8-dfd4-4d82-8478-90da6590eff2", "aliases:array": "kevin-white:AV007_eGFP-bab2", "modified_site_by_target_id": "eGFP-bab2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-26B15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGAAGATCAAGCTGGAGCAGCAGCATGCCACCGAACTGCCGCACGAGGAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ada58c02-3a5c-45ed-82e2-49365e0cb203", "aliases:array": "kevin-white:AV007_eGFP-br-RE", "modified_site_by_target_id": "eGFP-br-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-84P16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCTATCACCAGCAGCACCAGCAGCAGCAGCTCAATCACCACTCCTCTTCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ddb528b5-5f54-4665-b086-5822e6e63e27", "aliases:array": "kevin-white:AV001_eGFP-lola", "modified_site_by_target_id": "eGFP-lola-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64B21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGAAGCACAAACACAATCTCGTGCTGCATATGCGCACCCACCAACATCGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d081d803-71f6-43a7-be2a-c76597f15034", "aliases:array": "michael-snyder:eGFP_BCL6B_FRT_construct", "modified_site_by_target_id": "eGFP-BCL6B-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079961, url:https://plasmid.med.harvard.edu/PLASMID/GeneSearch.xhtml", "description": "This construct contains an eGFP N-terminal tag to BCL6B under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "6b916921-d8c4-45ae-9d96-1524d38b9626", "aliases:array": "michael-snyder:eGFP_ZNF544_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF544-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:14285, url:http://horfdb.dfci.harvard.edu/hv5/hv7/hv8/hv7/index.php?page=getresults&by=detail&qury=14285", "description": "This construct contains an eGFP N-terminal tag to ZNF544 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "65263460-3b54-42bf-a2ca-5758e06fd16e", "aliases:array": "valerie-reinke:YL418-GFP", "modified_site_by_target_id": "eGFP-efl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:ges-1-celegans;location:C-terminal, name:FLAG, promoter_used:ges-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "This construct contains C-terminal GFP and FLAG tags to EFL-1 under the control of an intestine-specific promoter from GES-1.", "status": "released", "lab": "valerie-reinke", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004267"}, - {"uuid": "802afd3a-4c4b-4eb5-9501-63e4fed4f868", "aliases:array": "cgc:OP427-GFP", "modified_site_by_target_id": "eGFP-mbf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs427 [mbf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "d44b9977-8fe8-43a5-907d-afa551adf5c5", "aliases:array": "cgc:OP186-GFP", "modified_site_by_target_id": "eGFP-unc-39-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs186 [unc-39::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "07104069-ece5-403c-a8a9-e42491a29e48", "aliases:array": "cgc:OP82-GFP", "modified_site_by_target_id": "eGFP-ceh-16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs82 [ceh-16::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "04ce52ad-0eb1-47ee-b80a-6ea2b6fccee8", "aliases:array": "modencode:NC1639-GFP", "modified_site_by_target_id": "eGFP-unc-55-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "830f4cf2-c45b-4e28-b168-816f07d34fdc", "aliases:array": "cgc:OP236-GFP", "modified_site_by_target_id": "eGFP-ztf-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs236 [ztf-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "321185bb-136a-4926-a3c7-2876e0bfbe4f", "aliases:array": "modencode:OP600-GFP", "modified_site_by_target_id": "eGFP-unc-62-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "7378270b-252e-4fe1-8b07-257e8e62a08a", "aliases:array": "modencode:OP602-GFP", "modified_site_by_target_id": "eGFP-unc-62-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "9d4591c2-9a5c-4f7a-ad0b-6d149cd5c73b", "aliases:array": "robert-waterston:OP186-GFP", "modified_site_by_target_id": "eGFP-unc-39-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cG07, url:https://www.sourcebioscience.com/search?search=WRM0636cG07", "description": "wgIs186 [unc-39::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "921e452d-c080-46a2-9755-cb876c51a3ae", "aliases:array": "robert-waterston:OP411-GFP", "modified_site_by_target_id": "eGFP-nhr-90-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628aD10, url:https://www.sourcebioscience.com/search?search=WRM0628aD10", "description": "wgIs411 [nhr-90::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-25-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "37a49e2d-197b-4371-8f2f-61073843386c", "aliases:array": "robert-waterston:OP505-GFP", "modified_site_by_target_id": "eGFP-nhr-130-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638dA09, url:https://www.sourcebioscience.com/search?search=WRM0638dA09", "description": "wgIs505 [nhr-130::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-16-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "498720a1-2680-4760-be4a-4d09bc4d2d2b", "aliases:array": "robert-waterston:OP492-GFP", "modified_site_by_target_id": "eGFP-dnj-17-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613bA03, url:https://www.sourcebioscience.com/search?search=WRM0613bA03", "description": "wgIs492 [dnj-17::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:02-21-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e210699e-38f3-4ec7-8321-ba98dbe0dc7c", "aliases:array": "robert-waterston:OP135-GFP", "modified_site_by_target_id": "eGFP-ceh-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613cC12, url:https://www.sourcebioscience.com/search?search=WRM0613cC12", "description": "wgIs135 [ceh-27::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-03-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "330194b6-d548-431d-850d-32e15eb0644b", "aliases:array": "robert-waterston:OP366-GFP", "modified_site_by_target_id": "eGFP-nhr-100-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621cD11, url:https://www.sourcebioscience.com/search?search=WRM0621cD11", "description": "wgIs366 [nhr-100::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:03-08-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a3188dfd-f696-4b15-867a-869c2ede0d67", "aliases:array": "robert-waterston:OP86-GFP", "modified_site_by_target_id": "eGFP-peb-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621aA11, url:https://www.sourcebioscience.com/search?search=WRM0621aA11", "description": "wgIs86 [peb-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f02b8f86-9e76-4e03-a408-7e0eeb99b31b", "aliases:array": "robert-waterston:OP355-GFP", "modified_site_by_target_id": "eGFP-ZK337.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0625bD01, url:https://www.sourcebioscience.com/search?search=WRM0625bD01", "description": "wgIs355 [ZK337.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-08-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1ce220a0-84e0-4b25-bc68-7bc41414b017", "aliases:array": "robert-waterston:OP157-GFP", "modified_site_by_target_id": "eGFP-ceh-24-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0632aB09, url:https://www.sourcebioscience.com/search?search=WRM0632aB09", "description": "wgIs157 [ceh-24::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fe85485a-28c8-43f8-a718-4151bc99a07e", "aliases:array": "robert-waterston:OP179-GFP", "modified_site_by_target_id": "eGFP-snpc-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cF05, url:https://www.sourcebioscience.com/search?search=WRM062cF05", "description": "wgIs179 [gei-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-22-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "471186c3-e9df-44f2-9a03-d1e76bd079ca", "modified_site_by_target_id": "eGFP-BTF3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-196J14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of BTF3. The last 50 bases before the stop codon of BTF3 are as follows: TCCTAGATCTTGTGGAGAATTTTGATGAGGCTTCCAAGAATGAGGCAAAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "0c5f8bd4-aad2-4b67-ae19-bf0f2504b5f4", "modified_site_by_target_id": "eGFP-DIDO1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-45K20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of DIDO1. The last 50 bases before the stop codon of DIDO1 are as follows: GGATAGCCATCCCCTGGGCCTGTCCAGGACTGGGAGTTGCAGCTTTGTGT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "25a41b60-922e-4017-886f-fec8ed51fd97", "modified_site_by_target_id": "eGFP-DR1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-273K16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of DR1. The last 50 bases before the stop codon of DR1 are as follows: CATCTAATCAGGCGGGATCTTCTCAGGATGAAGAAGATGATGATGATATC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "5f861078-26a5-43c6-a03a-290b06e8d8ba", "modified_site_by_target_id": "eGFP-FOXA2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-463H5, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of FOXA2. The last 50 bases before the stop codon of FOXA2 are as follows: ATACCTCCTACTACCAGGGGGTGTACTCCCGGCCCATTATGAACTCCTCT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "c3f43a68-87ef-49fa-b297-c091e4c94a89", "modified_site_by_target_id": "eGFP-KLF13-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-151A19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of KLF13. The last 50 bases before the stop codon of KLF13 are as follows: ACAGCCGCTCCGACGCCAGCAGCCCCACCATCAGCCCGGCCAGCTCGCCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "3f6dc343-8ffb-4c40-beb5-e890fb68fd9f", "modified_site_by_target_id": "eGFP-BACH1-human", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2083K20, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a N-terminal Fluorescent Localization and Affinity Purification (NFLAP) tag at the N-terminal of BACH1. The last 50 bases before the stop codon of BACH1 are as follows: AATTAGAAGCATGCTTTCCACTGAACTTCCCGACAACATTTGTTATGCAGA", "documents:array": "/documents/248a4510-055a-447a-9171-4eac079f0b14/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "78e9d785-d105-45b8-ad84-99dc4b37371d", "modified_site_by_target_id": "eGFP-ELF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-429P17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ELF1. The last 50 bases before the stop codon of ELF1 are as follows: CTTCTCAGGTAGCTATGAAACAAAACGAACTGCTGGAACCCAACTCTTTT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "05ed45c4-f9ab-4b7f-9978-ff9d34d6ed1a", "modified_site_by_target_id": "eGFP-MCM3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-14F4, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MCM3. The last 50 bases before the stop codon of MCM3 are as follows: TGCAGGATGACAATCAGGTCATGGTGTCTGAGGGCATCATCTTCCTCATC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "6c9e4c8d-137f-4c5f-a114-ee2de03e68f8", "modified_site_by_target_id": "eGFP-BAP1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-335H8, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of BAP1. The last 50 bases before the stop codon of BAP1 are as follows: GGAAGCCTGACCGGCGGAAACGCTCTCGCCCCTACAAGGCCAAGCGCCAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "c715b24f-ebbd-446b-9791-ce1c5c1d9d92", "modified_site_by_target_id": "eGFP-TAF9-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-241G9, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TAF9. The last 50 bases before the stop codon of TAF9 are as follows: TAGATCAGATCTTGAAATGGATTGAGCAGTGGATCAAAGATCATAACTCT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "3d6cce5d-4f5d-4c0a-a828-a88ca0083139", "aliases:array": "kevin-white:AV007_eGFP-CG3065", "modified_site_by_target_id": "eGFP-CG3065-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-116F23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCGGAGCGACCACTTGAAAAAGCATCAGCAGACGCATTTGAAGATACGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d4a1f847-1a0e-4f16-8015-89202748f319", "aliases:array": "kevin-white:AV007_eGFP-CG4318", "modified_site_by_target_id": "eGFP-CG4318-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-186E11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCTTCAACAGAAACTCTGCCCTTAAGAACCACGAGACCATGCACCATAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6af766c3-082d-483b-a686-1a5495bb49a6", "aliases:array": "kevin-white:AV007_eGFP-CG5245", "modified_site_by_target_id": "eGFP-CG5245-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-118B02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCAGTCTTGGGCGACACCTGCGGCGAACCCTATGCGGCACTAAATCGGAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9c4b807e-3d4d-4cd6-9911-5536c38169dd", "aliases:array": "kevin-white:AV007_eGFP-CG4820", "modified_site_by_target_id": "eGFP-CG4820-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-132P16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAAACGAACGAAGAAAGAAAAGAAAATCAAATCCAACCGCCATTAATTCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a821a351-f573-415c-972d-6100c2039271", "aliases:array": "kevin-white:AV007_eGFP-CG1602", "modified_site_by_target_id": "eGFP-CG1602-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-179O13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TTCTTCGTAATAATTCACAAAAGGGTAAAGATGCTGTGGATGCAGAGAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "93408e15-e9e0-4677-a470-c7ce87fe8cba", "aliases:array": "kevin-white:AV001_eGFP-da", "modified_site_by_target_id": "eGFP-da-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-52O18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCAGCAGCAGCAGCAACAATCACAGCTCGGACACGCCCAGCTTCCGCAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "47b3df1c-704b-4f0d-a6f6-1d2bbad6023b", "aliases:array": "kevin-white:AV007_eGFP-CG33557", "modified_site_by_target_id": "eGFP-CG33557-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-139K18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAGGAATAACTAGACGTATCAGTATCTGCACCTTTTGCCTGAAAACCAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "643bca4b-7dc9-484b-97dc-fc3895665e63", "aliases:array": "kevin-white:AV007_eGFP-da", "modified_site_by_target_id": "eGFP-da-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-52O18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCAGCAGCAGCAGCAACAATCACAGCTCGGACACGCCCAGCTTCCGCAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "81c01880-e9d3-497b-842f-9cdcfcfcd275", "aliases:array": "kevin-white:AV007_eGFP-toe", "modified_site_by_target_id": "eGFP-toe-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-32D04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGATGAGCAGGAGGAGGAGGAGGTTATCAATGTGGAGCACGACGCCGAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7c81be11-fa02-43c3-bd60-d5f1152b40bf", "modified_site_by_target_id": "eGFP-Stat92E-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH321-73F24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH321-73F24 has been chosen to target the gene Signal-transducer and activator of transcription protein at 92E. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of Att sites. Recombinant individuals were screened based on mini-white presence. The line has been stabilized as homozygous for the transgene.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "af9e33dd-d245-444a-bb0f-92e4592ceb22", "aliases:array": "kevin-white:AV007_eGFP-grh", "modified_site_by_target_id": "eGFP-grh-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-38O20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGATCGAGGACGACCTGTACGATGTGACGCTCACGGAGCTGCCCAATCAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8acffe78-7408-419c-855a-4a338fa25d73", "aliases:array": "kevin-white:Koens_tag_eGFP-Hr96", "modified_site_by_target_id": "eGFP-Hr96-dmelanogaster", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-155C21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (Koens_tag) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CATCCCAGGTGGAGCCCTTGCTGCGTGAAATATTCGATTTGAAAAATCAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/8dba6b13-7ac4-40e4-a686-ce35c0a83e02/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2f2f4e53-61db-4d5d-a84d-672afc79202a", "aliases:array": "kevin-white:AV007_eGFP-NK7.1", "modified_site_by_target_id": "eGFP-NK7.1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-25D03, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCATAGAAGCTCACGATTCCCAGGATCAGGATGTCGCCATGCGGGAGATT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a364e469-e476-41d2-9bfb-b45a2b8a9aad", "modified_site_by_target_id": "eGFP-Dfd-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH322-35A16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "(P)acman BAC number CH322 35A16 has been chosen to target the gene Deformed. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of Att sites. Recombinant individuals were screened based on mini-white presence. The line has been stabilized as homozygous for the transgene.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "976fe851-0491-498f-ac32-437e9b74c343", "aliases:array": "kevin-white:AV007_eGFP-pnt", "modified_site_by_target_id": "eGFP-pnt-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-39L02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCTGATAGCTTAATCAGTAACTCTTATTTTATTAGTTATAGGTGGAAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "aa5bce93-a147-41cd-aa3a-1393722e26de", "aliases:array": "kevin-white:AV007_eGFP-CG32264", "modified_site_by_target_id": "eGFP-CG32264-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-03J01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCTAAAAACAAAAACTAATCAAAACTTTCTCTTGCAGATTCCATAGGCCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1e235dad-1ea0-4759-a2d3-91c0191470a1", "aliases:array": "kevin-white:AV007_eGFP-dl-RD", "modified_site_by_target_id": "eGFP-dl-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-10D24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. This tags the D isoform. The 50 bases preceding the tag are as follows: TGCGCCTCAATTCGGAAGATCTGCAGATATCGAACCTGTCCATATCCACG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8db7c1ea-57db-4252-b446-87e34bda27fd", "aliases:array": "kevin-white:AV007_eGFP-zfh2", "modified_site_by_target_id": "eGFP-zfh2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-43E17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCTGATAGCTTAATCAGTAACTCTTATTTTATTAGTTATAGGTGGAAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "68f10cca-bb42-4919-9277-6eb5d8d4e006", "aliases:array": "robert-waterston:OP78-GFP", "modified_site_by_target_id": "eGFP-fkh-6-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0634bG09, url:https://www.sourcebioscience.com/search?search=WRM0634bG09", "description": "wgIs78(fkh-6::TY1 EGFP 3xFLAG(P000007_C05); unc-119(+));unc-119(ed3)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "07e506e2-b079-4a25-8ae9-f1f3d940fcd6", "aliases:array": "robert-waterston:OP312-GFP", "modified_site_by_target_id": "eGFP-lir-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637aB05, url:https://www.sourcebioscience.com/search?search=WRM0637aB05", "description": "wgIs312 [lir-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e7c7e8af-19d1-49b7-b39f-81261094270c", "aliases:array": "cgc:OP357-GFP", "modified_site_by_target_id": "eGFP-nhr-84-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs357 [nhr-84::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "49436268-6dba-467f-a12f-045e10aa2e9a", "aliases:array": "cgc:OP416-GFP", "modified_site_by_target_id": "eGFP-ceh-62-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs416 [R06F6.6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "2636d4f0-6629-435b-94c2-df2c6768116b", "aliases:array": "michael-snyder:eGFP_TSC22D2_CRISPR_construct", "modified_site_by_target_id": "eGFP-TSC22D2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the TSC22D2 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "5266ca48-fefd-4146-8d54-159bd0eaa8e2", "aliases:array": "michael-snyder:eGFP_MYNN_CRISPR_construct", "modified_site_by_target_id": "eGFP-MYNN-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the MYNN gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "44eea509-e4e7-4821-8af2-e08134a009b4", "aliases:array": "michael-snyder:eGFP_MXD1_CRISPR_construct", "modified_site_by_target_id": "eGFP-MXD1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the MXD1 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "e6b36555-3f9a-4808-a911-147dbb0bdf15", "aliases:array": "michael-snyder:eGFP_TSC22D1_CRISPR_construct", "modified_site_by_target_id": "eGFP-TSC22D1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the TSC22D1 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "0b7fa5f2-acef-4e3e-8f0f-83e22336b6f7", "modified_site_by_target_id": "eGFP-MAX-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-357F20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MAX-S. The last 50 bases before the stop codon of MAX-S are as follows: CTGAGCCTGAAGAGCCCCAAAGCAGGAAGAAGCTCCGGATGGAGGCCAGC", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "80343309-4a58-4f1e-93e5-c6e98d6e1472", "modified_site_by_target_id": "eGFP-MCM8-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-220O8, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MCM8. The last 50 bases before the stop codon of MCM8 are as follows: AGGGTTACCTCTTGAAAAAAGGCCCAAAAGTTTACCAGCTTCAAACTATG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "b48e7b03-5946-4156-81c1-eccc2a5c091e", "modified_site_by_target_id": "eGFP-POLR1E-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-276N6, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of POLR1E. The last 50 bases before the stop codon of POLR1E are as follows: TGCCTCCAGCCCAGACCTCAGACCGCCTGGCAAAGCGGAGGAAGATTACC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "ab10a4d8-8b73-4cd1-9850-3ad07499e561", "modified_site_by_target_id": "eGFP-RARA-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2343G9, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of RARA. The last 50 bases before the stop codon of RARA are as follows: CCAGCCTCAGCCCCAGCTCCAACAGAAGCAGCCCGGCCACCCACTCCCCG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "51a54cd7-ec0a-4c94-8376-a5c14f5cb24a", "aliases:array": "robert-waterston:OP389-GFP", "modified_site_by_target_id": "eGFP-ceh-22-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0611aD07, url:https://www.sourcebioscience.com/search?search=WRM0611aD07", "description": "wgIs389 [ceh-22::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8ac3687e-47eb-44ea-8e03-098448ef709f", "aliases:array": "robert-waterston:OP213-GFP", "modified_site_by_target_id": "eGFP-F57C9.4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623aC05, url:https://www.sourcebioscience.com/search?search=WRM0623aC05", "description": "ddEx59 [F57C9.4::TY1::EGFP::3xFLAG + unc-119(+)]. Pick wild-type to maintain array. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Cell. 2012 Aug 17;150(4):855-66. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Mihail Sarov RECEIVED:12-09-13 from Sarov M, MPI-CBG, Dresden, Germany", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "260311dd-a89f-453d-8b81-e28d6a6bc9e5", "aliases:array": "robert-waterston:OP241-GFP", "modified_site_by_target_id": "eGFP-ceh-28-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638cD08, url:https://www.sourcebioscience.com/search?search=WRM0638cD08", "description": "wgIs241 [ceh-28::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c3b5578b-9be3-49a1-9dde-4ca440e1976e", "aliases:array": "robert-waterston:OP43-GFP", "modified_site_by_target_id": "eGFP-nhr-23-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0633bB08, url:https://www.sourcebioscience.com/search?search=WRM0633bB08", "description": "wgIs43 [nhr-23::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "12529491-b31e-489e-8bed-99b7ffa74440", "aliases:array": "robert-waterston:OP465-GFP", "modified_site_by_target_id": "eGFP-nhr-179-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067cC10, url:https://www.sourcebioscience.com/search?search=WRM067cC10", "description": "wgIs465 [nhr-179::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-14-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "452e8916-c251-4f0e-9e54-2e3b1afc91ba", "aliases:array": "robert-waterston:OP468-GFP", "modified_site_by_target_id": "eGFP-aly-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cD11, url:https://www.sourcebioscience.com/search?search=WRM062cD11", "description": "wgIs468 [aly-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-28-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "999ec595-f825-4ea1-8aab-e305d64897c9", "aliases:array": "robert-waterston:OP51-GFP", "modified_site_by_target_id": "eGFP-lin-13-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628dG03, url:https://www.sourcebioscience.com/search?search=WRM0628dG03", "description": "wgIs51 [lin-13::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of lin-13 coding sequence of fosmid ID#WRM0628dG03 by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-22-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "dc86c492-945a-42c6-80dd-9f4f17f719df", "aliases:array": "robert-waterston:OP68-GFP", "modified_site_by_target_id": "eGFP-ttx-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064cD04, url:https://www.sourcebioscience.com/search?search=WRM064cD04", "description": "wgIs68 [ttx-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ec33f816-431a-4aa8-b121-7f37a1301c99", "aliases:array": "robert-waterston:OP237-GFP", "modified_site_by_target_id": "eGFP-rabs-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cB05, url:https://www.sourcebioscience.com/search?search=WRM062cB05", "description": "wgIs237 [rabs-5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-21-02 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "76027d4b-5950-4a6b-8abc-9be622bfe8db", "aliases:array": "kevin-white:AV007_eGFP-CG31388", "modified_site_by_target_id": "eGFP-CG31388-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-119O03, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CTAAAGCTGCTGCATCCCCCAATTCCCGTGGAAGAAATTGTTCAACGAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f67d0ad4-2448-444a-a861-58baab3fdbbe", "modified_site_by_target_id": "eGFP-MYBL2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-172D23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MYBL2. The last 50 bases before the stop codon of MYBL2 are as follows: TCCTGGGCCGCCTGAAGCCCAGCCACACATCTCGGACCCTCATCTTGTCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "7d0477ed-eb75-4863-9f69-61967f01a815", "modified_site_by_target_id": "eGFP-BUD31-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-436O3, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of BUD31. The last 50 bases before the stop codon of BUD31 are as follows: AGGGCCGCATCATCGAGTGCACACACTGTGGCTGTCGTGGCTGCTCTGGC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "689b89dc-586f-4ded-8c14-22003223c6d5", "modified_site_by_target_id": "eGFP-JUND-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2100I3, url:http://clones.lifetechnologies.com/cloneinfo.php?clone=bacpac", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of JUND. The last 50 bases before the stop codon of JUND are as follows: ACGTCAACAGCGGCTGCCAGCTGCTGCCCCAGCACCAGGTGCCCGCGTAC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "19911934-beb8-49ac-8dc3-ecd2b9ceeba2", "modified_site_by_target_id": "eGFP-STAT1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-131O22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of STAT1. The last 50 bases before the stop codon of STAT1 are as follows: CAGTGTAATAAACTTAACCACATTTTGTCTTTTTACAGATGAACACAGTA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "57deda18-611a-4a01-a0a7-d25017eef740", "modified_site_by_target_id": "eGFP-CDKN1B-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "284c0764-cfec-41ee-9e50-2413e24bf89b", "modified_site_by_target_id": "eGFP-E2F1-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "4e0bb583-d7b2-42cc-88d2-ca0769ee3458", "modified_site_by_target_id": "eGFP-JUND-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "ad198468-214d-4ba1-a641-7b5122721dfe", "aliases:array": "kevin-white:AV007_eGFP-dac", "modified_site_by_target_id": "eGFP-dac-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-63B12, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCGACCGACGGCATACTACAAGAACTCCGTGCTCTTCGGCAGCGCCAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "19d66926-ccd3-4e23-b363-34484d9a7ace", "aliases:array": "kevin-white:AV007_eGFP-Hr39-RC", "modified_site_by_target_id": "eGFP-Hr39-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-74G02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCCTATCGCAGGCCAAATCAAATGGCTTGCAGGTAAGTTTATGCGAACTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d1e38918-8fc4-4bf8-a0d3-18c52b93b2e3", "aliases:array": "kevin-white:LAP_eGFP-en", "modified_site_by_target_id": "eGFP-en-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-92I14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGACCAAGGAGGAGGAGGAGCTCGAGATGCGCATGAACGGGCAGATCCCC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "274e0193-33a8-40b2-894c-c12dc1ee37af", "modified_site_by_target_id": "eGFP-Hr78-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH321-64B11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH321-64B11 has been chosen to target the gene Hormone receptor-like in 78. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of Att sites. Recombinant individuals were screened based on mini-white presence. The line has been stabilized as homozygous for the transgene.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "e58d1dc0-fc31-41d6-abee-e7d1f6f33c2e", "aliases:array": "kevin-white:AV007_eGFP-br-RJ", "modified_site_by_target_id": "eGFP-br-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-84P16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAATGGAGATGAAGGACATTAAGCTCTATAACCAGTTCAACTCGTCGATC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "93d2cd45-4c9b-4fb7-a7fd-bc5801076870", "aliases:array": "kevin-white:AV001_eGFP-gcm2", "modified_site_by_target_id": "eGFP-gcm2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-09J02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACTTGCACCACCCAGCAGCAGCTACAGGCCTAGCCCCATCGGTCACCCAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d5bb7c0b-0ae9-47b4-a63a-1b888d8bb78d", "aliases:array": "kevin-white:AV007_eGFP-OdsH", "modified_site_by_target_id": "eGFP-OdsH-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-45P14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATAAGACCCTCTACAATTCGCCCTTCAGCATCGAATCCCTGTTGGGATCG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "29f9e112-6960-4479-9378-0ea893aadcd9", "aliases:array": "kevin-white:AV007_eGFP-Rel", "modified_site_by_target_id": "eGFP-Rel-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-131G11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCCTGCAGGCAGTGGATCCACAGGCTTACGCCCTACTGGTTAACCCAACT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b59db63a-e916-4d4b-b95d-7160b0a03c19", "aliases:array": "kevin-white:AV007_eGFP-shn", "modified_site_by_target_id": "eGFP-shn-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-61J22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCCTGTTCCCGTGGCCGTTCCCGTGGCTGCTTCAGCAGCGGCAAGCAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1ca5b57a-d0f3-4af0-83d2-5fe2e1d30b47", "aliases:array": "kevin-white:AV001_eGFP-lola-RD", "modified_site_by_target_id": "eGFP-lola-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64B21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCTCAAGGAGCGATTGATGAACACTATGCCATTTGCTTATAACAACAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5305e8ec-d818-46a3-b0bf-bf73a69405a5", "modified_site_by_target_id": "eGFP-Hr46-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH321-23L02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH321-23L02 has been chosen to target the gene Hormone receptor-like in 46. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of Att sites. Recombinant individuals were screened based on mini-white presence.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "ecaa88f8-b087-4574-a955-8c0e019c2232", "aliases:array": "kevin-white:AV007_eGFP-Elba2", "modified_site_by_target_id": "eGFP-Elba2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-187B24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACAAGAGGCGGGCCAAGAAGGCCCAGAAGGTCGCCATCAAGGAGGAGTAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8d37dd08-c4d5-4aa0-89a9-bffad0213a8e", "aliases:array": "kevin-white:AV001_eGFP-Dad", "modified_site_by_target_id": "eGFP-Dad-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-42M23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATATCATGGGCTGCCCCTGCTGGCTGGAGGTTCACTTTAGTCATCTGCGG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4e73363e-efb5-4d63-bd6f-eecd0d485fb2", "aliases:array": "robert-waterston:OP529-GFP", "modified_site_by_target_id": "eGFP-F10B5.3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062dC03, url:https://www.sourcebioscience.com/search?search=WRM062dC03", "description": "wgIs529(F10B5.3::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0093_3E06);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d1ed47e7-5afe-4bf0-86e0-b658cb19f087", "aliases:array": "robert-waterston:OP516-GFP", "modified_site_by_target_id": "eGFP-ceh-32-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637dA10, url:https://www.sourcebioscience.com/search?search=WRM0637dA10", "description": "wgIs516(ceh-32::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0063_1C01);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ed3ac4c9-40d2-4994-b5a1-479facf7a81e", "aliases:array": "robert-waterston:OP524-GFP", "modified_site_by_target_id": "eGFP-ceh-34-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624aB05, url:https://www.sourcebioscience.com/search?search=WRM0624aB05", "description": "wgIs524(ceh-34::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0089_1H04);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "30778ed6-8106-442e-a629-1b8e21c1ff7e", "aliases:array": "kevin-white:AV007_eGFP-her", "modified_site_by_target_id": "eGFP-her-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-164G17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCAGATAATCAAGGACATGTACTCTAAACAGGGCACGTTAAGTCAAACT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "90af972c-dc05-4d85-ab24-afff53298ded", "modified_site_by_target_id": "eGFP-ORC6-human", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-424K12", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a N-terminal Fluorescent Localization and Affinity Purification (NFLAP) tag at the N-terminal of ORC6-L. The last 50 bases before the stop codon of ORC6-L are as follows: TTTCGTTGACCCGCGGCGTTCACGGGAATTGTTCGCTTTAGTGCCGGCGCC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/248a4510-055a-447a-9171-4eac079f0b14/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "57a5125a-752a-435d-9b33-f57df9b83130", "modified_site_by_target_id": "eGFP-SMAD3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-187G10", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of SMAD3. The last 50 bases before the stop codon of SMAD3 are as follows: AGGTCCTCACCCAGATGGGCTCCCCAAGCATCCGCTGTTCCAGTGTGTCT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "f50435a0-34a7-4c4b-b2d7-9a2b23801bd1", "aliases:array": "kevin-white:AV007_eGFP-CG16863", "modified_site_by_target_id": "eGFP-CG16863-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-155A07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGAAAACATACTCTTCATGGCGGAAATTCCAACGAAGGAGTGGCAGTTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "599e4828-7cbe-41c3-b371-cd6d8149cc93", "aliases:array": "kevin-white:AV007_eGFP-CG9876", "modified_site_by_target_id": "eGFP-CG9876-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-166E11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCAACTATTGTGTGGCCGCCAATTATGCGAAGAACGCCTATCCGCCGCTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "973052c8-3627-4543-a071-fad24f0b8022", "aliases:array": "kevin-white:AV007_eGFP-Mes4", "modified_site_by_target_id": "eGFP-Mes4-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-81K09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCATTTCTGCTGTGGACAGTTTGCTATTCCTTGATGGAGCCATGAACTTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b393f41b-8bdd-44e9-be7c-fb14c9f25ab7", "aliases:array": "kevin-white:AV007_eGFP-Sry-delta", "modified_site_by_target_id": "eGFP-Sry-%CE%B4-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-41A22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of Sry-δ, targeting the following isoforms: Sry-δ-RA. The 50 bases preceding the tag are as follows: AGAAGGAGCTCGAACACCACTTGCAATTTGATCACGACGTGGTCTTGAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d40647f3-0a22-4244-89b3-7179f4701cd7", "modified_site_by_target_id": "eGFP-NR2C2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-1051P22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NR2C2. The last 50 bases before the stop codon of NR2C2 are as follows: TCAAGATGGAGACAGCAGAGTATAATGGCCAGATCACCGGAGCCAGTCTA", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "12528062-f42d-4a7f-9688-d6bf031c0108", "modified_site_by_target_id": "eGFP-GTF2B-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-239N15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of GTF2B . The last 50 bases before the stop codon of GTF2B are as follows: TTCCTACAGACTTCAAATTTGACACCCCAGTGGACAAACTACCACAGCTA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "4df06b1d-7882-462d-95be-bfd625e7e4a5", "modified_site_by_target_id": "eGFP-ZNHIT3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-428K15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNHIT3 . The last 50 bases before the stop codon of ZNHIT3 are as follows: TTGCAGACTGCTGTTTAGGAATTGTGGAGCCATCCCAGAATGAGGAGTCT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "1abd497e-fbb9-4e11-8eaa-99869ed65e42", "modified_site_by_target_id": "eGFP-MECP2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-8F14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MECP2. The last 50 bases before the stop codon of MECP2 are as follows: ACAGAGAGGAGCCTGTGGACAGCCGGACGCCCGTGACCGAGAGAGTTAGC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "077bc15d-e8e3-4948-8eef-e7ef4fe0aaed", "modified_site_by_target_id": "eGFP-ETS1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-144O15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ETS1. The last 50 bases before the stop codon of ETS1 are as follows: CCCCTGAGGAGCTGCACGCCATGCTGGACGTCAAGCCAGATGCCGACGAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "52adfd72-d4c6-4ec5-98f6-265eb9760c78", "modified_site_by_target_id": "eGFP-NFE2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-120C4, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NFE2. The last 50 bases before the stop codon of NFE2 are as follows: ATGGGACCATCTTCCTTGTGCCCCGGGGGACCAAGATGGAGGCCACAGAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "aa56ac66-c74a-4c99-b048-f0aa76eb98e5", "modified_site_by_target_id": "eGFP-BACH1-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "136b66c9-81b8-4288-9daf-fabf6c407d53", "modified_site_by_target_id": "eGFP-ESR1-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "c446bbe4-7752-4e22-994e-427fca60dc52", "modified_site_by_target_id": "eGFP-ILF3-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "c4ce437e-5649-4e82-a46b-6b9f7b98f815", "modified_site_by_target_id": "eGFP-SMARCA2-human", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "Recombineering is used for tagging cassettes at either the N or C terminus of the protein. The N-terminal cassette has a dual eukaryotic-prokaryotic promoter (PGK-gb2) driving a neomycin-kanamycin resistance gene within an artificial intron inside the tag coding sequence. The selection cassette is flanked by two loxP sites and can be permanently removed by Cre Recombinase-mediated excision. The C-terminal cassette contains the sequence encoding the tag followed by an internal ribosome entry site (IRES) in front of the neomycin resistance gene. In addition, a short bacterial promoter (Gb3) drives the expression of the neomycin-kanamycin resistance gene in E. coli.", "status": "released", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U54HG004558"}, - {"uuid": "df2fde92-1afc-4a63-aa47-074e03c116a0", "aliases:array": "kevin-white:AV007_eGFP-cato", "modified_site_by_target_id": "eGFP-cato-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-162G07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCTTCGGCGACAGCGATAGTGGATTTGGATTGAGCGGAGGATCCTTGTCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "89440dce-47d7-4874-900e-fee9b0d30428", "aliases:array": "kevin-white:AV007_eGFP-CG32006", "modified_site_by_target_id": "eGFP-CG32006-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-126N11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GAAACGACGATATCTTAGAAAACCTTCTTGATGTTTGTGTTACGCCTTAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fc92e249-3a6d-44d9-81ca-e1a76301c839", "aliases:array": "kevin-white:AV007_eGFP-CG10631", "modified_site_by_target_id": "eGFP-CG10631-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-106G17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCAATCGGATCAAGGACGAGCCGCTGGACAACGACGACATGCTGCTGGTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "60ae3f32-4bc6-4f8e-8119-e185d72bd6ef", "aliases:array": "kevin-white:AV007_eGFP-CG15479", "modified_site_by_target_id": "eGFP-CG15479-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-100E05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GTAACTTTAGCATCGACTACCTGATAGGTGGTATTAAACAGGAGCATGCT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c8c0a9b3-4bf1-49ff-94f8-378a139b8351", "aliases:array": "kevin-white:AV007_eGFP-CG9139", "modified_site_by_target_id": "eGFP-CG9139-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-07A14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACACGGGAGACTTTAGTTCTCTGGGACAGGACGGCGCGGATGCTCCCAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4918bcbd-9163-4ab4-a83a-4edfab4ecf1c", "aliases:array": "kevin-white:AV007_eGFP-E(z)", "modified_site_by_target_id": "eGFP-E(z)-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-19A19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCACGGAGCAGCTGAAGTTCGTGGGCATAGAGCGTGAAATGGAAATTGTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2f3639a5-b199-49d9-96a1-420080f16759", "aliases:array": "kevin-white:AV007_eGFP-CG34406", "modified_site_by_target_id": "eGFP-CG34406-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-136F22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCATGTAAAGCTTTGCCATACGGACAAGGTCGAGAACGCGGCTATATCT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e7e0d462-1ba0-4513-8022-049548fde5ff", "aliases:array": "kevin-white:AV007_eGFP-achi", "modified_site_by_target_id": "eGFP-achi-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-151N14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCGCCAAAACGATGACGTCCAGGATGACGATTTCGTTTACATGGGAGAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4e12b575-f12b-4d6f-8b05-5abad1aecbd7", "aliases:array": "kevin-white:LAP_eGFP-cnc", "modified_site_by_target_id": "eGFP-cnc-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-28M20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGCAGCAACAGCAGCCGGGAGGTCAGCAGCAACAGCAGCACCGCAAGGAA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "84c026d6-db2e-401c-b0ca-22a16afa8317", "aliases:array": "kevin-white:AV007_eGFP-crp", "modified_site_by_target_id": "eGFP-crp-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-77N13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGAAGCAGTGCCGACCGGGCGTGATAGTGGCCAAGCAGTTGCCGTCGTCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d8f7864a-6770-4a57-b5e5-406e9e79a65a", "aliases:array": "kevin-white:AV001_eGFP-foxo", "modified_site_by_target_id": "eGFP-foxo-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-68G10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TTCAGTACTCACAGCCCAGCGTGGTGACCTCGCCACCATCCTGGGTGCAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "34a63f58-7222-45d2-9d3f-a974640c67f7", "aliases:array": "kevin-white:AV001_eGFP-nmo", "modified_site_by_target_id": "eGFP-nmo-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-25B06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCTTGAAATTTCTATTAAATCGAATCGTTATATTTGCGTTGTTAAGCCAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5f2a0fda-a5b7-4723-a0ca-5d7a830b1b4d", "aliases:array": "michael-snyder:eGFP_SALL4_FRT_construct", "modified_site_by_target_id": "eGFP-SALL4-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:53119, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=53119", "description": "This construct contains an eGFP N-terminal tag to SALL4 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "995cd8f9-7a1d-4dac-b94d-9fc997c45122", "aliases:array": "michael-snyder:eGFP_KLF10_FRT_construct", "modified_site_by_target_id": "eGFP-KLF10-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00296879, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00296879", "description": "This construct contains an eGFP N-terminal tag to KLF10 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6dcc7bc6-aa50-4ff2-967a-418de6623729", "aliases:array": "michael-snyder:eGFP_ZNF277_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF277-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:12906, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=12906", "description": "This construct contains an eGFP N-terminal tag to ZNF277 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "0a90934a-1851-4b69-a5fe-12bdbf21c42f", "aliases:array": "michael-snyder:eGFP_SNAI2_FRT_construct", "modified_site_by_target_id": "eGFP-SNAI2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:191, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=191", "description": "This construct contains an eGFP N-terminal tag to SNAI2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "3b90ae19-4844-4244-a931-b43ff38b2b31", "aliases:array": "michael-snyder:eGFP_ZBTB21_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB21-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:71113, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=71113", "description": "This construct contains an eGFP N-terminal tag to ZBTB21 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "7e6c1865-9e06-4c18-94af-f1408d44bf1f", "aliases:array": "michael-snyder:eGFP_ZNF34_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF34-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:4390, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=4390", "description": "This construct contains an eGFP N-terminal tag to ZNF34 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "5835681f-bacf-4ce9-a068-22aab01cd742", "aliases:array": "michael-snyder:eGFP_BCL11A_FRT_construct", "modified_site_by_target_id": "eGFP-BCL11A-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000335712, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?g=ENSG00000119866;r=2:60457198-60553498;t=ENST00000335712", "description": "This construct contains an eGFP N-terminal tag to BCL11A under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b369c06f-4501-40fa-b990-18b8835b536e", "aliases:array": "michael-snyder:eGFP_ZNF146_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF146-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:52969, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=52969", "description": "This construct contains an eGFP N-terminal tag to ZNF146 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d1939e2c-dd6f-47b0-bb7a-5b2438e4df59", "aliases:array": "kevin-white:AV001_eGFP-Ets21C", "modified_site_by_target_id": "eGFP-Ets21C-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-05N16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGGGAAACTACGACCAGGGCCCGGTCACTCCCACCACAAATGCATTCAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "992d0b42-6cb4-4a81-b22e-947bd43aa8a9", "aliases:array": "kevin-white:AV007_eGFP-lbe", "modified_site_by_target_id": "eGFP-lbe-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-02N23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGTGGTTCCCGTGCCTGGATCCGTGCCAATGGGAGGCGCTCCGCCCAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c97a530c-7ff5-4bf2-a6a4-cb0d24861447", "aliases:array": "kevin-white:AV007_eGFP-Pif1A", "modified_site_by_target_id": "eGFP-Pif1A-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-37J05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCTACATTCCCGTGGAGAGGAGCAATTCCACCTTGTTCAGAGCTAAGAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "70332f14-32d9-408f-b8b4-6e903a97b284", "aliases:array": "kevin-white:AV001_eGFP-lola-RC", "modified_site_by_target_id": "eGFP-lola-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64B21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CAGCTGCAGCTGCGCTGGTCAGCGGCGTGGAGTTGCATCCCCACTTCTCG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b0867002-4d53-4888-bcb1-e3c3f7926bbe", "aliases:array": "kevin-white:AV012_eGFP-mod(mdg4)", "modified_site_by_target_id": "eGFP-mod(mdg4)-dmelanogaster", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-01G18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV012) tag at the N-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CTGCAGCCAACAAACGCATAGATACAGAAAAGTATTGATTTTCGTCCAAG", "documents:array": "/documents/f470b0c9-aef8-4c42-84b7-2b50a082aa82/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b9964a67-94cc-4564-9e54-303cf7551702", "aliases:array": "kevin-white:AV007_eGFP-tio", "modified_site_by_target_id": "eGFP-tio-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-63A21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGTTCCTCAAATACACGGAGCTGGCCAAACAGCTATCCTCTAAAAACGCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c6351a37-adc3-4ccf-8222-0c0a64be1581", "aliases:array": "kevin-white:AV007_eGFP-vri", "modified_site_by_target_id": "eGFP-vri-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-83D07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGAGCGCCTAGAGTCCGAGGTGGCCAGCATCAAGATGATCTTGGCGGAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1aee7904-8852-4c30-94b4-ee3c2ba95cf5", "aliases:array": "kevin-white:AV001_eGFP-lola-RG", "modified_site_by_target_id": "eGFP-lola-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64B21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGGCAAGCTGATCATCGACTTCAATGGGAAGGGAGAGCTTGAAACCAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3972743c-d965-43c2-b0df-3bf5b7bfc83c", "aliases:array": "robert-waterston:OP525-GFP", "modified_site_by_target_id": "eGFP-C04F5.9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615bF07, url:https://www.sourcebioscience.com/search?search=WRM0615bF07", "description": "wgIs525(C04F5.9::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0093_3G07);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2d3b3476-7efb-4cd9-9574-2f5f6a14aa9f", "aliases:array": "robert-waterston:OP513-GFP", "modified_site_by_target_id": "eGFP-C08G9.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064aC06, url:https://www.sourcebioscience.com/search?search=WRM064aC06", "description": "wgIs513(C08G9.2::TY1 EGFP 3xFLAG(P000011_B12_13L22);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7c31cf3f-ea98-4c0a-838e-e30fe79b7b1d", "aliases:array": "kevin-white:AV007_eGFP-NC2alpha", "modified_site_by_target_id": "eGFP-NC2%CE%B1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-173E03, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of NC2α, targeting these isoforms: NC2α-RA, NCα-RB. The 50 bases preceding the tag are as follows: CGACCCCCACTGAAACCGTTTTCGAATTAGACGAAGACTATGACAATATT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "934ff04c-9f0b-4708-ad30-ca3ac0bc2705", "aliases:array": "kevin-white:LAP_eGFP-ems", "modified_site_by_target_id": "eGFP-ems-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-143M02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCTGATAGCTTAATCAGTAACTCTTATTTTATTAGTTATAGGTGGAAAG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "85b6cc78-aebd-4265-8c99-db682429acd2", "aliases:array": "hugo-bellen:pnt-MiMIC-GFP", "modified_site_by_target_id": "eGFP-pnt-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI02427, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI02427", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: Pnt-RB of pnt. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d32ea76a-83d3-44f8-98ae-335b624e4277", "modified_site_by_target_id": "eGFP-ZK185.1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068dC03, url:https://www.sourcebioscience.com/search?search=WRM068dC03", "description": "wgIs474 [ZK185.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e3007394-d602-41ab-8f0e-b484e0b056c7", "modified_site_by_target_id": "eGFP-ceh-28-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs241 [ceh-28::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "75d9fc36-9b16-42ae-8e5f-0a491c79240d", "modified_site_by_target_id": "eGFP-nhr-232-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065aH03, url:https://www.sourcebioscience.com/search?search=WRM065aH03", "description": "wgIs449 [Y22F5A.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d8da758c-000a-407f-a599-ab511a7ff785", "modified_site_by_target_id": "eGFP-jun-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs234 [jun-1::TY1::EGFP::3xFLAG + unc-119(+)]. \\TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "1926a02b-75bd-4771-a533-bc9ffe9f1438", "modified_site_by_target_id": "eGFP-nhr-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636dG03, url:https://www.sourcebioscience.com/search?search=WRM0636dG03", "description": "wgIs208 [nhr-27::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "91b72d60-7003-491e-84b6-91ba0881e580", "aliases:array": "robert-waterston:OP477-GFP", "modified_site_by_target_id": "eGFP-nhr-43-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067dC05, url:https://www.sourcebioscience.com/search?search=WRM067dC05", "description": "wgIs477 [nhr-43::TY1::EGFP::3xFLAG(91G08) + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-09-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f7b8368e-a665-4460-ad48-f93f51eea200", "aliases:array": "robert-waterston:OP512-GFP", "modified_site_by_target_id": "eGFP-swsn-7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0625aF07, url:https://www.sourcebioscience.com/search?search=WRM0625aF07", "description": "wgIs512 [swsn-7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-03-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8c888e18-dc8d-45d7-88a2-cea77b8facd6", "modified_site_by_target_id": "eGFP-TBX15-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-227G21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TBX15. The last 50 bases before the stop codon of TBX15 are as follows: AGTATGGGGCAGTTCCAGGCTCCTCCTCCCAGATGTCCGTGCACATGGTT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "a722b172-035a-42ed-81d3-b51fda191c89", "aliases:array": "kevin-white:AV007_eGFP-acj6", "modified_site_by_target_id": "eGFP-acj6-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-24G24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GTAGTGTAACACCATCAATGACTGGCCACGGTTCGGCGGGATTTGGATAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "62095f82-6068-4e13-a0d0-d93b54b788f0", "aliases:array": "kevin-white:AV007_eGFP-cic", "modified_site_by_target_id": "eGFP-cic-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-70K23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGATTTCCATTTCCCAACGAAAACATTGTACAGATGTTTTTCAATATTAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f8817ecc-16f9-4e6f-828a-36a4848bcf24", "aliases:array": "kevin-white:AV001_eGFP-gcm", "modified_site_by_target_id": "eGFP-gcm-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-09J02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAATGGACGCGACATATCACCCAGTCAACAGCACGGATCCCATCTATTGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ac564d80-8e02-42f4-9459-c6bf78dc315c", "aliases:array": "kevin-white:LAP_eGFP-Sp1", "modified_site_by_target_id": "eGFP-Sp1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64M02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CACCCGGTCTGGATCCCAGCTCCCTCGTGGATATAAAGCCACCGATGGTT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7afebb0e-ddc4-46b7-b2cf-a705aa4c1225", "aliases:array": "kevin-white:AV001_eGFP-svp", "modified_site_by_target_id": "eGFP-svp-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-72C02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATATGCTGCTGAGCGGCAACAGTTTCTCCTGGCCCTATCTGCCTTCGATG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f583319a-bbf7-4f12-b520-1d4de8ac34f4", "aliases:array": "kevin-white:AV007_eGFP-woc", "modified_site_by_target_id": "eGFP-woc-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-24M16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCACCGCGTCAAAATGGTCAAGGAAATCAACATAGCGCTACTAACGACT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f719d125-27ab-4fb8-9430-39798b06c3eb", "aliases:array": "kevin-white:AV007_eGFP-Hr39-RB", "modified_site_by_target_id": "eGFP-Hr39-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-74G02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCTGATAGCTTAATCAGTAACTCTTATTTTATTAGTTATAGGTGGAAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "bea5655c-3fce-46cf-abd1-db769b48b901", "aliases:array": "kevin-white:AV007_eGFP-CG7839", "modified_site_by_target_id": "eGFP-CG7839-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-25A16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CAGCGGCCAAAGGCGGTAGACCACAGAAAGCGGGCAAGAAACGAAAACAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f478ae08-9a81-485b-b513-58a3dcd69da1", "aliases:array": "kevin-white:AV007_eGFP-ovo", "modified_site_by_target_id": "eGFP-ovo-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-34O04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGCAGTTCGCCAACAATCTGCTCGGCCAGCTGCCCATGCCAGTCCACAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "97a5d419-6a26-4b22-a696-1678f7c9bbbc", "aliases:array": "kevin-white:LAP_eGFP-disco-r", "modified_site_by_target_id": "eGFP-disco-r-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-80K17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGGGCATTACCGAAGATTCGGGCCAGCGGCAAAGTCCCGATCGCATATCA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8944036c-8317-470b-ab15-360ddf551d01", "aliases:array": "kevin-white:LAP_eGFP-eve", "modified_site_by_target_id": "eGFP-eve-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-103K22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGATTGCGGAGCCCAAGCCGAAGCTCTTCAAGCCCTACAAGACTGAGGCG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b32eeb24-0bb6-4eea-a3d3-1fa7e85c756a", "aliases:array": "kevin-white:AV007_eGFP-Sox14", "modified_site_by_target_id": "eGFP-Sox14-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-146L07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATTTAGAGTTTAACACTAACAAATACGAGTTTGCAAGTTATTATAAAATG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "972ad592-023a-4f59-853f-313212355e70", "aliases:array": "kevin-white:AV001_eGFP-Stat92E", "modified_site_by_target_id": "eGFP-Stat92E-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-73F24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GTGACTTTGGAATGGCGGACTTCGATACGATTACAAACTTTGAGAACTTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8f99265c-80c6-4f5a-b099-b12a952b234b", "aliases:array": "kevin-white:AV007_eGFP-tx", "modified_site_by_target_id": "eGFP-tx-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-65J12, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGTATCCATTCGACCTGCTGCACAGCGATTTTCCGGATATGTTTCTCACG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e3f5db10-f74a-406e-9542-1a53e96e74ff", "modified_site_by_target_id": "eGFP-EcR-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "P[acman} BACS stitched together to target the gene Ecdysone receptor. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in-frame. The engineered vector has then been inserted into the specific docking site with the help of ATT sites. Recombinant individuals were screened based on mini-white presence. The line has been stabilized as homozygous for the transgene.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "83569b2f-e630-481b-8c1c-a1099d2f20fd", "aliases:array": "kevin-white:AV007_eGFP-caup", "modified_site_by_target_id": "eGFP-caup-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-13H13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGGCGTCACTAGTAATGCCTATCTAACGGAGGGCGGGCGTTCCGGGTCG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "be884b7b-f61a-4358-aa74-61ea4bccbae9", "aliases:array": "kevin-white:AV007_eGFP-jing", "modified_site_by_target_id": "eGFP-jing-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64I06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CACCGCCGGCGAGGGAAAAGCTGGTTCCAACGGACGCACTGGTGCCCATT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3edba52e-f38f-46a9-94d3-90e0447f0b57", "aliases:array": "kevin-white:AV007_eGFP-CG12744", "modified_site_by_target_id": "eGFP-CG12744-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-101L22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GTTGATATTTTTGCAGGAATCTCTGGCTAGGCGCTGACAACTGTTTTATG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8fb9fbe0-97e9-440e-a0d7-ad9003cdfd04", "aliases:array": "kevin-white:AV001_eGFP-gro", "modified_site_by_target_id": "eGFP-gro-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-43E01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TTGTGACGGGTTCGGGCGATAAGAAGGCTACTGTCTACGAAGTTATTTAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9e0e8473-a521-4cf2-a314-a164158bb91a", "aliases:array": "michael-snyder:eGFP_ZNF513_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF513-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:13632, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=13632", "description": "This construct contains an eGFP N-terminal tag to ZNF513 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d642c255-7387-4a2f-befa-2bdb9a6b3cce", "aliases:array": "michael-snyder:eGFP_GLI2_FRT_construct", "modified_site_by_target_id": "eGFP-GLI2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399256, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00399256", "description": "This construct contains an eGFP N-terminal tag to GLI2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "bb27b375-0b5a-4e0a-b48d-be8530d55c26", "aliases:array": "michael-snyder:eGFP_ZNF572_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF572-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:54751, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=54751", "description": "This construct contains an eGFP N-terminal tag to ZNF572 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "5f5cb832-d075-4afe-9f99-b8ad156989af", "aliases:array": "michael-snyder:eGFP_KLF7_FRT_construct", "modified_site_by_target_id": "eGFP-KLF7-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00000877, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00000877", "description": "This construct contains an eGFP N-terminal tag to KLF7 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "438c766b-e7e8-464d-aea8-b2fc3d0e7adb", "aliases:array": "michael-snyder:eGFP_ZBTB12_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB12-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00378560, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00378560", "description": "This construct contains an eGFP N-terminal tag to ZBTB12 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6d24a0f3-9db7-4259-aec8-c426ca02a74d", "aliases:array": "michael-snyder:eGFP_ZBTB2_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00331664, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00331664", "description": "This construct contains an eGFP N-terminal tag to ZBTB2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "a5552780-2144-4479-badc-78752ef3c0bb", "aliases:array": "michael-snyder:eGFP_ZBTB7A_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB7A-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000322357, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?db=core;g=ENSG00000178951;r=19:4044364-4066945;t=ENST00000322357", "description": "This construct contains an eGFP N-terminal tag to ZBTB7A, synthesized by Life Technologies (using the sequence identified by ENST00000322357), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "2470ac57-4f8c-400a-b8ae-16f62b7cab20", "aliases:array": "michael-snyder:eGFP_ZKSCAN8_FRT_construct", "modified_site_by_target_id": "eGFP-ZKSCAN8-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZKSCAN8 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "cf98602e-4db8-4364-8888-69f0cc60de58", "aliases:array": "michael-snyder:eGFP_ZNF227_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF227-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10592, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10592", "description": "This construct contains an eGFP N-terminal tag to ZNF227 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "95a98fad-940b-4866-9639-e237a71c15e4", "aliases:array": "michael-snyder:eGFP_ZNF624_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF624-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:52828, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=52828", "description": "This construct contains an eGFP N-terminal tag to ZNF624 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "a08a0d40-49c6-4ec9-87d3-53e5ac183730", "aliases:array": "kevin-white:AV007_eGFP-topi", "modified_site_by_target_id": "eGFP-topi-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-09I04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGTTGTCAAAAACAATCCAACTAAGCCGATATTTTCGGATACCTATTTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "17e4601c-b666-43d3-8978-22867cfe2979", "aliases:array": "robert-waterston:OP111-GFP", "modified_site_by_target_id": "eGFP-elt-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618bH04, url:https://www.sourcebioscience.com/search?search=WRM0618bH04", "description": "wgIs111 [elt-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "695e8fae-4099-4dd6-a81d-1c4975135e81", "aliases:array": "robert-waterston:OP533-GFP", "modified_site_by_target_id": "eGFP-ceh-18-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0611aA10, url:https://www.sourcebioscience.com/search?search=WRM0611aA10", "description": "wgIs533(ceh-18::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0089_1F12);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2928d5d4-c281-4e73-b82d-5f4e6f795964", "aliases:array": "robert-waterston:RW10702-GFP", "modified_site_by_target_id": "eGFP-hlh-6-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637dB07, url:https://www.sourcebioscience.com/search?search=WRM0637dB07", "description": "stIs10702(hlh-6::TY1 EGFP 3xFLAG(P000007_F08); unc-119(+));unc-119(ed3)", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e9a63a6c-32e4-4638-8a20-f9ed272d3d5c", "aliases:array": "robert-waterston:OP248-GFP", "modified_site_by_target_id": "eGFP-mes-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0629D_F11, url:https://www.sourcebioscience.com/search?search=WRM0629D_F11", "description": "wgIs248 [mes-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "119349e9-8e57-4954-bffd-c069bd5b0a8c", "aliases:array": "kevin-white:AV007_eGFP-chif-RA", "modified_site_by_target_id": "eGFP-chif-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-141A23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGATTTCAGCGGCCTGCATAAGCGCGGCACCGTCAGCTCGCGTGCCAAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "64288076-5ee0-4eae-b0c3-169a45934344", "aliases:array": "robert-waterston:OP517-GFP", "modified_site_by_target_id": "eGFP-sox-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0633aH06, url:https://www.sourcebioscience.com/search?search=WRM0633aH06", "description": "wgIs517(sox-4::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0085_1D08);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "087120f3-a76b-4730-9d61-d677e8c9ed35", "aliases:array": "robert-waterston:OP484-GFP", "modified_site_by_target_id": "eGFP-nhr-90-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628aD10, url:https://www.sourcebioscience.com/search?search=WRM0628aD10", "description": "wgIs484(nhr-90::TY1 EGFP 3xFLAG(91A03);unc-119(+);unc-119(tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "de6e1fae-1490-4435-8a19-6f17c2d88f42", "aliases:array": "robert-waterston:OP521-GFP", "modified_site_by_target_id": "eGFP-spr-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068dF04, url:https://www.sourcebioscience.com/search?search=WRM068dF04", "description": "wgIs521 [spr-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7c064f90-c004-4768-ad3d-bb7298dcef2d", "aliases:array": "robert-waterston:OP522-GFP", "modified_site_by_target_id": "eGFP-dsc-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636bG03, url:https://www.sourcebioscience.com/search?search=WRM0636bG03", "description": "wgIs522(dsc-1::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0089_1H05);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "bcb2662b-4aa2-40d6-a7f7-31b6dc571e52", "aliases:array": "robert-waterston:OP513_construct", "modified_site_by_target_id": "eGFP-C08G9.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs513 [C08G9.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "44238403-22d2-4a8d-862f-269110a58bfe", "modified_site_by_target_id": "eGFP-mml-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM066cF12, url:https://www.sourcebioscience.com/search?search=WRM066cF12", "description": "wgIs198 [mml-1::TY1::EGFP::3xFLAG + unc-119(+)]. Y1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "483cf9a7-0cab-489c-9ac4-264dd218ce5f", "aliases:array": "hugo-bellen:luna-MiMIC-GFP", "modified_site_by_target_id": "eGFP-luna-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI05859, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI05859", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: luna-RB, luna-RC, luna-RD of luna. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "df0c93b2-0d01-4bec-9dbb-2d4e448b33df", "modified_site_by_target_id": "eGFP-eor-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617cB05, url:https://www.sourcebioscience.com/search?search=WRM0617cB05", "description": "wgIs81 [eor-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6ff1e07c-1979-4af3-8802-b640ed57525d", "modified_site_by_target_id": "eGFP-ceh-24-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065cF04, url:https://www.sourcebioscience.com/search?search=WRM065cF04", "description": "MADE BY:DKV/RJT/PW RECEIVED:08/29/11 from Reinke V, modENCODE, Yale University, New Haven, CT. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "c4c78425-8cf0-4744-8fcb-d1a9c8ad398e", "aliases:array": "robert-waterston:OP481-GFP", "modified_site_by_target_id": "eGFP-nhr-47-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062aE02, url:https://www.sourcebioscience.com/search?search=WRM062aE02", "description": "wgIs481 [nhr-47::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:06-05-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e0d42d25-d306-46a9-9761-d5ef1b8bbf3e", "modified_site_by_target_id": "eGFP-K12H6.12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630aE07, url:https://www.sourcebioscience.com/search?search=WRM0630aE07", "description": "wgIs214 [K12H6.12::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "faa24d52-3e5f-43bb-b19d-b87f63462cd3", "modified_site_by_target_id": "eGFP-dnj-17-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613bA03, url:https://www.sourcebioscience.com/search?search=WRM0613bA03", "description": "wgIs492 [dnj-17::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3fed3aed-5cb0-4748-8251-79042657e324", "modified_site_by_target_id": "eGFP-C16A3.4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636aG04, url:https://www.sourcebioscience.com/search?search=WRM0636aG04", "description": "wgIs345 [C16A3.4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e44af95d-6cae-48d7-9d23-42c791865656", "modified_site_by_target_id": "eGFP-nhr-178-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0625dE08, url:https://www.sourcebioscience.com/search?search=WRM0625dE08", "description": "wgIs454 [nhr-178::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8c544f0f-d05f-4767-adc5-6cbb2c90c45a", "aliases:array": "kevin-white:AV007_eGFP-Pif1B", "modified_site_by_target_id": "eGFP-Pif1B-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-37J05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACTATTATGATCCCAACCAATTGCCGCCGGCGGAGGACGTGCAGCCGTGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d26b4889-9176-4ddd-b8c0-4ca8ebf553cb", "aliases:array": "kevin-white:AV007_eGFP-sage", "modified_site_by_target_id": "eGFP-sage-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-139I19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCGGCGGAAGTAGTTCACCTTATGATAATGGCAACGATCATTGGGGAGCG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "aa02faf0-fc95-46de-af02-76e9b8ef9771", "aliases:array": "kevin-white:AV007_eGFP-vfl", "modified_site_by_target_id": "eGFP-vfl-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-94B21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGTACGTGCAGGAGGAGTTTCAGATGATCGAGAAGAGCATAGAGCTCTAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "38175110-1503-4b5a-b89a-0fc1f776f4eb", "aliases:array": "kevin-white:AV007_eGFP-Vsx2", "modified_site_by_target_id": "eGFP-Vsx2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-68H20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAATGGAGCTGACCGCCAATGGGGGTTCAATGAAAAACTATGAGGAGGCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "48eff6b2-6119-4dc1-91ef-60091eed507f", "aliases:array": "robert-waterston:OP476-GFP", "modified_site_by_target_id": "eGFP-unc-86-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0612cF07, url:https://www.sourcebioscience.com/search?search=WRM0612cF07", "description": "wgIs476 [unc-86::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-28-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0371cf83-5ef2-407e-8410-2595402ca980", "aliases:array": "kevin-white:AV007_eGFP-grn", "modified_site_by_target_id": "eGFP-grn-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-94H18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCTGATAGCTTAATCAGTAACTCTTATTTTATTAGTTATAGGTGGAAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c1046173-8a01-4a21-bb26-f7b938e26e0d", "aliases:array": "robert-waterston:OP502-GFP", "modified_site_by_target_id": "eGFP-aly-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cD11, url:https://www.sourcebioscience.com/search?search=WRM062cD11", "description": "wgIs502 [aly-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:06-18-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fa5f583e-11f3-47fa-97a6-bb6c27c775bc", "aliases:array": "robert-waterston:OP489-GFP", "modified_site_by_target_id": "eGFP-nhr-232-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065aH03, url:https://www.sourcebioscience.com/search?search=WRM065aH03", "description": "wgIs489 [nhr-232::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-09-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7c9ab325-e189-46a7-ba70-75d57e85eca3", "modified_site_by_target_id": "eGFP-lola-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH321-64B21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH321-64B21 has been chosen to target the gene longitudinals lacking, isoform RI. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of Att sites. Recombinant individuals were screened based on mini-white presence.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "9b4e8d9a-94b0-46f9-96d1-6526b99d64a6", "aliases:array": "kevin-white:AV007_eGFP-lz", "modified_site_by_target_id": "eGFP-lz-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-25D20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCGCCAGGGAGGAGGACGTGGGCGATCTCTCGCAGGTGTGGCGACCCTAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b9c9fbab-e208-4a12-a4c5-d7c9dc330682", "aliases:array": "kevin-white:AV007_eGFP-pdm3", "modified_site_by_target_id": "eGFP-pdm3-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-73B24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AACGGCAGGCCCTCAAGAACACCGTTCGCATGATGTCCAAGGGAATGGTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1f76edcb-218a-42d9-a0f1-383ac69fb5a3", "aliases:array": "kevin-white:Koens_tag_eGFP-sens", "modified_site_by_target_id": "eGFP-sens-dmelanogaster", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-01N16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (Koens_tag) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACGTAAATCAGATCCAGTGAGATTCCAAAAAGTAAAGATCCAGAATCAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/8dba6b13-7ac4-40e4-a686-ce35c0a83e02/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a1a719a9-42e6-4eb0-8afd-66ed81355d5a", "aliases:array": "kevin-white:LAP_eGFP-tll", "modified_site_by_target_id": "eGFP-tll-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-83J21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACATCACCATTGTGCGCCTCATCTCCGACATGTACAGTCAGCGCAAGATC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e689299c-da50-44c7-bb4f-a176a6fa8b07", "aliases:array": "kevin-white:modENCODE_eGFP-EcR", "modified_site_by_target_id": "eGFP-EcR-dmelanogaster", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH321-83K24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct contains an eGFP tag at the N or C-terminal of EcR.", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U01HG004264"}, - {"uuid": "408c6929-5b3a-48c0-a35f-abdbeba2635d", "aliases:array": "kevin-white:LAP_eGFP-slp2", "modified_site_by_target_id": "eGFP-slp2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-127L06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCTCGCCACAGCCTCTTCACAAACCCGTCACCGTAGTCTCCCGCAATAGC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4f8b2590-1a1d-4d8a-ab68-b48c37ae3875", "aliases:array": "kevin-white:AV001_eGFP-lola-RI", "modified_site_by_target_id": "eGFP-lola-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64B21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AACATCATCCGGAGAAGCCGCAGCTAGAGAGCAAGCGAGGCCGCAAGGTC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3d4e7c69-3afb-4823-9aa9-0d21c1861abe", "aliases:array": "kevin-white:AV001_eGFP-N", "modified_site_by_target_id": "eGFP-N-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-89E02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACATATCCGGTGGCCATCAGGCTAACAAGGGTTCCGAGGCCATCTACATT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9ca358ac-6a93-4cf1-9d2c-7745b151204e", "aliases:array": "robert-waterston:RW10316-GFP", "modified_site_by_target_id": "eGFP-die-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635cB05, url:https://www.sourcebioscience.com/search?search=WRM0635cB05", "description": "stIs10316(die-1::TY1 EGFP 3xFLAG(P000007_D01); unc-119(+));unc-119(ed3)", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9d4fe872-e906-4b1c-a9bc-e166384b93ca", "aliases:array": "robert-waterston:OP159-GFP", "modified_site_by_target_id": "eGFP-tbx-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063aG09, url:https://www.sourcebioscience.com/search?search=WRM063aG09", "description": "wgIs159 [tbx-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1f6604ca-8577-45fa-bfdf-14348b953fa4", "aliases:array": "robert-waterston:OP164-GFP", "modified_site_by_target_id": "eGFP-fax-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635dH02, url:https://www.sourcebioscience.com/search?search=WRM0635dH02", "description": "wgIs164(fax-1::TY1 EGFP 3xFLAG(P000006_H12); unc-119(+));unc-119(ed3)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5608bd16-cba1-47d6-afae-5aadcf7f8983", "aliases:array": "michael-snyder:eGFP_ZFP64_FRT_construct", "modified_site_by_target_id": "eGFP-ZFP64-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:6548, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=6548", "description": "This construct contains an eGFP N-terminal tag to ZFP64 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "7ad81281-43e8-4541-8d76-f00f10e69c94", "aliases:array": "michael-snyder:eGFP_PLAG1_FRT_construct", "modified_site_by_target_id": "eGFP-PLAG1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00345818, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00345818", "description": "This construct contains an eGFP N-terminal tag to PLAG1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "add7117c-0a30-4e31-9f07-7671c730148d", "aliases:array": "michael-snyder:eGFP_TSHZ1_FRT_construct", "modified_site_by_target_id": "eGFP-TSHZ1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00348332, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00348332", "description": "This construct contains an eGFP N-terminal tag to TSHZ1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "4dcc2728-d55c-42f4-bf34-4b7f149cb25d", "aliases:array": "michael-snyder:eGFP_ZBTB46_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB46-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00340218, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00340218", "description": "This construct contains an eGFP N-terminal tag to ZBTB46 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d89623e1-5a87-405e-9970-908b0988b7bc", "aliases:array": "michael-snyder:eGFP_ZNF37A_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF37A-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:7745, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=7745", "description": "This construct contains an eGFP N-terminal tag to ZNF37A under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "02e489e3-9f9a-410d-9165-f115f98f3bba", "aliases:array": "michael-snyder:eGFP_ZNF221_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF221-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:53624, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=53624", "description": "This construct contains an eGFP N-terminal tag to ZNF221 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d80d5361-e948-4935-afc5-a05a3557d830", "aliases:array": "michael-snyder:eGFP_ZNF654_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF654-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00082996, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00082996", "description": "This construct contains an eGFP N-terminal tag to ZNF654 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "be297bd1-fc47-4f78-93ad-aa402197d09a", "aliases:array": "michael-snyder:eGFP_ZNF76_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF76-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:9, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=9", "description": "This construct contains an eGFP N-terminal tag to ZNF76 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "8e5af3c9-5552-4a3c-981d-850cc41a6c5f", "aliases:array": "michael-snyder:eGFP_ZNF785_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF785-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10409, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10409", "description": "This construct contains an eGFP N-terminal tag to ZNF785 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "9bc47b31-1d20-489a-9ba4-3f4c1dbaf9d1", "aliases:array": "michael-snyder:eGFP_ZNF549_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF549-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10882, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10882", "description": "This construct contains an eGFP N-terminal tag to ZNF549 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "37b8bc8e-71aa-4d41-9ddb-e6ce412f5f6f", "aliases:array": "robert-waterston:OP532-GFP", "modified_site_by_target_id": "eGFP-Y116A8C.19-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617bD12, url:https://www.sourcebioscience.com/search?search=WRM0617bD12", "description": "wgIs532(Y116A8C.19::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0125_4D07);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "64a8870d-292a-4cf9-8023-12f6f17736ef", "aliases:array": "kevin-white:eGFP-FlAsH-StrepII-3xFLAG_eGFP-ERR", "modified_site_by_target_id": "eGFP-ERR-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-54A09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (eGFP-FlAsH-StrepII-3xFLAG) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCATTACCATGAAGAAACTGTTCCTCGAGATGCTCGAGCCGCTGGCCAGG", "documents:array": "/documents/87a38c2c-9836-4670-aa5d-d2e30e6806f4/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6dcf87bd-893b-4021-9b57-95b41fd04107", "aliases:array": "kevin-white:AV007_eGFP-CG18476", "modified_site_by_target_id": "eGFP-CG18476-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-177H23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGATGCGGCGTCACTTCGACGAGGTGGAAGCGTGGCTGAGACGCCAAAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1fa69ef3-b4ab-4b22-96ca-dff134a0c1b5", "modified_site_by_target_id": "eGFP-SMAD4-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-301B13", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of SMAD4. The last 50 bases before the stop codon of SMAD4 are as follows: TAGACGAAGTACTTCATACCATGCCGATTGCAGACCCACAACCTTTAGAC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "f08e2e68-1821-44e9-b348-dfe1bb5a55c0", "modified_site_by_target_id": "eGFP-COMMD3-BMI1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-232K21", "description": "This construct was made using the RPCI-11: Human Male BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of COMMD3-BMI1. The last 50 bases before the stop codon of COMMD3-BMI1 are as follows: ATAGACCTCGAAAATCATCAGTAAATGGGTCATCAGCAACTTCTTCTGGT", "documents:array": "/documents/890aff8e-f140-4f97-91cc-7cd179979586/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "3597720d-716a-4a20-bc34-48eaa077f9ab", "aliases:array": "kevin-white:AV007_eGFP-CG1647", "modified_site_by_target_id": "eGFP-CG1647-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-170J24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCGTGAATTGCAAGACGATGCGCTCGGGGCTCAGGAAAACGTAAATCCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8a759203-1960-456f-8768-87f6c5671db5", "aliases:array": "kevin-white:AV007_eGFP-CG12155", "modified_site_by_target_id": "eGFP-CG12155-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-43L13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCCTCAACTGTGTCAGCCGGCAGGAAGCGGCCGAACAGGATGGCAAGGAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a1b0589d-57d6-46e0-841c-cc8bd430ada4", "aliases:array": "kevin-white:AV007_eGFP-CG8089", "modified_site_by_target_id": "eGFP-CG8089-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-62H02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCATGAAACATAAACTGAACTTGATGGCACAAGCAAAAATGTTCAAAAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "85d1b307-09a3-4929-a6fa-2d9544cff255", "aliases:array": "kevin-white:AV007_eGFP-tup", "modified_site_by_target_id": "eGFP-tup-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-45B16, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCTCCAGAAGGTAACGGGCTCGGCTTCCCCGGCCTCACATGCGGTTCTC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "af14fa40-16a8-4c7d-af98-a9af01b92a3f", "aliases:array": "hugo-bellen:mam-MiMIC-GFP", "modified_site_by_target_id": "eGFP-mam-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI03814, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI03814", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: mam-RA, mam-RB, mam-RD of mam. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "81ba76bf-1fe3-429e-8540-38f588d5b197", "modified_site_by_target_id": "eGFP-nfx-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0640cG10, url:https://www.sourcebioscience.com/search?search=WRM0640cG10", "description": "wgIs507 [tag-182::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "a8e2366d-098f-4d36-84a1-f07ee2b04449", "modified_site_by_target_id": "eGFP-sem-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs57 [sem-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "c7fecd65-e48e-4e86-b0f0-20a21b3b0f90", "modified_site_by_target_id": "eGFP-pal-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636dB09, url:https://www.sourcebioscience.com/search?search=WRM0636dB09", "description": "wgIs380 [pal-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e0ae927d-6c8e-486d-af42-61dae1658aaa", "modified_site_by_target_id": "eGFP-ztf-15-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0626bA07, url:https://www.sourcebioscience.com/search?search=WRM0626bA07", "description": "wgIs451 [R06C7.9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "4d951cc0-dcdb-4a6e-af9d-a962618bd7d5", "modified_site_by_target_id": "eGFP-mdl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0625bD01, url:https://www.sourcebioscience.com/search?search=WRM0625bD01", "description": "wgIs355 [ZK337.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "81990110-b329-4451-b9c8-8cecff4f9c91", "aliases:array": "hugo-bellen:dsx-MiMIC-GFP", "modified_site_by_target_id": "eGFP-dsx-dmelanogaster", "introduced_tags:object:array": "location:other, name: eGFP;location:other, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI03050, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI03050", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: dsx-RA, dsx-RB, dsx-RC, dsx-RD, dsx-RE of dsx. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "695a0750-249e-4c35-99e7-2c31f4be86a5", "modified_site_by_target_id": "eGFP-mbf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064dE02, url:https://www.sourcebioscience.com/search?search=WRM064dE02", "description": "wgIs427 [mbf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "4f5c78ce-9262-40bf-9cf0-a2ad8b27d942", "modified_site_by_target_id": "eGFP-F16B12.6-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618aC10, url:https://www.sourcebioscience.com/search?search=WRM0618aC10", "description": "wgIs114 [F16B12.6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6f7851fb-f868-4549-88c1-a0b6103e007f", "modified_site_by_target_id": "eGFP-F21D5.9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cE04, url:https://www.sourcebioscience.com/search?search=WRM0636cE04", "description": "wgIs386 [F21D5.9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "1f4bf53f-878c-4db0-9b81-3af04b4f3be8", "modified_site_by_target_id": "eGFP-nhr-167-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063aG06, url:https://www.sourcebioscience.com/search?search=WRM063aG06", "description": "wgIs458 [nhr-167::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "17758151-8a50-4a58-a069-55aeda7a4615", "aliases:array": "kevin-white:AV007_eGFP-Mnt", "modified_site_by_target_id": "eGFP-Mnt-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-22L21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGATCGCAATTACACTTTCCTGAGGCTCAGTGCTGGGACAACGGCACAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "24cf9090-332a-4c23-a2e8-29fab3644975", "aliases:array": "kevin-white:AV007_eGFP-ss-RA", "modified_site_by_target_id": "eGFP-ss-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-28L15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCGGTGGCCATGTTCCGGCCCAGTCGCATCACCTGCACCACGGCCACCGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ea153fd7-df34-4354-9be7-e53c8c88ca37", "aliases:array": "kevin-white:AV007_eGFP-sv", "modified_site_by_target_id": "eGFP-sv-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-43C17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GAAGCGGAAGTGCGTGCACAAAATCCGAATCATCGGATATTTTTCTTGCT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "646f6d2b-ae13-4d01-a629-6b537f15e6c2", "modified_site_by_target_id": "eGFP-PLRG1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-379N14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of PLRG1. The last 50 bases before the stop codon of PLRG1 are as follows: AAACTCATCCAGTCAGCTGGAAACCAGAAATTATCAAGAGAAAGAGATTT", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "8aac8222-2a3a-4ff9-89a8-db378c43a5f1", "aliases:array": "robert-waterston:OP363-GFP", "modified_site_by_target_id": "eGFP-cey-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061cE06, url:https://www.sourcebioscience.com/search?search=WRM061cE06", "description": "wgIs363 [cey-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:01-11-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "994692c9-873d-45b4-87e3-844dbc25144e", "aliases:array": "robert-waterston:OP317-GFP", "modified_site_by_target_id": "eGFP-nhr-28-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620bA06, url:https://www.sourcebioscience.com/search?search=WRM0620bA06", "description": "wgIs317 [nhr-28::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a298f5e4-0b6f-46ec-96b4-871d0592a712", "aliases:array": "robert-waterston:OP434-GFP", "modified_site_by_target_id": "eGFP-syd-9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623dB10, url:https://www.sourcebioscience.com/search?search=WRM0623dB10", "description": "wgIs434 [syd-9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "35f0be70-c258-4a3d-812d-d4cc2d2a7410", "aliases:array": "robert-waterston:OP348-GFP", "modified_site_by_target_id": "eGFP-lin-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624dE10, url:https://www.sourcebioscience.com/search?search=WRM0624dE10", "description": "wgIs348 [lin-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Elicia Preston RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7b0b2896-5b2b-4a98-bb3d-524cdf7b5fac", "aliases:array": "robert-waterston:OP171-GFP", "modified_site_by_target_id": "eGFP-egl-38-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0640aG02, url:https://www.sourcebioscience.com/search?search=WRM0640aG02", "description": "wgIs171 [egl-38::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-31-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "868a9303-9b55-4b98-b51e-986b85229862", "aliases:array": "robert-waterston:OP200-GFP", "modified_site_by_target_id": "eGFP-alr-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068bC04, url:https://www.sourcebioscience.com/search?search=WRM068bC04", "description": "wgIs200 [alr-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b42ba13b-4c6c-4fc7-afce-3f1431e678f6", "aliases:array": "robert-waterston:OP311-GFP", "modified_site_by_target_id": "eGFP-tbx-7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619cF07, url:https://www.sourcebioscience.com/search?search=WRM0619cF07", "description": "wgIs311 [tbx-7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a2cd3570-f903-420b-98c9-32ce911613ce", "aliases:array": "robert-waterston:OP401-GFP", "modified_site_by_target_id": "eGFP-lsy-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0634bD08, url:https://www.sourcebioscience.com/search?search=WRM0634bD08", "description": "wgIs401 [lsy-27::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e4688a74-b211-4da8-a038-86c9cf88c444", "aliases:array": "robert-waterston:OP515-GFP", "modified_site_by_target_id": "eGFP-nhr-20-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0616aG07, url:https://www.sourcebioscience.com/search?search=WRM0616aG07", "description": "wgIs515(nhr-20::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0014_1A06);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "223a64cc-6148-4352-9726-8fa8e0e22d27", "modified_site_by_target_id": "eGFP-NFATC1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-420M24", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NFATC1. The last 50 bases before the stop codon of NFATC1 are as follows: CCATCTTTCTAACCGTAAGCCGTGAACATGAGCGCGTGGGGTGCTTTTTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "c80a1208-442e-4ce9-8ae6-25dd77b64447", "aliases:array": "kevin-white:AV007_eGFP-Met", "modified_site_by_target_id": "eGFP-Met-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-28O05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCCACACACGTCCCAGTGTCCTGCATCGAACCCTGACCAGCACGCTGCGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5b7594ab-62c2-47d5-913f-a95154c33fe4", "modified_site_by_target_id": "eGFP-H2AFZ-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2326L11", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of H2AFZ. The last 50 bases before the stop codon of H2AFZ are as follows: CACACATCCACAAATCTCTGATTGGGAAGAAAGGACAACAGAAGACTGTC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "b014a822-9155-4889-8c09-479dfd72057c", "modified_site_by_target_id": "eGFP-KLF16-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-202K15", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of KLF16. The last 50 bases before the stop codon of KLF16 are as follows: CCGGGAGCCCTGCGCCCAGCCCCGCGCCCAGCCCAGCCCCCGCAGGCCTG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "19cb8edd-06d8-4b34-a3a0-1efb4149ab84", "modified_site_by_target_id": "eGFP-MCM2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-343I20", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MCM2. The last 50 bases before the stop codon of MCM2 are as follows: TGAACAAGTTCAGCCACGACCTGAAAAGGAAAATGATCCTGCAGCAGTTC", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "faab5e39-5972-41c6-ae56-36d397e1b85d", "modified_site_by_target_id": "eGFP-ORC4-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-212P19", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ORC4-L. The last 50 bases before the stop codon of ORC4-L are as follows: ACTGTCCTACAGATGTGAGGCAGTGGGCAACATCCTCACTAAGCTGGTTA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "bbbcbe60-dcb8-4c90-bee2-7534723f11bb", "aliases:array": "kevin-white:LAP_eGFP-Dfd", "modified_site_by_target_id": "eGFP-Dfd-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-10D24, url:http://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCCAGGACATTGAGGCAGAACTCAATAGCTTGGGAATTCAGCCATTCAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6a7d60ec-bbcf-4817-8078-eec95026e373", "aliases:array": "michael-snyder:eGFP_ZNF829_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF829-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:52932, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=52932", "description": "This construct contains an eGFP N-terminal tag to ZNF829 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "01c7c8a0-e472-435e-8da4-5a9d86b1a164", "aliases:array": "michael-snyder:eGFP_ZNF175_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF175-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00377437, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00377437", "description": "This construct contains an eGFP N-terminal tag to ZNF175 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b0057572-a704-407e-8590-231508cd6896", "aliases:array": "michael-snyder:eGFP_ZNF655_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF655-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079711, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079711", "description": "This construct contains an eGFP N-terminal tag to ZNF655 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "0217a640-ea79-4f4d-9697-1471888a47d0", "aliases:array": "michael-snyder:eGFP_ZNF547_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF547-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079734, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079734", "description": "This construct contains an eGFP N-terminal tag to ZNF547 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "5093672a-c135-4c33-a2da-4c791cdfc402", "aliases:array": "michael-snyder:eGFP_ZNF697_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF697-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000421812, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?g=ENSG00000143067;r=1:119619422-119647773;t=ENST00000421812", "description": "This construct contains an eGFP N-terminal tag to ZNF697, synthesized by Life Technologies (using the sequence identified by ENST00000421812), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "61af0907-84d4-4d3b-bc27-ba01c9d31add", "aliases:array": "michael-snyder:eGFP_ZNF846_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF846-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56247, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56247", "description": "This construct contains an eGFP N-terminal tag to ZNF846 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "27eb069d-4777-4935-b971-bd2039430851", "aliases:array": "michael-snyder:eGFP_ZXDB_FRT_construct", "modified_site_by_target_id": "eGFP-ZXDB-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00297028, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00297028", "description": "This construct contains an eGFP N-terminal tag to ZXDB under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "141cd428-e79a-45e3-bad1-1194432b644b", "aliases:array": "michael-snyder:eGFP_ZNF99_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF99-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:8128, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=8128", "description": "This construct contains an eGFP N-terminal tag to ZNF99 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b15789e2-ed33-4197-9f79-8056fbf4e209", "aliases:array": "richard-myers:MBD1_isoform2-FLAG", "modified_site_by_target_id": "FLAG-MBD1_isoform2-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GGAGCTAGAAAGCAGTAGAC;GCTAGAAAGCAGTAGACTGG", "reagents:object:array": "source:addgene, identifier:86263, url:https://www.addgene.org/86263/; source:addgene, identifier:86303, url:https://www.addgene.org/86303/; source:addgene, identifier:86304, url:https://www.addgene.org/86304/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "5921b74d-572a-45c6-b6ea-f149d029372d", "aliases:array": "richard-myers:PRMT5-FLAG", "modified_site_by_target_id": "FLAG-PRMT5-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "826f3191-d4f3-4e54-8e4d-044376662f55", "modified_site_by_target_id": "eGFP-ceh-7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627cD10, url:https://www.sourcebioscience.com/search?search=WRM0627cD10", "description": "wgIs168 [ceh-7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "2cb036a1-842b-48da-81f7-c1a9912cfb9d", "modified_site_by_target_id": "eGFP-syd-9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623dB10, url:https://www.sourcebioscience.com/search?search=WRM0623dB10", "description": "wgIs488 [syd-9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "583b6556-a0f2-443f-8f52-063697907d19", "modified_site_by_target_id": "eGFP-aly-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630aH09, url:https://www.sourcebioscience.com/search?search=WRM0630aH09", "description": "ddIs172 [aly-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "18efefca-a9db-404d-984a-fff111afce5b", "modified_site_by_target_id": "eGFP-mep-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs70 [mep-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "a1a4741b-bd7e-45a7-a197-d02f0bfe0727", "modified_site_by_target_id": "eGFP-lsy-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063dD08, url:https://www.sourcebioscience.com/search?search=WRM063dD08", "description": "wgIs240 [lsy-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f51b525e-c27e-4643-9201-a16b1370c526", "modified_site_by_target_id": "eGFP-W03F9.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0629cC03, url:https://www.sourcebioscience.com/search?search=WRM0629cC03", "description": "wgIs215 [W03F9.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "13d30450-7680-4269-9815-1b12df0c0280", "modified_site_by_target_id": "eGFP-nhr-120-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623bC08, url:https://www.sourcebioscience.com/search?search=WRM0623bC08", "description": "wgIs415 [nhr-120::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "37993711-2d78-4da1-8b4d-952a60260df2", "modified_site_by_target_id": "eGFP-rnt-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621aD07, url:https://www.sourcebioscience.com/search?search=WRM0621aD07", "description": "wgIs462 [rnt-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "1f505bb2-1464-464d-9e82-bfa9f23bd882", "modified_site_by_target_id": "eGFP-nhr-12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635cC03, url:https://www.sourcebioscience.com/search?search=WRM0635cC03", "description": "wgIs318 [nhr-12::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e5a23e48-d741-4500-9f75-747f9d3c7a6e", "aliases:array": "robert-waterston:OP522_construct", "modified_site_by_target_id": "eGFP-dsc-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs522 [dsc-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3f6d2306-1fb0-4fc0-badb-9d8b48530a2c", "modified_site_by_target_id": "eGFP-ztf-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624aC07, url:https://www.sourcebioscience.com/search?search=WRM0624aC07", "description": "wgIs322 [ztf-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "c110c7c3-c8cd-4a1b-a225-09cfd5efe04e", "modified_site_by_target_id": "eGFP-pqm-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620bF09, url:https://www.sourcebioscience.com/search?search=WRM0620bF09", "description": "wgIs201 [pqm-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e74f69e0-a2b9-4af2-94e9-a6381b920de6", "modified_site_by_target_id": "eGFP-nhr-10-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0629bF03, url:https://www.sourcebioscience.com/search?search=WRM0629bF03", "description": "wgIs239 [nhr-10::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d01adb0a-54be-4df5-ad6b-c8bb576651ab", "modified_site_by_target_id": "eGFP-unc-62-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab, url:http://elegans.bcgsc.ca/perl/fosmid/CloneSearch?genelist=++++--%0D%0A&file=0", "description": "gaIs286 [unc-62(7b)::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. A STOP-codon was inserted into exon 7a of unc-62 to generate an UNC-62(7b)-specific reporter. Recombineered fosmid was integrated by biolistic bombardment to produce strain OP602, which wa outcrossed to produce SD1894. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE (http://www.modencode.org) MADE BY:Eric van Nostrand RECEIVED:12/12/12 from Kim S, Stanford University Medical School, Stanford, CA", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6da17f6a-43fe-4b2d-ade2-bb3bfa443f5e", "modified_site_by_target_id": "eGFP-nhr-33-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs394 [nhr-33::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d08f92ac-a649-4f92-8766-8b9d73efd410", "modified_site_by_target_id": "eGFP-nhr-190-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0610cF07, url:https://www.sourcebioscience.com/search?search=WRM0610cF07", "description": "wgIs448 [nhr-190::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "314d49b7-7a0f-480f-9155-cba8fbab6cc5", "modified_site_by_target_id": "eGFP-skn-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aG02, url:https://www.sourcebioscience.com/search?search=WRM0641aG02", "description": "wgIs341 [skn-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "aff118b2-f8ae-4333-bd14-b5e1d1ced4bf", "modified_site_by_target_id": "eGFP-nhr-195-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637bC02, url:https://www.sourcebioscience.com/search?search=WRM0637bC02", "description": "wgIs467 [nhr-195::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "041031ba-da71-41ee-84aa-88a784f33b38", "modified_site_by_target_id": "eGFP-syp-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630aF03, url:https://www.sourcebioscience.com/search?search=WRM0630aF03", "description": "wgIs230 [syp-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "9c1b4a3e-ae71-42af-88de-54786dc0fac1", "modified_site_by_target_id": "eGFP-pax-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620dB02, url:https://www.sourcebioscience.com/search?search=WRM0620dB02", "description": "wgIs117 [pax-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "0ba53f91-971f-437f-b626-3b0c3c1f632b", "aliases:array": "robert-waterston:OP203-GFP", "modified_site_by_target_id": "eGFP-nhr-76-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0631cB12, url:https://www.sourcebioscience.com/search?search=WRM0631cB12", "description": "wgIs203 [nhr-76::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9b63005b-0489-4353-9cf9-6313e59dbc80", "aliases:array": "robert-waterston:OP214-GFP", "modified_site_by_target_id": "eGFP-K12H6.12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630aE07, url:https://www.sourcebioscience.com/search?search=WRM0630aE07", "description": "wgIs214 [K12H6.12::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "20f0e865-3407-4873-8ab2-c9e7c66c3826", "aliases:array": "robert-waterston:OP240-GFP", "modified_site_by_target_id": "eGFP-lsy-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063dD08, url:https://www.sourcebioscience.com/search?search=WRM063dD08", "description": "wgIs240 [lsy-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "570b3bc2-f852-49df-98e5-a77acc9b8a97", "aliases:array": "robert-waterston:OP230-GFP", "modified_site_by_target_id": "eGFP-syp-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630aF03, url:https://www.sourcebioscience.com/search?search=WRM0630aF03", "description": "wgIs230 [syp-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:12-09-13 from Sarov M, MPI-CBG, Dresden, Germany", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a0c53f08-9d10-42ac-afa8-23f72cf69695", "aliases:array": "robert-waterston:OP371-GFP", "modified_site_by_target_id": "eGFP-K09A11.1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aG10, url:https://www.sourcebioscience.com/search?search=WRM0639aG10", "description": "wgIs371 [K09A11.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:04-20-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7b06116c-4292-4d2a-b15d-aa143e444b83", "aliases:array": "robert-waterston:OP341-GFP", "modified_site_by_target_id": "eGFP-skn-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aG02, url:https://www.sourcebioscience.com/search?search=WRM0641aG02", "description": "wgIs341 [skn-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Elicia Preston RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "27823532-1542-4809-814d-a8180e6263f1", "aliases:array": "robert-waterston:OP379-GFP", "modified_site_by_target_id": "eGFP-mbf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064dE02, url:https://www.sourcebioscience.com/search?search=WRM064dE02", "description": "wgIs379 [mbf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:05-09-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f4b84e1c-d77e-4d8e-a8a0-69bfc17eb1e9", "aliases:array": "robert-waterston:OP377-GFP", "modified_site_by_target_id": "eGFP-fkh-10-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0614aH10, url:https://www.sourcebioscience.com/search?search=WRM0614aH10", "description": "wgIs377 [fkh-10::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:05-09-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7ff30ac5-e40d-4944-b7ff-37bce55897a9", "aliases:array": "robert-waterston:OP394-GFP", "modified_site_by_target_id": "eGFP-nhr-33-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617bB05, url:https://www.sourcebioscience.com/search?search=WRM0617bB05", "description": "wgIs394 [nhr-33::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7096bef7-373c-48d4-a88a-c13b1aab0b29", "aliases:array": "robert-waterston:OP223-GFP", "modified_site_by_target_id": "eGFP-nhr-221-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619cG03, url:https://www.sourcebioscience.com/search?search=WRM0619cG03", "description": "ddIs184 [nhr-221::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Cell. 2012 Aug 17;150(4):855-66. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Mihail Sarov RECEIVED:03-04-13 from Sarov M, MPI-CBG, Dresden, Germany", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "83cd1837-654a-429f-a330-3334a5ca1c5f", "aliases:array": "kevin-white:AV007_eGFP-CG7786", "modified_site_by_target_id": "eGFP-CG7786-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-05M24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCCTCGGAGCCACAACAGCCGGCGGCATGTTGTCCATGGCCAGGCAGGTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1f1bf041-857f-4966-b666-b4278cef3577", "aliases:array": "kevin-white:LAP_eGFP-exd", "modified_site_by_target_id": "eGFP-ftz-f1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-56J20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGCCCACCCAAACGCTGCTCATGGAGATGCTGCACGCCAAGCGCAAGGGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4e1fa2c9-d0ae-4be6-9a39-995e384043fe", "aliases:array": "kevin-white:AV007_eGFP-Neu2", "modified_site_by_target_id": "eGFP-Neu2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-162H17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGCTAACACACTTGCAAACCCACACAGGAAAACTGGGCACAAATCGCATG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "81a3247c-03f6-455a-a348-598a30246d6a", "aliases:array": "kevin-white:AV007_eGFP-CG31627", "modified_site_by_target_id": "eGFP-CG31627-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-166F07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAATTACTAGTGGCGGTCCCTATTACTTGACAAAAACAAAGATTAGACCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fb4f533d-12a4-40a4-be6a-6c90d544e74b", "aliases:array": "kevin-white:LAP_eGFP-Bro", "modified_site_by_target_id": "eGFP-Bro-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-16P24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (LAP) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATCACCATCACAGAGGTGGGCCTGGTCTGCCTAGAGGACCAATGGGATGG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/c0a10893-9488-44e7-8c90-350722df29fd/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7e3913d4-16de-4a6e-a6f9-8f3bf592e14d", "modified_site_by_target_id": "eGFP-skn-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aG02, url:https://www.sourcebioscience.com/search?search=WRM0641aG02", "description": "wgIs342 [skn-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of skn-1 coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "ed13ecb0-722f-4675-8c37-d8504aa00568", "modified_site_by_target_id": "eGFP-rabs-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cB05, url:https://www.sourcebioscience.com/search?search=WRM062cB05", "description": "wgIs237 [rabs-5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d0eb1fd8-47f5-4cba-9bcd-90d11849ec1a", "modified_site_by_target_id": "eGFP-tag-68-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637cB01, url:https://www.sourcebioscience.com/search?search=WRM0637cB01", "description": "wgIs447 [tag-68::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "7a989ab1-8f02-4046-93b2-59176bc7cffb", "aliases:array": "hugo-bellen:MTA1-like-MiMIC-GFP", "modified_site_by_target_id": "eGFP-MTA1-like-dmelanogaster", "introduced_tags:object:array": "location:other, name: eGFP;location:other, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI01790, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI01790", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: MTA1-like-RA, MTA1-like-RB, MTA1-like-RC of MTA1-like. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "b8b06bef-8d44-4194-81d2-439e9a3c0f73", "modified_site_by_target_id": "eGFP-pax-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620dB02, url:https://www.sourcebioscience.com/search?search=WRM0620dB02", "description": "wgIs190 [pax-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "96391922-4ff0-46f4-a738-8273e31df3ad", "aliases:array": "richard-myers:FOXP1-FLAG", "modified_site_by_target_id": "FLAG-FOXP1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GACATGGAGTGACTATCGGGG;GAGGACATGGAGTGACTAT", "reagents:object:array": "source:addgene, identifier:86261, url:https://www.addgene.org/86261/; source:addgene, identifier:86299, url:https://www.addgene.org/86299/; source:addgene, identifier:86300, url:https://www.addgene.org/86300/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "b2dda32d-75a0-4449-a637-f9339b35964b", "aliases:array": "richard-myers:MBD1_isoform1-FLAG", "modified_site_by_target_id": "FLAG-MBD1_isoform1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GGAGCTAGAAAGCAGTAGAC", "reagents:object:array": "source:addgene, identifier:86263, url:https://www.addgene.org/86263/; source:addgene, identifier:86303, url:https://www.addgene.org/86303/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "1e925db5-eb81-4995-ac27-5a237fdbd49c", "aliases:array": "richard-myers:KDM1A-FLAG", "modified_site_by_target_id": "FLAG-KDM1A-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GTGAGACAGATGCATTCTAA;GTGTGAGACAGATGCATTCTA", "reagents:object:array": "source:addgene, identifier:86260, url:https://www.addgene.org/86260/; source:addgene, identifier:86297, url:https://www.addgene.org/86297/; source:addgene, identifier:86298, url:https://www.addgene.org/86298/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "8eb3372b-d595-4584-ae36-79fdee6a5023", "aliases:array": "richard-myers:KDM6A-FLAG", "modified_site_by_target_id": "FLAG-KDM6A-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCTCATCTTGATATTGTTCCA;GGTCTCATTTAATGTCCA", "reagents:object:array": "source:addgene, identifier:86265, url:https://www.addgene.org/86265/; source:addgene, identifier:86307, url:https://www.addgene.org/86307/; source:addgene, identifier:86308, url:https://www.addgene.org/86308/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "6e08c39a-3cfd-45f5-8a82-8396447202f3", "aliases:array": "richard-myers:ZNF644-FLAG", "modified_site_by_target_id": "FLAG-ZNF644-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GAAGCAGCTTCATAGAACC;GGCTATTTAAAAGGTTTCC", "reagents:object:array": "source:addgene, identifier:86264, url:https://www.addgene.org/86264/; source:addgene, identifier:86305, url:https://www.addgene.org/86305/; source:addgene, identifier:86306, url:https://www.addgene.org/86306/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "d807bca1-8eb2-4e60-b855-ba238ceeb568", "aliases:array": "kevin-white:AV007_eGFP-CG11762", "modified_site_by_target_id": "eGFP-CG11762-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-101N14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGCACACCAGATCCATGATGCACCTCCAAAATGTCAAGAAGCAGAAGTCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "968ed2b9-9a9d-4af7-bcb2-405416b29a1b", "aliases:array": "michael-snyder:eGFP_SCRT2_FRT_construct", "modified_site_by_target_id": "eGFP-SCRT2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to SCRT2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "982f7643-b3b4-46c3-8a8c-36aaa072a709", "aliases:array": "michael-snyder:eGFP_ZNF25_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF25-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF25 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "95f3821a-f485-400c-a2e5-5b2d4f513c38", "aliases:array": "michael-snyder:eGFP_ZBTB49_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB49-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56171, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56171", "description": "This construct contains an eGFP N-terminal tag to ZBTB49 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "8970c177-b84c-4a86-a518-a076540e70ce", "aliases:array": "michael-snyder:eGFP_ZNF71_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF71-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF71 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "cf1eeb50-c381-41d8-81c6-f920da0cae05", "modified_site_by_target_id": "eGFP-D1081.8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0614dB03, url:https://www.sourcebioscience.com/search?search=WRM0614dB03", "description": "wgIs183 [D1081.8::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "508d5b2b-115b-4920-87b7-9ef5040ce40e", "aliases:array": "hugo-bellen:fru-MiMIC-GFP", "modified_site_by_target_id": "eGFP-fru-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI06350, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI06350", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: fru-RB, fru-RC, fru-RE, fru-RF, fru-RG, fru-RH, fru-RI, fru-RJ, fru-RK, fru-RL, fru-RM, fru-RN, fru-RO of fru. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "a7df4ce3-a6fe-4e20-b706-5f287253a8a3", "modified_site_by_target_id": "eGFP-mdl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618dG08, url:https://www.sourcebioscience.com/search?search=WRM0618dG08", "description": "wgIs106 [mdl-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of mdl-1 coding sequence of fosmid ID#WRM0618dG08 by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8383d7d1-21f2-4ff3-b67c-a7713f4b78f7", "modified_site_by_target_id": "eGFP-ZK546.5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067dD04, url:https://www.sourcebioscience.com/search?search=WRM067dD04", "description": "wgIs231 [ZK546.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6dd8d9b8-784b-4b66-9e26-dd6fa15766d1", "modified_site_by_target_id": "eGFP-madf-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cB04, url:https://www.sourcebioscience.com/search?search=WRM0636cB04", "description": "wgIs435 [C01G12.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "ecb0bb4b-67f3-4a09-b942-cf2a59220ad2", "modified_site_by_target_id": "eGFP-ZK546.5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067dD04, url:https://www.sourcebioscience.com/search?search=WRM067dD04", "description": "wgIs473 [ZK546.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "534fd82a-76be-4031-b91a-53cc72cb1356", "modified_site_by_target_id": "eGFP-lin-13-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628dG03, url:https://www.sourcebioscience.com/search?search=WRM0628dG03", "description": "wgIs51 [lin-13::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of lin-13 coding sequence of fosmid ID#WRM0628dG03 by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "ea71019a-f079-4394-9887-f56c446d78fe", "aliases:array": "robert-waterston:OP471-GFP", "modified_site_by_target_id": "eGFP-F13H6.1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619bD08, url:https://www.sourcebioscience.com/search?search=WRM0619bD08", "description": "wgIs471 [F13H6.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-28-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "c6b1cd0f-847f-4e6f-a2cc-55e2053b1605", "modified_site_by_target_id": "eGFP-nhr-154-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639dF01, url:https://www.sourcebioscience.com/search?search=WRM0639dF01", "description": "wgIs450 [nhr-154::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "86ac3ecc-f410-4d43-bdee-344b2a57064a", "modified_site_by_target_id": "eGFP-R02D3.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063bB05, url:https://www.sourcebioscience.com/search?search=WRM063bB05", "description": "wgIs218 [R02D3.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "323c8838-9c72-4747-b2fb-a5560ed527d2", "modified_site_by_target_id": "eGFP-pros-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs500 [ceh-26::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "68e95866-b219-487a-8022-ff4df3cb1a4b", "modified_site_by_target_id": "eGFP-tlp-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cA04, url:https://www.sourcebioscience.com/search?search=WRM0636cA04", "description": "wgIs321 [tlp-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "059d3282-4201-4c56-b4fb-85da840ba194", "modified_site_by_target_id": "eGFP-nhr-25-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM069bB11, url:https://www.sourcebioscience.com/search?search=WRM069bB11", "description": "wgIs356 [nhr-25::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "1726c94d-70b6-44f2-a31e-a99e42e83023", "modified_site_by_target_id": "eGFP-T18D3.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067dC06, url:https://www.sourcebioscience.com/search?search=WRM067dC06", "description": "wgIs238 [T18D3.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "c482df15-aaab-4223-ad3d-62ab133df69e", "modified_site_by_target_id": "eGFP-nhr-120-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623bC08, url:https://www.sourcebioscience.com/search?search=WRM0623bC08", "description": "wgIs423 [nhr-120::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "a6569bae-923e-4e0b-bf23-d39752ac36f4", "modified_site_by_target_id": "eGFP-zip-8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628bC01, url:https://www.sourcebioscience.com/search?search=WRM0628bC01", "description": "wgIs327 [F23F12.9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "ffb18dbe-7298-49d3-a4c0-0a5dc62a8d59", "modified_site_by_target_id": "eGFP-lir-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0632cA06, url:https://www.sourcebioscience.com/search?search=WRM0632cA06", "description": "wgIs175 [lir-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "9c2a72b6-c45c-428c-a1a4-352008f52f8a", "modified_site_by_target_id": "eGFP-nhr-76-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0631cB12, url:https://www.sourcebioscience.com/search?search=WRM0631cB12", "description": "wgIs203 [nhr-76::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "12202b7c-3d13-49e2-ae0b-7abc2ca5397c", "modified_site_by_target_id": "eGFP-ceh-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613cC12, url:https://www.sourcebioscience.com/search?search=WRM0613cC12", "description": "wgIs135 [ceh-27::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "b0b7d5a2-9b9f-4f82-a251-9a850cf07531", "modified_site_by_target_id": "eGFP-peb-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621aA11, url:https://www.sourcebioscience.com/search?search=WRM0621aA11", "description": "wgIs86 [peb-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "4923d909-5301-4ddf-871f-84ae330bd1d2", "aliases:array": "robert-waterston:OP120-GFP", "modified_site_by_target_id": "eGFP-ceh-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635dE06, url:https://www.sourcebioscience.com/search?search=WRM0635dE06", "description": "wgIs120 [ceh-30::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-20-10 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8cab1c25-e51c-47f0-940c-30d222448c9a", "aliases:array": "robert-waterston:OP493-GFP", "modified_site_by_target_id": "eGFP-npax-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0626aE01, url:https://www.sourcebioscience.com/search?search=WRM0626aE01", "description": "wgIs493 [npax-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:02-21-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "671c48df-d9cb-457d-9ab0-e7cdfb45d62b", "aliases:array": "robert-waterston:OP168-GFP", "modified_site_by_target_id": "eGFP-ceh-7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627cD10, url:https://www.sourcebioscience.com/search?search=WRM0627cD10", "description": "wgIs168 [ceh-7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "54ac7a34-9ab4-4add-9670-9bcd21473ee8", "aliases:array": "robert-waterston:OP215-GFP", "modified_site_by_target_id": "eGFP-W03F9.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0629cC03, url:https://www.sourcebioscience.com/search?search=WRM0629cC03", "description": "wgIs215 [W03F9.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ef0104c8-7ab7-4028-bf23-55bb04cecfe7", "aliases:array": "robert-waterston:OP226-GFP", "modified_site_by_target_id": "eGFP-nhr-116-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636aB12, url:https://www.sourcebioscience.com/search?search=WRM0636aB12", "description": "wgIs226 [nhr-116::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0b9ea0b3-b6bb-494c-8dec-dc6c6ee82961", "aliases:array": "robert-waterston:OP351-GFP", "modified_site_by_target_id": "eGFP-nhr-42-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639dA07, url:https://www.sourcebioscience.com/search?search=WRM0639dA07", "description": "wgIs351 [nhr-42::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-08-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9d91dc3a-f748-4215-95e8-319e79947e8e", "aliases:array": "robert-waterston:OP435-GFP", "modified_site_by_target_id": "eGFP-madf-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cB04, url:https://www.sourcebioscience.com/search?search=WRM0636cB04", "description": "wgIs435 [C01G12.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "616df373-9814-444b-944f-480630895971", "aliases:array": "robert-waterston:OP441-GFP", "modified_site_by_target_id": "eGFP-eyg-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062dB12, url:https://www.sourcebioscience.com/search?search=WRM062dB12", "description": "wgIs441 [Y53C12C.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "24d2f872-dc8c-42f6-b783-273ee83cef29", "aliases:array": "robert-waterston:OP449-GFP", "modified_site_by_target_id": "eGFP-nhr-232-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065aH03, url:https://www.sourcebioscience.com/search?search=WRM065aH03", "description": "wgIs449 [Y22F5A.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9f0bb416-8325-46a1-ad22-6147c654b34c", "aliases:array": "robert-waterston:OP486-GFP", "modified_site_by_target_id": "eGFP-ets-7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aA07, url:https://www.sourcebioscience.com/search?search=WRM0641aA07", "description": "wgIs486 [F19F10.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-09-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cfd0f222-e687-449f-a99d-06fdfb703f47", "modified_site_by_target_id": "eGFP-ztf-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0631bH07, url:https://www.sourcebioscience.com/search?search=WRM0631bH07", "description": "wgIs382 [C06E1.8::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "1e1417a1-98bd-44df-92e3-e8c69786c64d", "modified_site_by_target_id": "eGFP-nhr-245-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0625dE10, url:https://www.sourcebioscience.com/search?search=WRM0625dE10", "description": "wgIs211 [nhr-245::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "bec7767d-d8a9-44b9-a95f-030b040d3ae4", "aliases:array": "robert-waterston:OP483-GFP", "modified_site_by_target_id": "eGFP-nhr-90-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628aD10, url:https://www.sourcebioscience.com/search?search=WRM0628aD10", "description": "wgIs483 [nhr-90::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:06-05-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e1c33439-2f13-476d-9c35-ffccffaf8897", "aliases:array": "hugo-bellen:Camta-MiMIC-GFP", "modified_site_by_target_id": "eGFP-Camta-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI04570, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI04570", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: Camta-RB, Camta-RD, Camta-RE, Camta-RF, Camta-RG, Camta-RI of Camta. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "cb5eb300-de1d-4012-83d8-3970361a9b1b", "aliases:array": "hugo-bellen:Eip93F-MiMIC-GFP", "modified_site_by_target_id": "eGFP-Eip93F-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI05200, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI05200", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: Eip93F-RA, Eip93F-RB, Eip93F-RC of Eip93F. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "95645ea6-8243-4ea4-9528-fa366d2d5c4e", "aliases:array": "hugo-bellen:pum-MiMIC-GFP", "modified_site_by_target_id": "eGFP-pum-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI04825, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI04825", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: pum-RA, pum-RB, pum-RC, pum-RD, pum-RE, pum-RF, pum-RG, pum-RH of pum. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f0c6fc6e-0ead-4da2-982f-265f9194c5c2", "modified_site_by_target_id": "eGFP-fos-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619bE10, url:https://www.sourcebioscience.com/search?search=WRM0619bE10", "description": "wgIs304 [fos-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "7a735c8b-1e56-4b99-aee6-329f41e6fb73", "modified_site_by_target_id": "eGFP-alr-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068bC04, url:https://www.sourcebioscience.com/search?search=WRM068bC04", "description": "wgIs200 [alr-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "53040e79-11d1-4412-bd8f-7d9387005363", "modified_site_by_target_id": "eGFP-snpc-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cF05, url:https://www.sourcebioscience.com/search?search=WRM062cF05", "description": "wgIs179 [gei-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "4106a854-d9f8-4374-90c4-b2c348e98f14", "aliases:array": "robert-waterston:OP529_construct", "modified_site_by_target_id": "eGFP-F10B5.3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs529 [F10B5.3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "b6f91e33-c71d-4f0d-9a93-bd97c001694a", "aliases:array": "robert-waterston:YL507-GFP", "modified_site_by_target_id": "eGFP-dpl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab, url:http://www.ncbi.nlm.nih.gov/pubmed/23347407", "description": "unc-119(ed3) III; vrIs111 [pPIE-1::DPL-1:GFP:FLAG::PUF-5 3UTR, unc-119 (+)]). Strain generated by bombardment into unc-119(ed3) mutants.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cab3b106-ffaf-4a67-9ec9-05e386ef791f", "aliases:array": "robert-waterston:YL563-GFP", "modified_site_by_target_id": "eGFP-rec-8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "unc-119(ed3)III; vrIs125[pPIE-1::REC-8::GFP:FLAG:REC-8 3UTR, unc-119(+)]. Strain generated by bombardment into unc-119(ed3) mutants.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e1817eda-d5e0-4632-baa0-78b45be83b2e", "aliases:array": "robert-waterston:OP485-GFP", "modified_site_by_target_id": "eGFP-lin-40-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:lin-40-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs485(pPUB_pEGR-1::EGR-1::EGFP);unc-119(tm4063)", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1faa8d95-653f-4ad8-89a7-570cd72b8272", "aliases:array": "robert-waterston:YL557-GFP", "modified_site_by_target_id": "eGFP-hrde-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP, promoter_used:hrde-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "unc-119(ed3)III; vrIs122[pWAGO-9::GFP:FLAG::WAGO-9::WAGO-9 3UTR, unc-119(+)]. Strain generated by bombardment into unc-119(ed3) mutants.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d1c62da4-84a0-423e-8f8e-04eb8b1fde73", "aliases:array": "richard-myers:SP5-FLAG", "modified_site_by_target_id": "FLAG-SP5-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GGACCTGTGAGCCCTCCCGG;GAAGGGGGTCCACCTCCGGG", "reagents:object:array": "source:addgene, identifier:86295, url:https://www.addgene.org/86295/; source:addgene, identifier:86362, url:https://www.addgene.org/86362/; source:addgene, identifier:86363, url:https://www.addgene.org/86363/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "22150e81-7d67-4de7-a1c6-29971dcc074b", "aliases:array": "richard-myers:ZNF580-FLAG", "modified_site_by_target_id": "FLAG-ZNF580-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GGGTCTCGAGCTTAGTGG;GCCTCCACTAAGCTCGAGACC", "reagents:object:array": "source:addgene, identifier:86278, url:https://www.addgene.org/86278/; source:addgene, identifier:86331, url:https://www.addgene.org/86331/; source:addgene, identifier:86332, url:https://www.addgene.org/86332/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "61fee0af-07c2-4f1b-88f2-f858d7eae56b", "aliases:array": "richard-myers:NFKBIZ-FLAG", "modified_site_by_target_id": "FLAG-NFKBIZ-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "61e425d3-dc97-4506-a429-cdcae7ca3425", "aliases:array": "richard-myers:TEAD1-FLAG", "modified_site_by_target_id": "FLAG-TEAD1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GGCTTGTAAAGGACTGAACA", "reagents:object:array": "source:addgene, identifier:86291, url:https://www.addgene.org/86291/; source:addgene, identifier:86356, url:https://www.addgene.org/86356/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "7ff887ad-fd8a-43d3-ac04-8a94b3431fd2", "aliases:array": "richard-myers:IRF2_isoform1-FLAG", "modified_site_by_target_id": "FLAG-IRF2_isoform1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "6fa65cdf-7b76-4195-8491-69f093842bac", "aliases:array": "richard-myers:MIXL1-FLAG", "modified_site_by_target_id": "FLAG-MIXL1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GAGGATTCTGGGAGAATTC;GTCTGCCTTTGGTAACTTTTG", "reagents:object:array": "source:addgene, identifier:86335, url:https://www.addgene.org/86335/; source:addgene, identifier:86336, url:https://www.addgene.org/86336/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "485d946d-4a19-48b7-b31e-6c2b00a12910", "aliases:array": "robert-waterston:OP523_construct", "modified_site_by_target_id": "eGFP-hlh-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs523 [hlh-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "ef60ec23-fc41-4ff5-9b79-2cda311f29dd", "aliases:array": "hugo-bellen:CG9727-MiMIC-GFP", "modified_site_by_target_id": "eGFP-CG9727-dmelanogaster", "introduced_tags:object:array": "location:other, name: eGFP;location:other, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI00344, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI00344", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: CG9727-RA of CG9727. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6d74af79-a9c4-4337-af5b-46ea1265dcda", "aliases:array": "hugo-bellen:Antp-MiMIC-GFP", "modified_site_by_target_id": "eGFP-Antp-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI02272, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI02272", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: Antp-RD, Antp-RE, Antp-RF, Antp-RG, Antp-RH, Antp-RI, Antp-RJ, Antp-RK, Antp-RL, Antp-RM, Antp-RO of Antp. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "32d1a82f-7833-4776-bd78-049410513f12", "aliases:array": "hugo-bellen:osa-MiMIC-GFP", "modified_site_by_target_id": "eGFP-osa-dmelanogaster", "introduced_tags:object:array": "location:other, name: eGFP;location:other, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:please-contact-lab, url:http://flypush.imgen.bcm.tmc.edu/pscreen/", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: osa-RA, osa-RB, osa-RC, osa-RD, osa-RE, osa-RF of osa. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "788a2a10-175c-4c47-a381-b375b2c1fe4e", "modified_site_by_target_id": "eGFP-nhr-130-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638dA09, url:https://www.sourcebioscience.com/search?search=WRM0638dA09", "description": "wgIs505 [nhr-130::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3b49fea1-d208-43a1-a7ae-f630289362c4", "modified_site_by_target_id": "eGFP-syd-9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623dB10, url:https://www.sourcebioscience.com/search?search=WRM0623dB10", "description": "wgIs434 [syd-9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "dbbf61fe-df9f-4d0c-8562-1fa12649c0b1", "modified_site_by_target_id": "eGFP-lin-22-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627dG07, url:https://www.sourcebioscience.com/search?search=WRM0627dG07", "description": "wgIs153 [lin-22::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e7ca34b4-1b83-4a68-b1c4-33aca8e2fa10", "modified_site_by_target_id": "eGFP-sptf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621cG01, url:https://www.sourcebioscience.com/search?search=WRM0621cG01", "description": "wgIs196 [sptf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "2bffc537-3c38-4f1a-bd41-e3d4f0197fb8", "modified_site_by_target_id": "eGFP-nhr-63-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636aD12, url:https://www.sourcebioscience.com/search?search=WRM0636aD12", "description": "wgIs413 [nhr-63::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3a486287-a17a-48be-bc2b-ea7b5fcc80c4", "modified_site_by_target_id": "eGFP-dve-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624bB05, url:https://www.sourcebioscience.com/search?search=WRM0624bB05", "description": "wgIs398 [dve-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "c2feb0ef-f1c3-4385-bf7d-e40403db0a36", "modified_site_by_target_id": "eGFP-nhr-232-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065aH03, url:https://www.sourcebioscience.com/search?search=WRM065aH03", "description": "wgIs489 [nhr-232::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "334df68e-983c-46b6-a5b8-13b70760aa8c", "modified_site_by_target_id": "eGFP-K09A11.1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aG10, url:https://www.sourcebioscience.com/search?search=WRM0639aG10", "description": "wgIs372 [K09A11.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f036a028-6df7-4e49-95ac-89a954d81b84", "aliases:array": "brenton-graveley:S2R+-CG9998-HA", "modified_site_by_target_id": "HA-U2af50-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "de8bd8f3-6e78-42db-9d50-5149ae5c23a9", "aliases:array": "robert-waterston:OP33-GFP", "modified_site_by_target_id": "eGFP-nhr-25-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM069bB11, url:https://www.sourcebioscience.com/search?search=WRM069bB11", "description": "wgIs33 [nhr-25::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "54dabc65-39d3-40e2-83a0-35a0fe1f8000", "aliases:array": "robert-waterston:OP372-GFP", "modified_site_by_target_id": "eGFP-K09A11.1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aG10, url:https://www.sourcebioscience.com/search?search=WRM0639aG10", "description": "wgIs372 [K09A11.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:04-20-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0fcf0f5e-5c82-44b8-9fcd-662c1520771a", "modified_site_by_target_id": "eGFP-da-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-52O18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCAGCAGCAGCAGCAACAATCACAGCTCGGACACGCCCAGCTTCCGCAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f7df2d15-44ed-4806-a0fb-854106040ce3", "aliases:array": "kevin-white:FOSL2-CRISPR", "modified_site_by_target_id": "eGFP-FOSL2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GUGAGCCUUGGAGCAGGAUU", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the FOSL2 gene. The sequence of the guide RNA was GUGAGCCUUGGAGCAGGAUU.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "ce5df5a7-0579-4e44-9b75-4c5ffbf236aa", "aliases:array": "michael-snyder:YL425_construct", "modified_site_by_target_id": "eGFP-dpl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:dpl-1-celegans;location:C-terminal, name:FLAG, promoter_used:dpl-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "The DPL-1::GFP protein fusion is driven by its own dpl-1 promoter.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "ab509bfa-1fc3-4a90-815f-a4c75e68d965", "aliases:array": "michael-snyder:YL402_construct", "modified_site_by_target_id": "eGFP-lin-35-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans;location:C-terminal, name:FLAG, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "The LIN-35::GFP fusion protein is driven by the pie-1 promoter.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "8d5d7375-c3a6-4c54-8836-fb7b6b1e2290", "aliases:array": "michael-snyder:OP193_construct", "modified_site_by_target_id": "eGFP-sea-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:FLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "This strains transgene was constructed by fosmid recombineering at the TransgeneOmics Unit of the Max Planck Institute of Molecular Cell Biology and Genetics in Dresden. The tagged fosmid was integrated into the genome of an unc-119(ed3) worms using biolistic transformation. The SEA-2::EGFP fusion protein is expressed in the correct sea-2 spatio-temporal expression pattern. This strain was used for ChIP-seq experiments to map the in vivo binding sites for the SEA-2 transcription factor.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "4bade00e-e803-4167-ac5f-72324cc0a3d1", "aliases:array": "kevin-white:AV007_eGFP-fkh", "modified_site_by_target_id": "eGFP-fkh-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-69A05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCTACTACCAGAGTCTTGGCTACCATGCGCCCGCCGGAACCACGAGCTTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b52b0a99-9b7b-4d0f-a2eb-4fb036620ee5", "aliases:array": "kevin-white:AV007_eGFP-E(spl)m7-HLH", "modified_site_by_target_id": "eGFP-E(spl)m7-HLH-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-162F22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACGAGTCTCTGCTCCAGATCAGCAGCCCCGGACAGGTGTGGCGTCCCTGG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "753a0100-1193-49fe-8744-719bd524b715", "aliases:array": "robert-waterston:OP349-GFP", "modified_site_by_target_id": "eGFP-cnd-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615dD02, url:https://www.sourcebioscience.com/search?search=WRM0615dD02", "description": "wgIs349 [cnd-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Elicia Preston RECEIVED:08-03-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "44c90a69-6a66-43ae-80ef-2a8f3139ba12", "aliases:array": "robert-waterston:OP329-GFP", "modified_site_by_target_id": "eGFP-cebp-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0616cF04, url:https://www.sourcebioscience.com/search?search=WRM0616cF04", "description": "wgIs329 [C48E7.11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:02-21-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f3ef629e-a783-454d-966d-a615371ca549", "aliases:array": "robert-waterston:OP439-GFP", "modified_site_by_target_id": "eGFP-nhr-102-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620aC06, url:https://www.sourcebioscience.com/search?search=WRM0620aC06", "description": "wgIs439 [nhr-102::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6259867b-e7bb-4368-b4cc-32da90041822", "aliases:array": "robert-waterston:OP431-GFP", "modified_site_by_target_id": "eGFP-ztf-15-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0626bA07, url:https://www.sourcebioscience.com/search?search=WRM0626bA07", "description": "wgIs431 [R06C7.9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-01-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cec15c16-0fdd-4a0e-9f93-112e85ebf9d1", "aliases:array": "robert-waterston:OP338-GFP", "modified_site_by_target_id": "eGFP-C30G4.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635bE05, url:https://www.sourcebioscience.com/search?search=WRM0635bE05", "description": "wgIs338 [C30G4.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:E Preston-D Vafeados RECEIVED:08-23-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9a016a41-44ec-4296-a54f-aa6d16cf5304", "aliases:array": "robert-waterston:OP352-GFP", "modified_site_by_target_id": "eGFP-nhr-42-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639dA07, url:https://www.sourcebioscience.com/search?search=WRM0639dA07", "description": "wgIs352 [nhr-42::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-08-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "596500c5-e183-46e4-acc2-86cd438143dd", "aliases:array": "robert-waterston:OP386-GFP", "modified_site_by_target_id": "eGFP-F21D5.9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cE04, url:https://www.sourcebioscience.com/search?search=WRM0636cE04", "description": "wgIs386 [F21D5.9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:07-21-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "37ff42c7-d765-4adf-acc9-38993c89124e", "aliases:array": "robert-waterston:OP70-GFP", "modified_site_by_target_id": "eGFP-mep-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067cA04, url:https://www.sourcebioscience.com/search?search=WRM067cA04", "description": "wgIs70 [mep-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-30-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d3653aa1-6e39-4c82-909f-4a0ad5d96e92", "modified_site_by_target_id": "eGFP-ztf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628bD10, url:https://www.sourcebioscience.com/search?search=WRM0628bD10", "description": "ddIs166 [ztf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "748c672a-1f38-47d5-90e2-8805a8033754", "modified_site_by_target_id": "eGFP-rabs-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cB05, url:https://www.sourcebioscience.com/search?search=WRM062cB05", "description": "wgIs224 [rabs-5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "cc20f9bf-5b67-440e-85fc-24f607b3ae8b", "modified_site_by_target_id": "eGFP-pes-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0633dB02, url:https://www.sourcebioscience.com/search?search=WRM0633dB02", "description": "wgIs87 [pes-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f03ceba6-9174-404b-b540-3ddb63b66221", "aliases:array": "robert-waterston:OP463-GFP", "modified_site_by_target_id": "eGFP-nhr-102-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620aC06, url:https://www.sourcebioscience.com/search?search=WRM0620aC06", "description": "wgIs463 [nhr-102::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-14-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "25c083d1-303b-47d9-96e6-8eae8d4df405", "modified_site_by_target_id": "eGFP-nhr-136-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615bC10, url:https://www.sourcebioscience.com/search?search=WRM0615bC10", "description": "wgIs408 [nhr-136::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "1c0905e6-9120-4a46-97ba-b40e6760e9da", "modified_site_by_target_id": "eGFP-nhr-116-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs226 [nhr-116::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "81a816e6-90f0-4324-a058-c5228289b63c", "modified_site_by_target_id": "eGFP-ceh-53-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639dH09, url:https://www.sourcebioscience.com/search?search=WRM0639dH09", "description": "wgIs444 [C09G12.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "69c66cf4-8252-4b95-8fab-24fc081b557b", "modified_site_by_target_id": "eGFP-ets-7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aA07, url:https://www.sourcebioscience.com/search?search=WRM0641aA07", "description": "wgIs486 [F19F10.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f18657e1-c65d-4195-b99e-e870fc3a5d27", "aliases:array": "hugo-bellen:p53-MiMIC-GFP", "modified_site_by_target_id": "eGFP-p53-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:please-contact-lab, url:http://flypush.imgen.bcm.tmc.edu/pscreen/", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: p53-RA, p53-RB, p53-RC, p53-RE of p53. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3db4f7af-1d80-4bce-ab70-bbe3f8b56e63", "aliases:array": "hugo-bellen:jumu-MiMIC-GFP", "modified_site_by_target_id": "eGFP-jumu-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI00438, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI00438", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: of jumu. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "5f689431-b813-435e-8ed8-761d355c546c", "aliases:array": "richard-myers:ETV5-FLAG", "modified_site_by_target_id": "FLAG-ETV5-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "e393c04a-b002-41d9-9bf8-efb0709b3977", "aliases:array": "richard-myers:ERF-FLAG", "modified_site_by_target_id": "FLAG-ERF-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "665f6410-c268-45dd-a42a-c9b5ae3ae7d6", "aliases:array": "richard-myers:KLF6_isoform1-FLAG", "modified_site_by_target_id": "FLAG-KLF6_isoform1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "94a44cb4-0b2f-404f-b6a2-aedb6009ac66", "aliases:array": "richard-myers:DRAP1-FLAG", "modified_site_by_target_id": "FLAG-DRAP1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "d3f9fabf-dfa6-4831-85be-25e397cf46cb", "aliases:array": "richard-myers:MIER2-FLAG", "modified_site_by_target_id": "FLAG-MIER2-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "9fba0284-b424-4313-8568-ab2790feff6d", "aliases:array": "richard-myers:PPARG_isoform1-FLAG", "modified_site_by_target_id": "FLAG-PPARG_isoform1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "2e41b2ca-5b2a-4d8f-9787-92bd734c61d5", "aliases:array": "richard-myers:CEBPG-FLAG", "modified_site_by_target_id": "FLAG-CEBPG-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GTCTAAAGTCTGGAAAGGGTG;GCAAGCTCTAAAGTCTGGAAA", "reagents:object:array": "source:addgene, identifier:86285, url:https://www.addgene.org/86285/; source:addgene, identifier:86344, url:https://www.addgene.org/86344/; source:addgene, identifier:86345, url:https://www.addgene.org/86345/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "66935d6f-a58c-4463-9256-4f2b34f9017c", "aliases:array": "richard-myers:TFDP1-FLAG", "modified_site_by_target_id": "FLAG-TFDP1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "02690d1d-c548-467e-ad85-77210a4e6600", "aliases:array": "richard-myers:NR2F1-FLAG", "modified_site_by_target_id": "FLAG-NR2F1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "52478954-555e-4362-af4c-9deb5e1d4c2b", "aliases:array": "richard-myers:UBP1-FLAG", "modified_site_by_target_id": "FLAG-UBP1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "0779db74-f47b-4acc-9014-5ce34ea674cc", "modified_site_by_target_id": "eGFP-hlh-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs64 [hlh-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "60de84b0-08eb-4c93-8981-01f0107f5033", "modified_site_by_target_id": "eGFP-nhr-129-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064cD08, url:https://www.sourcebioscience.com/search?search=WRM064cD08", "description": "wgIs339 [nhr-129::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "0fbab5ee-d7dd-47d0-b987-da259676d928", "modified_site_by_target_id": "eGFP-lim-6-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621cB12, url:https://www.sourcebioscience.com/search?search=WRM0621cB12", "description": "wgIs387 [lim-6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f3002799-3e34-4d13-8e26-43aec958a753", "modified_site_by_target_id": "eGFP-pos-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638aA11, url:https://www.sourcebioscience.com/search?search=WRM0638aA11", "description": "wgIs503 [pos-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "7d7c6338-b59c-4d9e-904e-e86f5d8176df", "modified_site_by_target_id": "eGFP-aly-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cD11, url:https://www.sourcebioscience.com/search?search=WRM062cD11", "description": "wgIs502 [aly-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f1532f5d-a506-42e3-8e58-11e15f38344e", "modified_site_by_target_id": "eGFP-cebp-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0616cF04, url:https://www.sourcebioscience.com/search?search=WRM0616cF04", "description": "wgIs329 [C48E7.11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "cd278c81-f527-476c-a346-a558619d1137", "modified_site_by_target_id": "eGFP-nhr-149-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061cF09, url:https://www.sourcebioscience.com/search?search=WRM061cF09", "description": "wgIs453 [nhr-149::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "ea748127-c851-4acb-909c-9f3cc850da0f", "modified_site_by_target_id": "eGFP-ceh-39-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065bC11, url:https://www.sourcebioscience.com/search?search=WRM065bC11", "description": "wgIs169 [ceh-39::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6ec346f7-e57a-4d25-b4aa-004d5bd3ec10", "modified_site_by_target_id": "eGFP-nhr-42-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639dA07, url:https://www.sourcebioscience.com/search?search=WRM0639dA07", "description": "wgIs351 [nhr-42::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "9b3f06c8-e44d-4b2c-a29f-9d01088d9c7c", "modified_site_by_target_id": "eGFP-F23B12.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068bG02, url:https://www.sourcebioscience.com/search?search=WRM068bG02", "description": "wgIs429 [F23B12.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "496856bc-ad50-4874-8447-961b9f8da339", "aliases:array": "michael-snyder:YL445_construct", "modified_site_by_target_id": "eGFP-efl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans;location:C-terminal, name:FLAG, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "The EFL-1::GFP protein fusion is driven by the pie-1 promoter.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "dfe74fdf-1785-4435-b5cc-21dc066f60b4", "aliases:array": "michael-snyder:YL468_construct", "modified_site_by_target_id": "eGFP-lin-35-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:mex-5-celegans;location:C-terminal, name:FLAG, promoter_used:mex-5-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "LIN-35 expressed under the germline-specific promoter MEX-5.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "99a13f83-d4ac-4711-be5f-7ab025027377", "aliases:array": "michael-snyder:OP105_construct", "modified_site_by_target_id": "eGFP-dpl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:FLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "This strains transgene was constructed by fosmid recombineering at the TransgeneOmics Unit of the Max Planck Institute of Molecular Cell Biology and Genetics in Dresden. The tagged fosmid was integrated into the genome of an unc-119(ed3) worms using bombardment transformation. The DPL-1::EGFP fusion protein has broad expression pattern, but silence in germline cells. This strain was used for ChIP-seq experiments to map the in vivo binding sites for the DPL-1 transcription factor.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "3d9631bb-07bc-4629-b1cd-5748a88d4e63", "aliases:array": "kevin-white:ZNF740", "modified_site_by_target_id": "eGFP-ZNF740-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-72K11", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF740. The last 50 bases before the stop codon of ZNF740 are as follows: GGATGTGCCAAGGGTGCCAGTCCAAGACTTCCGACGGGCAGTTTTCTCTA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "55755cc9-c9fa-4e1a-8928-04ad8280efb5", "aliases:array": "kevin-white:GTF2A2", "modified_site_by_target_id": "eGFP-GTF2A2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-60B22", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of GTF2A2. The last 50 bases before the stop codon of GTF2A2 are as follows: TACTTTACTTTCTCTTTTGTTTCCTAGATACTGGCTCCAATACTACAGAA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "538de606-ef99-4fa4-920a-a3eac5fea7c7", "aliases:array": "kevin-white:FOXJ2", "modified_site_by_target_id": "eGFP-FOXJ2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-19B8", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of FOXJ2. The last 50 bases before the stop codon of FOXJ2 are as follows: CTGGTGCCAATGAGGAGATCCCTGATGACTTCGACTGGGACTTGATCACT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "d58450f3-1dce-4cb7-b3cb-aaa771b99037", "aliases:array": "kevin-white:ZNF277", "modified_site_by_target_id": "eGFP-ZNF277-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-275I2", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF277. The last 50 bases before the stop codon of ZNF277 are as follows: CTAAACTGTATGCTTTGAAACAAAGCAGTATTTTGAACCAGTTGCTACTA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "db7c21ab-2d3f-47bd-93c3-b7bda4501d84", "aliases:array": "kevin-white:MLL5", "modified_site_by_target_id": "eGFP-KMT2E-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-464F19", "description": "This construct was made using the Human RP11 BAC library, derived from male whole blood, and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of MLL5. The last 50 bases before the stop codon of MLL5 are as follows: CACAGGTGCCACCAACATTTCAAAACAATTACCATGGGTCAGGGTGGCAT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "1b5c1055-b075-4b6e-9d97-59ad94695d20", "aliases:array": "robert-waterston:OP656-GFP", "modified_site_by_target_id": "eGFP-hmbx-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627aB11, url:https://www.sourcebioscience.com/search?search=WRM0627aB11", "description": "wgIs656 [HMBX-1::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f278ada6-d167-4ac2-9ce3-577797cd4f59", "aliases:array": "robert-waterston:OP642-GFP", "modified_site_by_target_id": "eGFP-B0310.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627cH08, url:https://www.sourcebioscience.com/search?search=WRM0627cH08", "description": "wgIs642 [B0310.2::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3dd7df94-11d0-4c26-bac3-be29581df488", "aliases:array": "robert-waterston:OP72-GFP", "modified_site_by_target_id": "eGFP-lin-12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630dF04, url:https://www.sourcebioscience.com/search?search=WRM0630dF04", "description": "wgIs72 [lin-12::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Cell. 2012 Aug 17;150(4):855-66. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Mihail Sarov RECEIVED:03-04-13 from Sarov M, MPI-CBG, Dresden, Germany", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7725d6bf-c1ce-4cda-a9d5-915154d234f8", "aliases:array": "robert-waterston:OP353-GFP", "modified_site_by_target_id": "eGFP-nhr-77-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0611dB10, url:https://www.sourcebioscience.com/search?search=WRM0611dB10", "description": "wgIs353 [nhr-77::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-08-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e335b977-2087-4ad7-859a-b6e19bff0144", "aliases:array": "robert-waterston:OP198-GFP", "modified_site_by_target_id": "eGFP-mml-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM066cF12, url:https://www.sourcebioscience.com/search?search=WRM066cF12", "description": "wgIs198 [mml-1::TY1::EGFP::3xFLAG + unc-119(+)]. Y1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5abbbea7-e7d2-40e5-a111-eb736310f3e4", "aliases:array": "robert-waterston:OP218-GFP", "modified_site_by_target_id": "eGFP-R02D3.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063bB05, url:https://www.sourcebioscience.com/search?search=WRM063bB05", "description": "wgIs218 [R02D3.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:09-04-12 from Kim S, Stanford University Medical School, Stanford, CA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "892612fc-3a17-45d9-ba65-351593fc9926", "aliases:array": "robert-waterston:OP365-GFP", "modified_site_by_target_id": "eGFP-dpl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0622aB11, url:https://www.sourcebioscience.com/search?search=WRM0622aB11", "description": "wgIs365 [dpl-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:02-08-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "df9f51f5-2f60-418a-ab6a-5068bc4b9038", "aliases:array": "robert-waterston:OP387-GFP", "modified_site_by_target_id": "eGFP-lim-6-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621cB12, url:https://www.sourcebioscience.com/search?search=WRM0621cB12", "description": "wgIs387 [lim-6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "70c8de02-d073-49dd-9b3f-05049c99145c", "aliases:array": "robert-waterston:OP27-GFP", "modified_site_by_target_id": "eGFP-mab-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0640bH09, url:https://www.sourcebioscience.com/search?search=WRM0640bH09", "description": "wgIs27 [mab-5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of mab-5 coding sequence of fosmid ID#WRM0640bH09 by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-22-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "051744b5-eaa1-4774-8010-ea3c1c2ca44e", "aliases:array": "robert-waterston:OP432-GFP", "modified_site_by_target_id": "eGFP-zip-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064aD01, url:https://www.sourcebioscience.com/search?search=WRM064aD01", "description": "wgIs432 [zip-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-01-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "513af361-858a-41db-872a-56f249884cbb", "aliases:array": "robert-waterston:OP452-GFP", "modified_site_by_target_id": "eGFP-madf-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cB04, url:https://www.sourcebioscience.com/search?search=WRM0636cB04", "description": "wgIs452 [C01G12.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7e74c2b6-65d5-489d-8cbc-659ca4bdf1ed", "aliases:array": "robert-waterston:OP57-GFP", "modified_site_by_target_id": "eGFP-sem-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638dE10, url:https://www.sourcebioscience.com/search?search=WRM0638dE10", "description": "wgIs57 [sem-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:07-29-12 from Reinke V, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a95e2f3f-7c49-4706-9d34-5a30d176f3aa", "modified_site_by_target_id": "eGFP-hlh-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064cH05, url:https://www.sourcebioscience.com/search?search=WRM064cH05", "description": "wgIs433 [hlh-30::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e1188490-d905-41db-bad3-261bf20bdf7e", "modified_site_by_target_id": "eGFP-mab-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0640bH09, url:https://www.sourcebioscience.com/search?search=WRM0640bH09", "description": "wgIs27 [mab-5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of mab-5 coding sequence of fosmid ID#WRM0640bH09 by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "33fba72e-ec67-4377-94fd-956d9dca930b", "modified_site_by_target_id": "eGFP-C30G4.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635bE05, url:https://www.sourcebioscience.com/search?search=WRM0635bE05", "description": "wgIs338 [C30G4.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3b0eadeb-0831-40fd-934c-c85d83e9bec3", "modified_site_by_target_id": "eGFP-D1046.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aH02, url:https://www.sourcebioscience.com/search?search=WRM0639aH02", "description": "wgIs397 [D1046.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d17f45c2-fc14-405b-b4c8-2856b986d9f1", "aliases:array": "robert-waterston:OP510-GFP", "modified_site_by_target_id": "eGFP-F37D6.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615aE01, url:https://www.sourcebioscience.com/search?search=WRM0615aE01", "description": "wgIs510 [F37D6.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-03-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "bdd22d7c-30fe-48ff-9913-c90863588d3b", "modified_site_by_target_id": "eGFP-mbf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064dE02, url:https://www.sourcebioscience.com/search?search=WRM064dE02", "description": "wgIs379 [mbf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "1c146e81-bb3d-439e-a828-e88477add7f3", "modified_site_by_target_id": "eGFP-nhr-127-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065bB02, url:https://www.sourcebioscience.com/search?search=WRM065bB02", "description": "wgIs409 [nhr-127::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f8fc95bf-03b1-4d57-abcd-fef2d06daf71", "modified_site_by_target_id": "eGFP-egl-38-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0640aG02, url:https://www.sourcebioscience.com/search?search=WRM0640aG02", "description": "wgIs171 [egl-38::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "5a5fff04-7463-4c64-8c43-7bd73bfc8846", "modified_site_by_target_id": "eGFP-fkh-10-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0614aH10, url:https://www.sourcebioscience.com/search?search=WRM0614aH10", "description": "wgIs377 [fkh-10::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "473cda65-7f01-4642-96d5-0f48489daf98", "modified_site_by_target_id": "eGFP-ceh-40-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs232 [ceh-40::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e199c779-8518-4132-98dc-1affebc1bfd6", "aliases:array": "richard-myers:ELF3-FLAG", "modified_site_by_target_id": "FLAG-ELF3-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "c9cd8f44-1c18-43d3-940e-9b889c676ec6", "aliases:array": "richard-myers:PAF1_isoform1-FLAG", "modified_site_by_target_id": "FLAG-PAF1_isoform1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "e10067ba-95b1-48d6-a621-a62da5f0030e", "aliases:array": "richard-myers:HOXA3-FLAG", "modified_site_by_target_id": "FLAG-HOXA3-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "addb7598-d382-44f4-82c0-dbc5af86ef6d", "aliases:array": "richard-myers:ZNF652-FLAG", "modified_site_by_target_id": "FLAG-ZNF652-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GGAGAACACACTAAGGAGA;GTCTCCTGGAGAACACACTA", "reagents:object:array": "source:addgene, identifier:86270, url:https://www.addgene.org/86270/; source:addgene, identifier:86316, url:https://www.addgene.org/86316/; source:addgene, identifier:86317, url:https://www.addgene.org/86317/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "89c45a28-b739-4152-b9cd-fa4d2bea50b2", "aliases:array": "richard-myers:TEAD3-FLAG", "modified_site_by_target_id": "FLAG-TEAD3-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCATCCTTAAGGAGGCGCAG;GTACAAGCTCGTCAAAGACTA", "reagents:object:array": "source:addgene, identifier:86281, url:https://www.addgene.org/86281/; source:addgene, identifier:86337, url:https://www.addgene.org/86337/; source:addgene, identifier:86338, url:https://www.addgene.org/86338/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "bcb7a8dc-cf79-4698-b731-1a9d608da1c1", "aliases:array": "richard-myers:HHEX-FLAG", "modified_site_by_target_id": "FLAG-HHEX-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GTGGATGATGACCACTGGCAT;GTCTGAACATGCCAATGCCAG", "reagents:object:array": "source:addgene, identifier:72353, url:https://www.addgene.org/72353/; source:addgene, identifier:72354, url:https://www.addgene.org/72354/; source:addgene, identifier:72355, url:https://www.addgene.org/72355/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "0fc29797-5b39-411c-ab22-d0c53a5489f4", "aliases:array": "kevin-white:AV007_eGFP-Xbp1", "modified_site_by_target_id": "eGFP-Xbp1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-158K23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGGGCCCGCAGCAGAGCGCTTGGAATCCGACGGGCATAGAGCTAATGGCC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1fd3365e-6492-4321-a25a-3ef0c3d7eef6", "aliases:array": "kevin-white:AV007_eGFP-net", "modified_site_by_target_id": "eGFP-net-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-40C04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TAACATCAACCATCCAAACGGAGGGAAAAGTGAAACGAAAGAAAGACGAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "62ec57b3-c265-4e1f-87ca-6efa2743d1ce", "aliases:array": "kevin-white:AV007_eGFP-az2", "modified_site_by_target_id": "eGFP-az2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-09D13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCTCTCTGTCGTCAAGCGACGCACTCTTTACAAAGACATTCCCTCAGCCT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b9ac22a9-0ba5-4e0c-881f-2f708ec803e4", "aliases:array": "kevin-white:AV007_eGFP-ind", "modified_site_by_target_id": "eGFP-ind-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-179I12, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CATCTCCAGTGTCTCCCCAAGTCAAAGTCCACGAATTGAAGGTTGAGGCG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7b3ad57b-1bb6-4c07-85bf-beab3fa690b7", "modified_site_by_target_id": "eGFP-zip-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064aD01, url:https://www.sourcebioscience.com/search?search=WRM064aD01", "description": "wgIs432 [zip-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "9805fee9-b9c6-400f-b65b-1de41b15b170", "modified_site_by_target_id": "eGFP-ceh-54-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617cA04, url:https://www.sourcebioscience.com/search?search=WRM0617cA04", "description": "wgIs456 [T13C5.4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "82d0ffe5-94c2-4216-a5d7-faf977be0a0a", "aliases:array": "robert-waterston:OP511-GFP", "modified_site_by_target_id": "eGFP-ztf-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062dF11, url:https://www.sourcebioscience.com/search?search=WRM062dF11", "description": "wgIs511 [ztf-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-03-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "aa8b21d0-36c6-4e36-95c7-837934e63e6b", "aliases:array": "hugo-bellen:foxo-MiMIC-GFP", "modified_site_by_target_id": "eGFP-foxo-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI00493, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI00493", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: foxo-RB, foxo-RC, foxo-RF, foxo-RG of foxo. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "4199ea21-c306-4d83-86b0-577d2969bc8b", "aliases:array": "hugo-bellen:bs-MiMIC-GFP", "modified_site_by_target_id": "eGFP-bs-dmelanogaster", "introduced_tags:object:array": "location:other, name: eGFP;location:other, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:please-contact-lab, url:http://flypush.imgen.bcm.tmc.edu/pscreen/", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: bs-RA, bs-RC of bs. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f9dda183-89a1-4a73-a4b6-3854752e7c7e", "modified_site_by_target_id": "eGFP-nhr-162-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613cA02, url:https://www.sourcebioscience.com/search?search=WRM0613cA02", "description": "wgIs466 [nhr-162::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "b206237c-b60c-474d-8494-1256d414f3c0", "modified_site_by_target_id": "eGFP-K09A11.1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aG10, url:https://www.sourcebioscience.com/search?search=WRM0639aG10", "description": "wgIs371 [K09A11.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6811e687-ec83-4c0d-aeef-989087ceed54", "modified_site_by_target_id": "eGFP-cid-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064aD06, url:https://www.sourcebioscience.com/search?search=WRM064aD06", "description": "wgIs428 [cid-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "bd929455-a2ee-4865-8548-a2066c9c6426", "modified_site_by_target_id": "eGFP-nhr-149-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061cF09, url:https://www.sourcebioscience.com/search?search=WRM061cF09", "description": "wgIs457 [nhr-149::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "fa86209e-3bd3-4642-8682-6547632365d7", "modified_site_by_target_id": "eGFP-lin-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624dE10, url:https://www.sourcebioscience.com/search?search=WRM0624dE10", "description": "wgIs348 [lin-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6894b21f-0c2f-443d-a574-b363454d3a64", "aliases:array": "robert-waterston:OP620-GFP", "modified_site_by_target_id": "eGFP-ceh-36-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065bE05, url:https://www.sourcebioscience.com/search?search=WRM065bE05", "description": "wgIs620 [CEH-36::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "98449be7-975c-45df-a1a4-4bcb9fa20cc3", "aliases:array": "robert-waterston:OP677-GFP", "modified_site_by_target_id": "eGFP-che-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM066bC03, url:https://www.sourcebioscience.com/search?search=WRM066bC03", "description": "wgIs677 [CHE-1::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7428796d-bb47-413a-a126-edc545feea79", "aliases:array": "kevin-white:E2F4", "modified_site_by_target_id": "eGFP-E2F4-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-183L23", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of E2F4. The last 50 bases before the stop codon of E2F4 are as follows: ACGAGAGTGAAGGTGTCTGTGACCTCTTTGATGTGCCTGTTCTCAACCTC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "4736c458-8b6e-446d-96aa-8e1799ca01d5", "aliases:array": "kevin-white:NR2C2", "modified_site_by_target_id": "eGFP-NR2C2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-1051P22", "description": "This construct was made using the Human RP11 BAC library, derived from male whole blood, and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of NR2C2. The last 50 bases before the stop codon of NR2C2 are as follows: TCAAGATGGAGACAGCAGAGTATAATGGCCAGATCACCGGAGCCAGTCTA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "1dfd1728-aeee-4250-96eb-57a6d8a4dfac", "aliases:array": "kevin-white:FOSL2", "modified_site_by_target_id": "eGFP-FOSL2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2552O19", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of FOSL2. The last 50 bases before the stop codon of FOSL2 are as follows: GCGGGGACCAATCATCAGACTCCTTGAACTCCCCCACTCTGCTGGCTCTG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "d384342a-acd3-4825-9f4c-fbed221c387b", "aliases:array": "kevin-white:ZBTB40-CRISPR", "modified_site_by_target_id": "eGFP-ZBTB40-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "CGGAUGAAAGGCUGCUCAUU", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZBTB40 gene. The sequence of the guide RNA was CGGAUGAAAGGCUGCUCAUU.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "64cd8c4f-0cc8-4cc3-8ef9-ec181201059a", "aliases:array": "michael-snyder:eGFP_ZNF280C_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF280C-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10595, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10595", "description": "This construct contains an eGFP N-terminal tag to ZNF280C under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "ce97025b-d56d-401f-94c0-36d35a7c7ffb", "aliases:array": "kevin-white:ZNF395-CRISPR", "modified_site_by_target_id": "eGFP-ZNF395-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "CAGCUCAGUCCAGAAAGCGC", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF395 gene. The sequence of the guide RNA was CAGCUCAGUCCAGAAAGCGC.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "0905279e-3f9f-435c-a529-fdf889f98444", "aliases:array": "michael-snyder:eGFP_ZBTB10_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB10-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56858, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56858", "description": "This construct contains an eGFP N-terminal tag to ZBTB10 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "2498a877-c5bb-4b32-8c9e-59d9a78111f6", "aliases:array": "michael-snyder:eGFP_ZNF416_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF416-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00322025, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00322025", "description": "This construct contains an eGFP N-terminal tag to ZNF416 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "6b362fb9-ee91-432e-b2d1-2796a239f2de", "aliases:array": "kevin-white:AV007_eGFP-CG10462", "modified_site_by_target_id": "eGFP-CG10462-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-182I11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATTGTCTTTTTTAAACTGGCTCATAAGATACAGGAAATGCGATTAGGAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3a6f2b22-2472-4cdf-bb12-b1b05962f11e", "aliases:array": "kevin-white:AV007_eGFP-CG15073", "modified_site_by_target_id": "eGFP-CG15073-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-118B02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGGAGATACCATCGAGTTCACTCTGTGTCTCAGTGCCGATACCACAGAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "787b9f4d-1e0d-4c10-90de-50fba3e0906f", "aliases:array": "kevin-white:AV007_eGFP-CG8632", "modified_site_by_target_id": "eGFP-CG8632-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-155J17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TTTAACAGACACAATTCCCGGAAATACGCCATGTGGACCTGGAAATACTC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "27edca04-04f6-487e-9251-c697683d46ed", "aliases:array": "kevin-white:AV007_eGFP-CG9727", "modified_site_by_target_id": "eGFP-CG9727-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-146P15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CAGATGTGGTTGAGGCCATGATTGGTGTCACAGGCATACTCGACGATTTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "128980d2-d47f-4e6b-ad37-f223e5f01cb3", "aliases:array": "kevin-white:AV007_eGFP-CG13775", "modified_site_by_target_id": "eGFP-CG13775-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-36H04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAATGTTGCTCATGAAGGCCAACTTTAGCTTTAGCAATTCGGAAATCAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "523cea06-a6a0-41bb-83cc-a36660a6191e", "aliases:array": "kevin-white:AV007_eGFP-CG12104", "modified_site_by_target_id": "eGFP-CG12104-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-03N08, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCATCCACTGCCGGAATGTATTCAACCACTGGGTAATATCCATGAACTCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e49d24cd-e142-479a-a9ed-0620fa163483", "aliases:array": "kevin-white:AV001_eGFP-Myb", "modified_site_by_target_id": "eGFP-Myb-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-115K18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCGAGAAACAAAAGTGTTTGGTGAATTCGTTCGACCGCTTTGGTTCGCTC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c2124547-9df1-4a48-92c4-09cc70ca10fb", "aliases:array": "kevin-white:AV007_eGFP-cg", "modified_site_by_target_id": "eGFP-cg-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-102F23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCATTACCTTCTCCAATACTTTGCAGCTTGTTGTACCAACTACTTCTTAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e317af40-e6ce-4f43-a83d-7bdd7ef3e8f7", "aliases:array": "kevin-white:AV007_eGFP-CG11723", "modified_site_by_target_id": "eGFP-CG11723-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-08B24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACAGCTCCATGGTTGAGTGCGATGTCAAGATAGAGAATGAGCCTCTGCTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6b930e3c-a488-486c-98e5-85229ebb7f8e", "aliases:array": "kevin-white:AV007_eGFP-eyg", "modified_site_by_target_id": "eGFP-eyg-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-32D04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGTCATCCTCCGATGCGCCGGCCACGTTGCAATTCCTAAAGCATGACCGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b8f02d5b-620f-4a87-9271-a2da4e30ff4a", "modified_site_by_target_id": "eGFP-pos-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638aA11, url:https://www.sourcebioscience.com/search?search=WRM0638aA11", "description": "wgIs475 [pos-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "959d5e86-b9f8-4944-983b-f77c529aab3a", "aliases:array": "hugo-bellen:Pdp1-MiMIC-GFP", "modified_site_by_target_id": "eGFP-Pdp1-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI01532, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI01532", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: Pdp1-RB, Pdp1-RF, Pdp1-RG, Pdp1-RI, Pdp1-RK, Pdp1-RM, Pdp1-RN, Pdp1-RO, Pdp1-RP of Pdp1. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8cf46efc-6ca9-4de2-91d9-ef4e3ba91ae6", "modified_site_by_target_id": "eGFP-lin-15B-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0616dB02, url:https://www.sourcebioscience.com/search?search=WRM0616dB02", "description": "wgIs184 [lin-15B::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "16d23a7f-8f2d-4988-a53a-e0a16ec427ef", "modified_site_by_target_id": "eGFP-unc-130-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638cC05, url:https://www.sourcebioscience.com/search?search=WRM0638cC05", "description": "wgIs77 [unc-130::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "949e6ba2-bbe2-406a-8901-942ef391fbd8", "modified_site_by_target_id": "eGFP-fkh-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs376 [fkh-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3d40f861-296a-49ef-b47d-347771f9edd5", "modified_site_by_target_id": "eGFP-ztf-16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0633cF04, url:https://www.sourcebioscience.com/search?search=WRM0633cF04", "description": "wgIs494 [ztf-16::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "79d69176-14e7-405e-b206-c8ca881c4f6b", "modified_site_by_target_id": "eGFP-ceh-62-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637aE03, url:https://www.sourcebioscience.com/search?search=WRM0637aE03", "description": "wgIs416 [R06F6.6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "000ff8ae-63d4-4193-94b0-6d49dcefbd0e", "aliases:array": "hugo-bellen:Side-MiMIC-GFP", "modified_site_by_target_id": "eGFP-Side-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI00149, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI00149", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: Side-RA, Side-RB, Side-RC, Side-RD of Side. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "49637c3a-dcdc-434c-8436-d1a927cf1807", "modified_site_by_target_id": "eGFP-lin-12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs72 [lin-12::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d8d16c6a-5b32-471d-a022-ed2f1be022d1", "modified_site_by_target_id": "eGFP-gei-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618dB09, url:https://www.sourcebioscience.com/search?search=WRM0618dB09", "description": "wgIs180 [gei-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "5152083d-c28a-433a-997a-8785057f0d0b", "aliases:array": "kevin-white:AV007_eGFP-Esplmgamma-HLH", "modified_site_by_target_id": "eGFP-E%28spl%29m%CE%B3-HLH-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-115N23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCAAGATGGAGGACGACAGCGAGGACGAGGAGAACGTCTGGCGTCCCTGG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d0094470-9fb9-47d3-b636-5affa9cee8d4", "aliases:array": "kevin-white:AV007_eGFP-CG9609", "modified_site_by_target_id": "eGFP-CG9609-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-102P01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGAGCTGCTGGCACAGACCCTGCAGGATGAAGAGGAAAAGGAGCAGGAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "85b4edb9-13ce-4567-87ff-ca7afb225a0f", "aliases:array": "kevin-white:AV007_eGFP-Lpt", "modified_site_by_target_id": "eGFP-Lpt-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-100P18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCAATGTTCTCAACTCCCTAGATTTTGATGACAATGAAAAGTGCTCTACA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3bfec666-cbfb-4606-9a37-18b68660c38d", "aliases:array": "robert-waterston:OR3350-GFP", "modified_site_by_target_id": "eGFP-hif-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "odIs131[fosmid hif-1::2xTY1-GFP-3xFLAG, Cbunc-119(+)]X; unc-119(ed3)III; egl-9(sa307) hif-1(ia4)V", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d4830c5d-13b4-486e-9c11-67c28156eabe", "aliases:array": "robert-waterston:YL529-GFP", "modified_site_by_target_id": "eGFP-let-607-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0631bC05, url:https://www.sourcebioscience.com/search?search=WRM0631bC05", "description": "unc-119(ed3) III; vrIs121[LET-607 fosmid, unc-119 (+)]). Strain generated by bombardment into unc-119(ed3) mutants.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d493c22e-4e73-457d-b777-05082adcf31a", "aliases:array": "michael-snyder:eGFP_ZSCAN4_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN4-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079803, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079803", "description": "This construct contains an eGFP N-terminal tag to ZSCAN4 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "f2ca8f4b-e40e-499b-b758-505b0187103f", "aliases:array": "kevin-white:AV007_eGFP-CG6276", "modified_site_by_target_id": "eGFP-CG6276-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-100M14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGATAAAGATAGCCTTCCAGAACATCCTGCAGGACTACCTGTATCCGGAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fbe624a6-6bb5-4781-a39e-8c5386cb084d", "aliases:array": "kevin-white:AV007_eGFP-CG6765", "modified_site_by_target_id": "eGFP-CG6765-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-185C09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATGCAGTGGCCACAACCACATCTCCTGGAGCATCCACCTCACCGAATGGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3b089244-9e5d-467b-9611-190670736980", "aliases:array": "kevin-white:AV007_eGFP-CTCF", "modified_site_by_target_id": "eGFP-CTCF-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-144M17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCGCTTCCCAGGAGTTTCTGCAGCTGATGGATATGATTGAGCAGGACTCT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0f31c38a-717c-45b7-b56e-36b883025fe1", "aliases:array": "kevin-white:AV007_eGFP-D19B", "modified_site_by_target_id": "eGFP-D19B-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-12I21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGCGGAGGCGGAGGGCACCTCAGTGGACGCACTGAAGTTGGATCATGTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "643eaa82-b625-4cb0-8785-80077091976f", "modified_site_by_target_id": "eGFP-F57C9.4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623aC05, url:https://www.sourcebioscience.com/search?search=WRM0623aC05", "description": "ddEx59 [F57C9.4::TY1::EGFP::3xFLAG + unc-119(+)]. Pick wild-type to maintain array. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "2a311abb-bcff-40ff-9b67-31a65d57b345", "aliases:array": "robert-waterston:OP460-GFP", "modified_site_by_target_id": "eGFP-nhr-80-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM066cC11, url:https://www.sourcebioscience.com/search?search=WRM066cC11", "description": "wgIs460 [nhr-80::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-14-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8d542582-a5ee-419b-b0d7-42bbb8469b8f", "modified_site_by_target_id": "eGFP-nhr-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aC03, url:https://www.sourcebioscience.com/search?search=WRM0639aC03", "description": "wgIs305 [nhr-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "a9f01779-95a0-4792-a18b-7bc677cb9503", "modified_site_by_target_id": "eGFP-F55B11.4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0610aG11, url:https://www.sourcebioscience.com/search?search=WRM0610aG11", "description": "wgIs385 [F55B11.4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "75b49bcf-abdc-4c37-9f69-39cb0cd56946", "modified_site_by_target_id": "eGFP-cnd-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615dD02, url:https://www.sourcebioscience.com/search?search=WRM0615dD02", "description": "wgIs349 [cnd-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "1e5f3a30-f7d8-4673-909a-61ca114f5e27", "modified_site_by_target_id": "eGFP-unc-39-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cG07, url:https://www.sourcebioscience.com/search?search=WRM0636cG07", "description": "wgIs186 [unc-39::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "de03286f-8cd9-4f54-ae53-749055abcefb", "modified_site_by_target_id": "eGFP-hlh-8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063cA11, url:https://www.sourcebioscience.com/search?search=WRM063cA11", "description": "wgIs74 [hlh-8::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "2b74629e-1135-4536-97e3-7d40dad6fb69", "modified_site_by_target_id": "eGFP-ztf-7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618cF06, url:https://www.sourcebioscience.com/search?search=WRM0618cF06", "description": "wgIs332 [ztf-7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "a01a5eb5-c693-4afb-83ee-6b8132f6d72d", "modified_site_by_target_id": "eGFP-npax-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0626aE01, url:https://www.sourcebioscience.com/search?search=WRM0626aE01", "description": "wgIs493 [npax-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "4b2f7abf-b28c-43b7-9d72-d492c59a2b07", "modified_site_by_target_id": "eGFP-F37B4.10-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627aC12, url:https://www.sourcebioscience.com/search?search=WRM0627aC12", "description": "wgIs374 [F37B4.10::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8d00da9d-365f-4e49-9d94-6c78719d9c19", "aliases:array": "michael-snyder:eGFP_ZNF26_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF26-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:11656, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=11656", "description": "This construct contains an eGFP N-terminal tag to ZNF26 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "1e87b613-0720-4efe-8e17-a50bfa408477", "aliases:array": "michael-snyder:eGFP_ZNF645_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF645-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:54270, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=54270", "description": "This construct contains an eGFP N-terminal tag to ZNF645 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "2850b98e-c0e5-4ec1-b18a-170c16e35b44", "aliases:array": "michael-snyder:eGFP_ZBTB48_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB48-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:154, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=154", "description": "This construct contains an eGFP N-terminal tag to ZBTB48 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "7bbfab90-5d3b-4bf9-9723-a769c1ed471a", "aliases:array": "michael-snyder:eGFP_ZNF843_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF843-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10117, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10117", "description": "This construct contains an eGFP N-terminal tag to ZNF843 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "976a9710-26d4-42a2-8d83-30241cb11591", "aliases:array": "michael-snyder:eGFP_IKZF2_FRT_construct", "modified_site_by_target_id": "eGFP-IKZF2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:9413, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=9413", "description": "This construct contains an eGFP N-terminal tag to IKZF2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6cb6b720-7866-4818-9316-c96a2355d717", "aliases:array": "michael-snyder:eGFP_IKZF3_FRT_construct", "modified_site_by_target_id": "eGFP-IKZF3-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10016, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10016", "description": "This construct contains an eGFP N-terminal tag to IKZF3 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "02170db0-e948-4bae-a8d2-b4cca4c5d671", "aliases:array": "michael-snyder:eGFP_OSR2_FRT_construct", "modified_site_by_target_id": "eGFP-OSR2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1059, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1059", "description": "This construct contains an eGFP N-terminal tag to OSR2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "beb49378-a721-4a68-b36c-86deb573378c", "aliases:array": "michael-snyder:eGFP_ZFP62_FRT_construct", "modified_site_by_target_id": "eGFP-ZFP62-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZFP62, synthesized by Life Technologies (using the sequence identified by ENST00000502412), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "314a2861-c5b3-4e48-8fba-ba2ea51883ae", "aliases:array": "michael-snyder:eGFP_GLI4_FRT_construct", "modified_site_by_target_id": "eGFP-GLI4-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00044997, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00044997", "description": "This construct contains an eGFP N-terminal tag to GLI4 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "fe345175-7e05-4a77-95be-aa55cee98acf", "aliases:array": "michael-snyder:eGFP_KLF16_FRT_construct", "modified_site_by_target_id": "eGFP-KLF16-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000250916, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?g=ENSG00000129911;r=19:1852399-1863568;t=ENST00000250916", "description": "This construct contains an eGFP N-terminal tag to KLF16, synthesized by Life Technologies (using the sequence identified by ENST00000250916), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "f347a76c-d632-4ad8-ace1-9ef9756891df", "aliases:array": "kevin-white:AV007_eGFP-Pdp1", "modified_site_by_target_id": "eGFP-Pdp1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-95K17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AACAGGAGAACATGGACTTGCGTGCACGTCTATCGAAATTCCAAGATGTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e22dbb5b-522a-48d8-8714-8beb21d496ea", "modified_site_by_target_id": "eGFP-eve-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH322-103K22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH322_103K22 has been chosen to target the gene even skipped. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of ATT sites. Recombinant individuals were screened based on mini-white presence. The line has been stabilized as homozygous for the transgene.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "7b18d72e-dcd5-4186-8809-6b31bdacc540", "modified_site_by_target_id": "eGFP-h-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH322-135D17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH322_135D17 has been chosen to target the gene hairy. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of ATT sites. Recombinant individuals were screened based on mini-white presence. The line has been stabilized as homozygous for the transgene.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "1b779898-e4a5-4e8d-89e6-7b6dde137547", "aliases:array": "kevin-white:AV007_eGFP-cyc", "modified_site_by_target_id": "eGFP-cyc-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-113P08, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCTGGACGAGCGAGATTGACTATATAATCGCCAAGAATTCCGTGTTCTTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5114ecbe-9738-4d8f-b213-f5bf55ca0318", "aliases:array": "kevin-white:AV001_eGFP-kay", "modified_site_by_target_id": "eGFP-kay-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-04M02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGCTGGAGCTGCCCACGCCCACCGCCGAGCCGTCCAAGCTGGTCAGCTTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1b4be08b-8d3a-45ba-a488-c27036e338a6", "aliases:array": "kevin-white:AV007_eGFP-pros", "modified_site_by_target_id": "eGFP-pros-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-40A12, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATCCCGTGCCCGAGTACTTCAAGTCGCCCAATTTTTTAGAGCAGCTGGAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a496dde7-c2ba-4c39-a3cb-b35c5741595d", "aliases:array": "kevin-white:AV001_eGFP-lola-RJ", "modified_site_by_target_id": "eGFP-lola-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64B21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGAAGCACAAACACAATCTCGTGCTGCATATGCGCACCCACCAACATCGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4624dfeb-b028-4fe0-8e06-088a41fe02a9", "modified_site_by_target_id": "YFP-eve-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "BACRO1LO1 that contains the eve gene has been modified to integrate YFP after the stop codon by recombineering. Homology arms have been inserted on both sides of the genes to incorporate a 17kb fragment into flies carrying an attP2 docking site. Once homozygous transgenic line has been obtained, it has been crossed with flies mutant for eve (eveR13).", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "1d6eae38-f1dc-458c-9a08-984c953eaff4", "aliases:array": "kevin-white:AV001_eGFP-ab", "modified_site_by_target_id": "eGFP-ab-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-73P09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACTCCGATGCCGAGGAGAACTACTCGGAGGATGAGGGAGTGCACAACACA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7ad921de-f854-4501-9b93-93296b0fdcdd", "aliases:array": "kevin-white:AV007_eGFP-CG3838", "modified_site_by_target_id": "eGFP-CG3838-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-118E24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GATCTGTTAAGCATCAAAGGCGCAGCTCTGGACGCGATTGGAGGAAACAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0a81abcd-71cc-493e-8b4b-588089d773a0", "modified_site_by_target_id": "eGFP-gmeb-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618aD03, url:https://www.sourcebioscience.com/search?search=WRM0618aD03", "description": "wgIs343 [C01B12.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "17079cbc-68a9-44b0-bd10-5fc01df3197c", "aliases:array": "cgc:OP228-GFP", "modified_site_by_target_id": "eGFP-nhr-237-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs228 [nhr-237::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "596cfa74-363b-4fec-bdfa-447af7cd1830", "aliases:array": "modencode:OP203-GFP", "modified_site_by_target_id": "eGFP-nhr-76-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "dc8e5f47-66d0-4d22-af7e-474791888cd3", "aliases:array": "cgc:OP37-GFP", "modified_site_by_target_id": "eGFP-pha-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617dE06, url:https://www.sourcebioscience.com/search?search=WRM0617dE06", "description": "wgIs37 [pha-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence of fosmid by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "155772f4-2093-43e4-9940-6d3e190ba9b8", "aliases:array": "cgc:OP395-GFP", "modified_site_by_target_id": "eGFP-unc-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs395 [unc-30::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "ea3d7fc5-9ccc-40d1-b15a-23cbb25f78a9", "aliases:array": "cgc:OP184-GFP", "modified_site_by_target_id": "eGFP-lin-15B-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs184 [lin-15B::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "385cacc7-7875-45ca-92ac-c9d041c9ad8e", "aliases:array": "cgc:OP425-GFP", "modified_site_by_target_id": "eGFP-crh-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs425 [C27D6.4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "6a988f1c-97b0-4757-b028-0e4e0ccd16ac", "aliases:array": "michael-snyder:eGFP_HBP1_CRISPR_construct", "modified_site_by_target_id": "eGFP-HBP1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the HBP1 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "c5bfe2f1-1d34-4fe0-b43a-8aea5c3345d8", "aliases:array": "michael-snyder:eGFP_SRF_CRISPR_construct", "modified_site_by_target_id": "eGFP-SRF-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the SRF gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "979d2657-d362-409b-8e2f-3e672c184f73", "aliases:array": "michael-snyder:eGFP_ZNF227_CRISPR_construct", "modified_site_by_target_id": "eGFP-ZNF227-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF227 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "bcc05b48-0a69-462b-9fc6-672b8e36dbfd", "aliases:array": "kevin-white:AV007_eGFP-Meics", "modified_site_by_target_id": "eGFP-Meics-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-180G22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCTCCCAGAAGAGCTTAAAAAAGCACTTGCGACTTCACAACCTAAAGAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d72b716d-35df-418e-927e-5f15665af1b8", "aliases:array": "kevin-white:AV007_eGFP-tj", "modified_site_by_target_id": "eGFP-tj-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-08H17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GAGGTGCAACCGCCGGCGGCGATAGCCAAAGCTCTCCGGAATTCTACCTC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ec47a353-c213-4500-ba1c-ce728c775631", "aliases:array": "kevin-white:AV007_eGFP-YL-1", "modified_site_by_target_id": "eGFP-YL-1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-114C05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGAGAATCGTCTGAAGGCTTCGGCAGCTGCCAGCAAAAACGGAGATAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "64a20f20-f637-4ee1-8bc1-86224a3b6b92", "aliases:array": "michael-snyder:eGFP_ZNF662_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF662-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56424, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56424", "description": "This construct contains an eGFP N-terminal tag to ZNF662 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "e1020b38-2913-4b41-b759-8a1aca5cb305", "aliases:array": "michael-snyder:eGFP_ZNF189_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF189-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:54338, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=54338", "description": "This construct contains an eGFP N-terminal tag to ZNF189 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "067ab743-24d5-4782-a851-94c86b5fe515", "aliases:array": "michael-snyder:eGFP_ZNF571_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF571-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56216, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56216", "description": "This construct contains an eGFP N-terminal tag to ZNF571 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "dd2c8b10-eaa4-45d1-a1a5-d6ec8986bdec", "aliases:array": "michael-snyder:eGFP_ZNF148_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF148-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:14722, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=14722", "description": "This construct contains an eGFP N-terminal tag to ZNF148 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "6ced4e87-a300-4bbf-bf72-214ec51b47fc", "aliases:array": "michael-snyder:eGFP_ZNF410_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF410-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:11738, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=11738", "description": "This construct contains an eGFP N-terminal tag to ZNF410 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "f8ee20c4-6a79-4367-b526-c6a2fb436423", "aliases:array": "robert-waterston:OP195-GFP", "modified_site_by_target_id": "eGFP-rbr-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063cG12, url:https://www.sourcebioscience.com/search?search=WRM063cG12", "description": "wgIs195(rbr-2::TY1 EGFP 3xFLAG;unc-119(+))", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "bd9c9dca-ddfe-4889-998a-6c7b93c95509", "aliases:array": "robert-waterston:OP518-GFP", "modified_site_by_target_id": "eGFP-nhr-48-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068bG10, url:https://www.sourcebioscience.com/search?search=WRM068bG10", "description": "wgIs518(nhr-48::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0089_1G07);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d14af80e-af9d-44b3-81af-b911802e42d4", "modified_site_by_target_id": "eGFP-elt-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613aE03, url:https://www.sourcebioscience.com/search?search=WRM0613aE03", "description": "wgIs75 [elt-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6cf67223-d688-4ccc-b353-dbc9cece5752", "modified_site_by_target_id": "eGFP-ceh-24-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065cF04, url:https://www.sourcebioscience.com/search?search=WRM065cF04", "description": "wgIs157 [ceh-24::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "ef085954-dfa3-45a8-b95f-5d404cc34556", "modified_site_by_target_id": "eGFP-blmp-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0622cF11, url:https://www.sourcebioscience.com/search?search=WRM0622cF11", "description": "wgIs109 [blmp-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of blmp-1 coding sequence of fosmid ID#WRM0622cF11 by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d8fbf888-ce3c-434a-b061-d40b1ef339bc", "modified_site_by_target_id": "eGFP-nhr-100-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621cD11, url:https://www.sourcebioscience.com/search?search=WRM0621cD11", "description": "wgIs366 [nhr-100::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "5faa9db3-3f3a-437c-9925-e46337dc03fa", "modified_site_by_target_id": "eGFP-zag-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063aA08, url:https://www.sourcebioscience.com/search?search=WRM063aA08", "description": "wgIs83 [zag-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "95f20d99-7b7c-4494-bcf8-7cb03977c9c8", "modified_site_by_target_id": "eGFP-ttx-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs68 [ttx-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6c6f1eb4-8724-4288-a8cf-7f9fcf55e50e", "modified_site_by_target_id": "eGFP-med-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615bD03, url:https://www.sourcebioscience.com/search?search=WRM0615bD03", "description": "wgIs390 [med-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "4ec76380-a8ba-4a3e-a4e1-437680ee5d14", "modified_site_by_target_id": "eGFP-nhr-168-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062aD04, url:https://www.sourcebioscience.com/search?search=WRM062aD04", "description": "wgIs412 [nhr-168::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "bb8a28d2-2186-400c-855a-ebc876196cc1", "modified_site_by_target_id": "eGFP-lsy-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0634bD08, url:https://www.sourcebioscience.com/search?search=WRM0634bD08", "description": "wgIs400 [F47H4.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "64797841-1b15-4a93-8a30-7f0b4ca366a7", "modified_site_by_target_id": "eGFP-unc-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065aH04, url:https://www.sourcebioscience.com/search?search=WRM065aH04", "description": "wgIs162 [unc-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "c832443f-9374-4231-a544-923b3c16d895", "aliases:array": "michael-snyder:eGFP_MAZ_FRT_construct", "modified_site_by_target_id": "eGFP-MAZ-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:13564, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=13564", "description": "This construct contains an eGFP N-terminal tag to MAZ under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "68948546-cf4d-436d-a2af-8502df517eb2", "aliases:array": "michael-snyder:eGFP_ZNF138_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF138-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00366250, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00366250", "description": "This construct contains an eGFP N-terminal tag to ZNF138 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "055c7a1d-c551-4009-aeb0-8277c9bfc01c", "aliases:array": "michael-snyder:eGFP_ZNF324_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF324-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:4991, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=4991", "description": "This construct contains an eGFP N-terminal tag to ZNF324 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "c83de5ef-42ca-480e-90da-50dfc189c86c", "aliases:array": "michael-snyder:eGFP_ZNF16_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF16-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00377284, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00377284", "description": "This construct contains an eGFP N-terminal tag to ZNF16 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b9c7fea8-f85b-4c52-b862-b7e9785f3ead", "aliases:array": "michael-snyder:eGFP_FEZF1_FRT_construct", "modified_site_by_target_id": "eGFP-FEZF1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00378958, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00378958", "description": "This construct contains an eGFP N-terminal tag to FEZF1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "443e0593-1a26-45f8-9c65-70ef8c50e160", "aliases:array": "michael-snyder:eGFP_GFI1B_FRT_construct", "modified_site_by_target_id": "eGFP-GFI1B-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000339463, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?g=ENSG00000165702;r=9:132945551-132991687;t=ENST00000339463", "description": "This construct contains an eGFP N-terminal tag to GFI1B, synthesized by Life Technologies (using the sequence identified by ENST00000339463), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "f76ec69d-7214-4faa-a262-9c4bb3916f79", "aliases:array": "michael-snyder:eGFP_BCL11B_FRT_construct", "modified_site_by_target_id": "eGFP-BCL11B-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000345514, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?g=ENSG00000127152;r=14:99169287-99271485;t=ENST00000345514", "description": "This construct contains an eGFP N-terminal tag to BCL11B, synthesized by Life Technologies (using the sequence identified by ENST00000345514), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "7fcdae0b-be02-42a1-9c5a-f99a0387365c", "aliases:array": "michael-snyder:eGFP_REST_FRT_construct", "modified_site_by_target_id": "eGFP-REST-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00437813, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00437813", "description": "This construct contains an eGFP N-terminal tag to REST under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "7cc9a9c2-1bbb-4247-b99b-7d432b970cef", "aliases:array": "michael-snyder:eGFP_ZNF24_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF24-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00370518, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00370518", "description": "This construct contains an eGFP N-terminal tag to ZNF24 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "3947128f-3c2f-4d46-a135-d66d804950d7", "aliases:array": "michael-snyder:eGFP_ZNF436_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF436-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:11396, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=11396", "description": "This construct contains an eGFP N-terminal tag to ZNF436 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6e648ca9-4781-4415-a12c-399c4b3c0379", "aliases:array": "kevin-white:AV001_eGFP-Ets97D", "modified_site_by_target_id": "eGFP-Ets97D-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-67I05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAACGGCGCCCGAGCGCGTAGCCGCAACGGAAACAATTACAGAAGACACG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "399ab021-df3e-42f1-aab2-544069b065b4", "aliases:array": "kevin-white:AV007_eGFP-maf-S", "modified_site_by_target_id": "eGFP-maf-S-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-45C22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGTTCGCCATCCAGAACGAGATACCCATTCCCAGCGAGCTGGAGGGCTGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0e9b303e-44fb-4f93-9b98-efef1617ff47", "aliases:array": "kevin-white:AV007_eGFP-pb", "modified_site_by_target_id": "eGFP-pb-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-02B07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TTCTGAGCAACTTGGCCAACGATTTTGCGCCGGAATACTACCAACTCAGT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d164f6f1-a610-4cdc-9c96-f1840c6cb7a7", "aliases:array": "robert-waterston:OP388-GFP", "modified_site_by_target_id": "eGFP-lim-6-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621cB12, url:https://www.sourcebioscience.com/search?search=WRM0621cB12", "description": "wgIs388 [lim-6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c4222377-9617-4e12-bed2-1fed23a97af3", "aliases:array": "robert-waterston:OP496-GFP", "modified_site_by_target_id": "eGFP-ztf-18-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621aG01, url:https://www.sourcebioscience.com/search?search=WRM0621aG01", "description": "wgIs496(ztf-18::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0094B08);unc-119(+));unc-119 (null)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "08ca8a4c-8cc3-4c57-97c0-f1dd8c795e62", "aliases:array": "robert-waterston:OP154-GFP", "modified_site_by_target_id": "eGFP-pag-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617dA02, url:https://www.sourcebioscience.com/search?search=WRM0617dA02", "description": "wgIs154 [pag-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "84f49f0a-1b69-4452-82d4-a375488b5cb3", "aliases:array": "robert-waterston:OP514-GFP", "modified_site_by_target_id": "eGFP-spr-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628bF09, url:https://www.sourcebioscience.com/search?search=WRM0628bF09", "description": "wgIs514 [spr-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fc557f34-e084-41a0-ace0-dc63c7abd9c1", "aliases:array": "robert-waterston:OP528-GFP", "modified_site_by_target_id": "eGFP-snu-23-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620bC09, url:https://www.sourcebioscience.com/search?search=WRM0620bC09", "description": "wgIs528(snu-23::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0094_4B11);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "793b05b2-2c33-4a65-9839-499163ace384", "aliases:array": "robert-waterston:OP92-GFP", "modified_site_by_target_id": "eGFP-sdc-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0610cB01, url:https://www.sourcebioscience.com/search?search=WRM0610cB01", "description": "wgIs92(sdc-2::TY1 EGFP 3xFLAG(P000006_C08); unc-119(+));unc-119(ed3)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e5012b23-91ef-48cc-ab6f-936d9b3474a8", "modified_site_by_target_id": "eGFP-ILK-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-438D16", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ILK. The last 50 bases before the stop codon of ILK are as follows: GACCCAAATTTGACATGATTGTGCCTATCCTTGAGAAGATGCAGGACAAG", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "aabd1a24-7486-4f6b-8ba4-507031f0b234", "aliases:array": "michael-snyder:eGFP_ZNF84_CRISPR_construct", "modified_site_by_target_id": "eGFP-ZNF84-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF84 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "4ec7868c-9ecf-4cfc-bc76-446a1862746b", "aliases:array": "michael-snyder:eGFP_DDIT3_CRISPR_construct", "modified_site_by_target_id": "eGFP-DDIT3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the DDIT3 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "17fa5c6d-c0fc-48d0-a3bd-264bee4d00c7", "aliases:array": "michael-snyder:eGFP_NR2F6_CRISPR_construct", "modified_site_by_target_id": "eGFP-NR2F6-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the NR2F6 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "d06361dd-91e3-4f51-afe6-577ec04bbbb5", "aliases:array": "michael-snyder:eGFP_THRB_CRISPR_construct", "modified_site_by_target_id": "eGFP-THRB-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the THRB gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "35f37b9b-bd2f-42a3-8740-4e1a271ec2a5", "aliases:array": "robert-waterston:OP524_construct", "modified_site_by_target_id": "eGFP-ceh-34-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs524 [ceh-34::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "b8926084-8ec4-4e47-bc17-0cd313d71adf", "aliases:array": "robert-waterston:TQ1101-GFP", "modified_site_by_target_id": "eGFP-madf-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "Defective phototaxis (light avoidance). To identify lite-1(xu7) homozygotes, place day 1 adults on a freshly seeded NGM plate witha thin lawn of OP50. Deliver 2 second pulses of short wavelength light (UV, purple, blue) from an arc lamp to the head of a worm that is slowly moving forward through a 5-10x objective lens in conjunction with a room lens under a fluorescent dissection scope. Manually move the plate so only the anterior of the worm appears in the field of view. Wild-type worms respond by initiating reversals while homozygous mutants do not. (2010) Nature Neurosci 13:715-22. MADE BY:Jingwei Gao RECEIVED:06-08-10 from Xu S, University of Michigan, Ann Arbor, MI", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "17617f37-c8f0-43a7-bdc9-4b862dbcb758", "aliases:array": "robert-waterston:LSJ1-GFP", "modified_site_by_target_id": "eGFP-nhr-149-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "This strain has been grown axenically in liquid culture for several years. It was grown on E. coli OP50 so that it could be raised on agar plates and frozen. It will need to have the E. coli removed. This culture originated at UC Berkeley and was once called C. briggsae UC Berkeley strain. Caenorhabditis elegans wild isolate. RECEIVED:09-01-95 from Lu N, San Jose State University, San Jose, CA", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b6d96279-b0db-4d87-979d-60d1dc93c5f1", "aliases:array": "brenton-graveley:S2R+-CG42670-HA", "modified_site_by_target_id": "HA-ps-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "bd7fb184-1f53-4dda-8061-31521bcb462e", "aliases:array": "brenton-graveley:S2R+-CG8749-HA", "modified_site_by_target_id": "HA-snRNP-U1-70K-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "ad523219-ec62-4407-9752-d57ec59a6e19", "aliases:array": "robert-waterston:OP109-GFP", "modified_site_by_target_id": "eGFP-blmp-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0622cF11, url:https://www.sourcebioscience.com/search?search=WRM0622cF11", "description": "wgIs109 [blmp-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of blmp-1 coding sequence of fosmid ID#WRM0622cF11 by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:modEncode RECEIVED:03-22-10 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5c7489ff-506f-4ccc-a513-a85b405049b7", "aliases:array": "robert-waterston:OP534-GFP", "modified_site_by_target_id": "eGFP-zfp-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061cE05, url:https://www.sourcebioscience.com/search?search=WRM061cE05", "description": "wgIs534(zfp-2::TY1 EGFP 3xFLAG(p_wTRG5_single_colony_c_0091_5A09);unc-119(+));unc-119 (tm4063)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0d3d9a86-4be7-420c-928e-d84554ef5f7a", "aliases:array": "robert-waterston:OP63-GFP", "modified_site_by_target_id": "eGFP-hlh-8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063cA11, url:https://www.sourcebioscience.com/search?search=WRM063cA11", "description": "stIs10468(hlh-8::TY1 EGFP 3xFLAG(P000006_E02); unc-119(+));unc-119(ed3)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "aff58455-37aa-4bfd-be92-134d751fee48", "aliases:array": "robert-waterston:OP173-GFP", "modified_site_by_target_id": "eGFP-unc-42-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636dG10, url:https://www.sourcebioscience.com/search?search=WRM0636dG10", "description": "wgIs173(unc-42::TY1 EGFP 3xFLAG(P000006_A09); unc-119(+));unc-119(ed3)", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "030bb2ad-36e0-4408-a998-ba123b4f2491", "modified_site_by_target_id": "eGFP-ILF3-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-328C15", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ILF3. The last 50 bases before the stop codon of ILF3 are as follows: AAGGCGGCTATGGCAGAAACGCAGACCACAGCATGAACTACCAGTACAGA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "d0e162b3-eba9-4ab3-85be-6591c110d904", "aliases:array": "kevin-white:AV007_eGFP-Max", "modified_site_by_target_id": "eGFP-Max-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-159K20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCGACCAGGACTTCAGTAGACGCAATAAAAAGATGAAGACCTTCCACGCA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f98c4d8f-44e8-4dce-a4fe-dea71fc195c3", "modified_site_by_target_id": "eGFP-REL-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-118C1", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of REL. The last 50 bases before the stop codon of REL are as follows: TGCAAAATGAGCAATTGAGTGACTCCTTTCCATATGAATTTTTTCAAGTA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "8edd378d-35e0-4a9b-b699-1555d4fa3fcf", "aliases:array": "kevin-white:AV007_eGFP-CG3163", "modified_site_by_target_id": "eGFP-CG3163-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-91I05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGTTTATGGGCGTGGACAATGCAACAGTTTACCTAGAGAGCCACAGTAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d897048b-c00a-4b90-9f58-2b078ac444ef", "aliases:array": "kevin-white:AV007_eGFP-CG1792", "modified_site_by_target_id": "eGFP-CG1792-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-90L08, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCATGCAGACAGGGGCTAAGGATGAGGCTTTACTAGGAAAAAGTGGATCT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "da511682-a1b8-4806-8527-5d6b5ad34ba0", "aliases:array": "kevin-white:AV007_eGFP-CG8388", "modified_site_by_target_id": "eGFP-CG8388-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-130A04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGTACCTGCAGAAGCGATAGCAACTACCAGCAGCCCTCGAGCAGAATGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "eba3be1b-c991-44b3-a75e-9b91fbb442ba", "aliases:array": "kevin-white:AV007_eGFP-CG10565", "modified_site_by_target_id": "eGFP-CG10565-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-15L17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCTGGTCGAGCTGGTTAACTCCAAGAAGGAGGCACAGGCGGCGGTCAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "39c8d5cb-7baf-4fe4-b5cd-5c587a8221de", "aliases:array": "brenton-graveley:S2R+-CG4816-HA", "modified_site_by_target_id": "HA-qkr54B-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "41fa0f99-fc7d-400c-a655-46ca3aa928a7", "aliases:array": "brenton-graveley:S2R+-CG10203-HA", "modified_site_by_target_id": "HA-x16-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "dd98dcc6-7e2d-453d-9370-5cc5bcc5155a", "aliases:array": "brenton-graveley:S2R+-CG12749-HA", "modified_site_by_target_id": "HA-Hrb87F-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "24e7708f-527d-4dd3-b9e4-b832d7960024", "aliases:array": "brenton-graveley:S2R+-CG1559-HA", "modified_site_by_target_id": "HA-Upf1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "5d8fb244-afc2-4a75-8b35-1f5af5b0b1a3", "aliases:array": "brenton-graveley:S2R+-CG3613-HA", "modified_site_by_target_id": "HA-qkr58E-1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "fa4fcaad-ed20-45da-8e50-a35f99d14db0", "aliases:array": "brenton-graveley:S2R+-CG8636-HA", "modified_site_by_target_id": "HA-CG8636-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "1ab57144-cd58-4a37-a76a-46cb284b7379", "aliases:array": "brenton-graveley:S2R+-CG4602-HA", "modified_site_by_target_id": "HA-Srp54-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "2aa50522-9bed-4f8d-8ede-1ea58c45aeba", "aliases:array": "brenton-graveley:S2R+-CG10128-HA", "modified_site_by_target_id": "HA-tra2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "e32ee84d-babb-4747-ae02-6d1c394fd599", "aliases:array": "brenton-graveley:S2R+-CG6779-HA", "modified_site_by_target_id": "HA-RpS3-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "aef39336-f688-4f81-96e6-74049a95583f", "aliases:array": "robert-waterston:OP383-GFP", "modified_site_by_target_id": "eGFP-F49E8.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0634aC04, url:https://www.sourcebioscience.com/search?search=WRM0634aC04", "description": "wgIs383 [F49E8.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT RECEIVED:06-13-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8dcb1580-7bad-4a42-9f02-995b57b209c1", "aliases:array": "michael-snyder:eGFP_KLF2_FRT_construct", "modified_site_by_target_id": "eGFP-KLF2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00337773, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00337773", "description": "This construct contains an eGFP N-terminal tag to KLF2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "86272d39-9510-486f-b6fa-8aa59875aaa1", "aliases:array": "michael-snyder:eGFP_PRDM6_FRT_construct", "modified_site_by_target_id": "eGFP-PRDM6-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000407847, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?g=ENSG00000061455;r=5:123089121-123194266;t=ENST00000407847", "description": "This construct contains an eGFP N-terminal tag to PRDM6, synthesized by Life Technologies (using the sequence identified by ENST00000407847), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "7592549c-fc9e-4611-b7bc-baaf0a96e122", "aliases:array": "michael-snyder:eGFP_ZBTB4_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB4-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:11440, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=11440", "description": "This construct contains an eGFP N-terminal tag to ZBTB4 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d348e980-a34e-4eef-a6f1-f819f39a4748", "aliases:array": "michael-snyder:eGFP_ZNF626_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF626-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399393, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00399393", "description": "This construct contains an eGFP N-terminal tag to ZNF626 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b06e3e28-af76-4353-b80d-320c2f66616c", "aliases:array": "kevin-white:AV007_eGFP-CG5204", "modified_site_by_target_id": "eGFP-CG5204-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-169J23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GTGGTCAATCAGACGAAACGACATCCGCTGATGAATCCAATGAAAGCGAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "37690455-fe06-43d2-a150-be521e45563d", "aliases:array": "kevin-white:AV007_eGFP-CG8478", "modified_site_by_target_id": "eGFP-CG8478-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-02G14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACCAGCTTAAGAAGATGACCGGCAGAGAGGATGCACAGAGTGCCCACGAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4147e2c3-a34d-4ea1-9c15-604ba7ed7be1", "aliases:array": "michael-snyder:eGFP_ZNF18_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF18-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:2116, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=2116", "description": "This construct contains an eGFP N-terminal tag to ZNF18 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "55e1f6e8-83b0-4f2b-9190-dee652d14b15", "aliases:array": "michael-snyder:eGFP_ZNF184_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF184-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:8172, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=8172", "description": "This construct contains an eGFP N-terminal tag to ZNF184 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "a686dccd-eabb-4086-b197-20f9e66fea33", "aliases:array": "michael-snyder:eGFP_ZNF404_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF404-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:52793, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=52793", "description": "This construct contains an eGFP N-terminal tag to ZNF404 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "4d337c62-95d0-4658-bbd7-7beccd177d6f", "aliases:array": "michael-snyder:eGFP_ZNF423_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF423-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:53498, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=53498", "description": "This construct contains an eGFP N-terminal tag to ZNF423 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "3947afc3-172d-464f-9e60-cfa04c3a4ed6", "aliases:array": "kevin-white:AV007_eGFP-insv", "modified_site_by_target_id": "eGFP-insv-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-187B24, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACGTCAAGCGACGCAGCAGTGGCATCAAACACGAAAAGGAGAACATTATT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9383caa1-4ea2-4258-8a7f-67e2de368d83", "modified_site_by_target_id": "eGFP-HMGB1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-238E3", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HMGB1. The last 50 bases before the stop codon of HMGB1 are as follows: AGGAGGAAGATGAAGAAGATGAAGATGAAGAAGAAGATGATGATGATGAA", "documents:array": "/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/;/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "90cebb2d-7936-44b6-9830-4a860d33831a", "aliases:array": "kevin-white:AV007_eGFP-fd3F", "modified_site_by_target_id": "eGFP-fd3F-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-159I20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGTTCAACCTTAACTACTTTGGCTATAATCCGGGTAGCGATATCGTCGCT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7dfce40f-f2dd-436b-928c-b21e81961e62", "aliases:array": "kevin-white:AV007_eGFP-CG11398", "modified_site_by_target_id": "eGFP-CG11398-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-114C15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGATGACTGCCATATTTGCAGAGGACGAAAACGAAAGCGAGTTATTCAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "16df2f02-2fc3-4ca6-b3d0-a0ff94f6d62d", "aliases:array": "kevin-white:AV007_eGFP-Dip3", "modified_site_by_target_id": "eGFP-Dip3-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-45I20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGTTCGAGTTCGCCAACATTCTGAAGGACGCCAAGTACAAGGACGAAAGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "72ed3d83-4942-433c-8570-a1b410a2988b", "aliases:array": "kevin-white:AV007_eGFP-pho", "modified_site_by_target_id": "eGFP-pho-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-07I15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TACAGGATAGTGTTACAGAAAACCATGTACCGTTTGTGGTATATGCAGAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6e6d7ecb-8af4-4bdc-8342-cd809e380aee", "aliases:array": "hugo-bellen:Hmx-MiMIC-GFP", "modified_site_by_target_id": "eGFP-Hmx-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI02025, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI02025", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: Hmx-RC, Hmx-RD, Hmx-RE of Hmx. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "4724317f-d703-47dd-a21e-a12d9db3e9e8", "modified_site_by_target_id": "eGFP-C34F6.9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0627dG05, url:https://www.sourcebioscience.com/search?search=WRM0627dG05", "description": "wgIs324 [C34F6.9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "796231c4-8e1e-4002-85f3-067926553cbb", "modified_site_by_target_id": "eGFP-ama-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs34 [ama-1::TY1::EGFP::3xFLAG + unc-119(+)]. Slightly Dpy. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of ama-1 coding sequence of fosmid ID#WRM0610dA01 by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "75ff6664-84d8-4ef4-8efd-0f019a477261", "modified_site_by_target_id": "eGFP-mef-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637bF09, url:https://www.sourcebioscience.com/search?search=WRM0637bF09", "description": "wgIs301 [mef-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "afdfe1f5-a2b7-4b02-a75b-7e27df219baf", "aliases:array": "michael-snyder:YL416_construct", "modified_site_by_target_id": "eGFP-hpl-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:ges-1-celegans;location:C-terminal, name:FLAG, promoter_used:ges-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "The HPL-2::GFP fusion protein is driven by the ges-1 promoter and is expressed in the intestine.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "009fcb4d-b098-45b6-bd74-ac32256b6de2", "aliases:array": "bradley-bernstein:BioSam_treatment 81", "modified_site_by_target_id": "eGFP-HES5-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bradley-bernstein, identifier:please-contact-lab", "description": "Hes5 promoter fused with GFP cloned by BAC transgenesis", "status": "released", "lab": "bradley-bernstein", "submitted_by": "/users/f74511d2-d30a-44d9-8e54-79104353e7af/", "award": "U54HG006991"}, - {"uuid": "c9a3b292-b85d-4a6a-bc8b-02cad67d3798", "aliases:array": "michael-snyder:YL472_construct", "modified_site_by_target_id": "eGFP-hpl-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:mex-5-celegans;location:C-terminal, name:FLAG, promoter_used:mex-5-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "The HPL-2::GFP fusion protein is driven by the mex-5 promoter and expressed in the germline. N.B. this is an extrachromosomal transgenic array generated by bombardment.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "3009e2d5-3f26-4c00-99b5-0f553f9dcebe", "aliases:array": "michael-snyder:YL390_construct", "modified_site_by_target_id": "eGFP-dpl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans;location:C-terminal, name:FLAG, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "The DPL-1::GFP fusion protein is driven by its own dpl-1 promoter.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "07042a07-d0d0-478d-bbd3-3ff879d22545", "aliases:array": "michael-snyder:YL474_construct", "modified_site_by_target_id": "eGFP-hpl-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:ges-1-celegans;location:C-terminal, name:FLAG, promoter_used:ges-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "The HPL-2::GFP fusion protein is driven by the ges-1 promoter and expressed in the intestine. The original transgene was subsequently crossed into a lin-35 mutant.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "2d615d2f-7dea-4c04-9e50-9acaaf5bcd51", "aliases:array": "robert-waterston:OP537-GFP", "modified_site_by_target_id": "eGFP-mxl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624dF05, url:https://www.sourcebioscience.com/search?search=WRM0624dF05", "description": "wgIs537 [mxl-1::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6298133d-c1ae-4802-9159-fbe08beda0de", "aliases:array": "robert-waterston:OP539-GFP", "modified_site_by_target_id": "eGFP-nhr-85-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM066aA04, url:https://www.sourcebioscience.com/search?search=WRM066aA04", "description": "wgIs539 [nhr-85::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "098e5fbb-a44d-4bb1-a9a7-9ef93f2322ca", "aliases:array": "kevin-white:ZNF354B", "modified_site_by_target_id": "eGFP-ZNF354B-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-21I4", "description": "This construct was made using the Human RP11 BAC library, derived from male whole blood, and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF354B. The last 50 bases before the stop codon of ZNF354B are as follows: ATTATAAAATTCACATTGAAGAGGACTCCTTAAAAGCCGATTTGCATGTG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "75b41a62-56f2-4cc9-9543-c9065d9006fa", "aliases:array": "robert-waterston:OP645-GFP", "modified_site_by_target_id": "eGFP-mls-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068cD04, url:https://www.sourcebioscience.com/search?search=WRM068cD04", "description": "wgIs645 [MLS-2::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "96f613a5-5444-41a4-975c-0e438508932e", "aliases:array": "robert-waterston:OP662-GFP", "modified_site_by_target_id": "eGFP-B0261.1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0626cF02, url:https://www.sourcebioscience.com/search?search=WRM0626cF02", "description": "wgIs662 [B0261.1::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "674a7529-0964-404a-b4c8-aeaa317c928e", "aliases:array": "kevin-white:AV007_eGFP-CG17801", "modified_site_by_target_id": "eGFP-CG17801-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-192E10, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CCTGCTTGAATAAGCACAAGTTCCTGCACTCAGGTCTTAAGCCCTTTGAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "62e8c138-a467-4d60-9679-2ddb84810709", "aliases:array": "kevin-white:ZNF24", "modified_site_by_target_id": "eGFP-ZNF24-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-194G9, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF24. The last 50 bases before the stop codon of ZNF24 are as follows: GACATCAGAGAAGACACAATGCAGAAAAACTTCTGAATGTTGTGAAAGTT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/e7bb4fa6-ef92-41b7-871a-5f64db3848fe/", "award": "U54HG006996"}, - {"uuid": "36ca733e-06b8-43b3-8c58-7eee919078ce", "aliases:array": "hugo-bellen:crc-MiMIC-GFP", "modified_site_by_target_id": "eGFP-crc-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:please-contact-lab, url:http://flypush.imgen.bcm.tmc.edu/pscreen/", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: crc-RA, crc-RB, crc-RC, crc-RD, crc-RE, crc-RF, crc-RG, crc-RH, crc-RI, crc-RJ, crc-RK, crc-RL, crc-RM, crc-RN, crc-RO, crc-RP of crc. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "808bb919-d938-478b-9389-32c4d104ac84", "modified_site_by_target_id": "eGFP-lin-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624dE10, url:https://www.sourcebioscience.com/search?search=WRM0624dE10", "description": "wgIs62 [lin-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f7497ddc-e36c-4e33-8b96-5570544eeaeb", "aliases:array": "hugo-bellen:Trl-MiMIC-GFP", "modified_site_by_target_id": "eGFP-Trl-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI02741, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI02741", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: Trl-RA, Trl-RB, Trl-RF, Trl-RI, Trl-RJ, Trl-RK of Trl. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "88eca42d-bd95-4fba-9012-b5c8c9997c92", "modified_site_by_target_id": "eGFP-dpl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0622aB11, url:https://www.sourcebioscience.com/search?search=WRM0622aB11", "description": "wgIs365 [dpl-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "b4cb7250-5e5f-469c-aef1-614d662b7c11", "modified_site_by_target_id": "eGFP-nfya-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613bG01, url:https://www.sourcebioscience.com/search?search=WRM0613bG01", "description": "wgIs404 [nfya-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "67cdcd5f-0d83-4a87-a635-0d53fb0afb02", "modified_site_by_target_id": "eGFP-pha-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063aB05, url:https://www.sourcebioscience.com/search?search=WRM063aB05", "description": "wgIs170 [pha-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "195046ae-1f6e-47c3-9c84-2c672d3da21d", "modified_site_by_target_id": "eGFP-peb-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621aA11, url:https://www.sourcebioscience.com/search?search=WRM0621aA11", "description": "wgIs360 [peb-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "cefb533d-d797-4603-b813-fc519189d512", "modified_site_by_target_id": "eGFP-nhr-82-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618cC08, url:https://www.sourcebioscience.com/search?search=WRM0618cC08", "description": "wgIs422 [nhr-82::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6791a06e-7e0d-408f-84ad-90598986aee9", "aliases:array": "michael-snyder:YL424_construct", "modified_site_by_target_id": "eGFP-efl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:efl-1-celegans;location:C-terminal, name:FLAG, promoter_used:efl-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "The EFL-1::GFP fusion protein is driven by its own efl-1 promoter.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "89162225-188e-44e6-98d5-1a4b7a8d1bcc", "aliases:array": "michael-snyder:OP174_construct", "modified_site_by_target_id": "eGFP-ces-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:FLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "This strains transgene was constructed by fosmid recombineering at the TransgeneOmics Unit of the Max Planck Institute of Molecular Cell Biology and Genetics in Dresden. The tagged fosmid was integrated into the genome of an unc-119(ed3) worms using biolistic transformation. The CES-1::EGFP fusion protein is expressed in the correct ces-1 spatio-temporal expression pattern. This strain was used for ChIP-seq experiments to map the in vivo binding sites for the CES-1 transcription factor.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "fe66be75-3814-4ac9-ae60-f43311ef9dea", "aliases:array": "michael-snyder:YL409_construct", "modified_site_by_target_id": "eGFP-lin-35-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:lin-35-celegans;location:C-terminal, name:FLAG, promoter_used:lin-35-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "The LIN-35::GFP fusion protein is driven by its own lin-35 promoter.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "2b5c332c-332e-45ac-b522-5bb62f5c9ced", "aliases:array": "michael-snyder:OP49_construct", "modified_site_by_target_id": "eGFP-lin-13-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:FLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "This strains transgene was constructed by fosmid recombineering at the TransgeneOmics Unit of the Max Planck Institute of Molecular Cell Biology and Genetics in Dresden. The tagged fosmid was integrated into the genome of an unc-119(ed3) worms using biolistic transformation. The LIN-13::EGFP fusion protein is expressed in the correct lin-13 spatio-temporal expression pattern. This strain was used for ChIP-seq experiments to map the in vivo binding sites for the LIN-13 transcription factor.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "54a1680f-90b5-4c92-8160-a585e34e7a79", "aliases:array": "robert-waterston:OP538-GFP", "modified_site_by_target_id": "eGFP-hlh-12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641bF04, url:https://www.sourcebioscience.com/search?search=WRM0641bF04", "description": "wgIs538 [hlh-12::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4798dc1f-f649-45d0-a281-d450e935bb62", "aliases:array": "kevin-white:POLR2H", "modified_site_by_target_id": "eGFP-POLR2H-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-125G8", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of POLR2H. The last 50 bases before the stop codon of POLR2H are as follows: GATTCGAGGTGGACTCCAGAGTTTATCTCCTGATGAAGAAGCTAGCCTTC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "c612e44e-2565-43e4-809a-5573d46eb746", "aliases:array": "kevin-white:HOXB9", "modified_site_by_target_id": "eGFP-HOXB9-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-250C1", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of HOXB9. The last 50 bases before the stop codon of HOXB9 are as follows: AGAACCGGCGGATGAAAATGAAGAAAATGAATAAGGAGCAGGGCAAAGAG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "a965f3af-de2b-4644-8fa7-1ea33d604c9e", "aliases:array": "kevin-white:C1orf109", "modified_site_by_target_id": "eGFP-C1orf109-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-408M15", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of C1orf109. The last 50 bases before the stop codon of C1orf109 are as follows: GTCTTCCTATTTCAGATATCCTATTGAATGTTTCCTTCTTCCTGGAAGAG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "4c6baa1b-b97a-4d2d-8ab0-c934a686c68d", "aliases:array": "robert-waterston:OP568-GFP", "modified_site_by_target_id": "eGFP-lsy-12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0610aF10, url:https://www.sourcebioscience.com/search?search=WRM0610aF10", "description": "wgIs568 [LSY-12::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "446da6c7-dec3-4705-865f-79a59b5a91f0", "aliases:array": "robert-waterston:OP652-GFP", "modified_site_by_target_id": "eGFP-fkh-8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630bB04, url:https://www.sourcebioscience.com/search?search=WRM0630bB04", "description": "wgIs652 [FKH-8::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5b001eaa-7a46-47a3-a1d7-9fda85914e87", "aliases:array": "michael-snyder:eGFP_ZNF331_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF331-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:6496, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=6496", "description": "This construct contains an eGFP N-terminal tag to ZNF331 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "45b88460-251b-4493-a8ba-6882b93f97e2", "aliases:array": "michael-snyder:eGFP_ZNF560_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF560-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079662, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079662", "description": "This construct contains an eGFP N-terminal tag to ZNF560 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "db27889d-f1ec-4be7-9e03-257435aab921", "aliases:array": "michael-snyder:eGFP_ZBTB8A_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB8A-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00288825, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00288825", "description": "This construct contains an eGFP N-terminal tag to ZBTB8A under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b27e1cc0-55b0-4ef9-a0e5-55383058f8db", "aliases:array": "michael-snyder:eGFP_ZNF169_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF169-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:11536, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=11536", "description": "This construct contains an eGFP N-terminal tag to ZNF169 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "1916ed14-b354-4283-8e71-20bc84790d4a", "aliases:array": "michael-snyder:eGFP_ZNF45_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF45-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079581, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079581", "description": "This construct contains an eGFP N-terminal tag to ZNF45 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "bcc93419-5771-47a2-846c-acdfc95060ee", "aliases:array": "michael-snyder:eGFP_ZNF563_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF563-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1159, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1159", "description": "This construct contains an eGFP N-terminal tag to ZNF563 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "63566586-539f-49de-b205-6f16f59c0841", "aliases:array": "michael-snyder:eGFP_ZNF280D_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF280D-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00342136, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00342136", "description": "This construct contains an eGFP N-terminal tag to ZNF280D under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "300aa3a1-6e79-40be-a9b2-ed79ebedbc1e", "aliases:array": "michael-snyder:eGFP_ZNF367_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF367-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF367, synthesized by Life Technologies (using the sequence identified by ENST00000375256), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "ac856060-2408-4c10-bc90-13bef4bbe426", "aliases:array": "michael-snyder:eGFP_ZNF781_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF781-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00378149, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00378149", "description": "This construct contains an eGFP N-terminal tag to ZNF781 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "370df043-d67a-453d-afd3-c102ad908520", "aliases:array": "michael-snyder:eGFP_ZNF596_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF596-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1890, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1890", "description": "This construct contains an eGFP N-terminal tag to ZNF596 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "1c72686f-f9b4-4f8f-b457-de57a4c4fceb", "modified_site_by_target_id": "eGFP-nhr-129-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064cD08, url:https://www.sourcebioscience.com/search?search=WRM064cD08", "description": "wgIs340 [nhr-129::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering..", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d160fcd6-8e6e-4e12-a6d5-8a28a0f754d6", "modified_site_by_target_id": "eGFP-ceh-14-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs73 [ceh-14::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "183386b2-ab64-4445-a4a5-8a29d1036048", "modified_site_by_target_id": "eGFP-med-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs48 [med-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "7b0604e5-1583-4976-b0db-4642f7d71dc1", "modified_site_by_target_id": "eGFP-nhr-67-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0633cC01, url:https://www.sourcebioscience.com/search?search=WRM0633cC01", "description": "wgIs373 [nhr-67::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "18d3fd02-126a-427f-ac39-f5866eedcbc5", "aliases:array": "robert-waterston:OP506-GFP", "modified_site_by_target_id": "eGFP-xbp-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638dE04, url:https://www.sourcebioscience.com/search?search=WRM0638dE04", "description": "wgIs506 [xbp-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-16-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f572dbe9-be90-44f0-9812-041be1ad5692", "modified_site_by_target_id": "eGFP-madf-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cB04, url:https://www.sourcebioscience.com/search?search=WRM0636cB04", "description": "wgIs452 [C01G12.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "5f0a66e7-344b-4104-b301-6205518c72d2", "modified_site_by_target_id": "eGFP-fkh-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab, url:http://elegans.bcgsc.ca/perl/fosmid/CloneSearch?genelist=++++--%0D%0A&file=0", "description": "wgIs185 [fkh-2-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "edc67664-f8cc-4cab-87c2-d43db5c0bab8", "modified_site_by_target_id": "eGFP-pha-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs37 [pha-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of pha-4 coding sequence of fosmid ID#WRM0617dE06 by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "fc469609-880e-41fc-8ea2-e0bbe8a444dd", "modified_site_by_target_id": "eGFP-eyg-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062dB12, url:https://www.sourcebioscience.com/search?search=WRM062dB12", "description": "wgIs441 [Y53C12C.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "54bbe9c2-1edf-47c0-8232-9e0b29a58354", "modified_site_by_target_id": "eGFP-unc-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639aA08, url:https://www.sourcebioscience.com/search?search=WRM0639aA08", "description": "wgIs395 [unc-30::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "703f85fd-5e70-4c9b-a060-84646befc332", "aliases:array": "robert-waterston:OP615-GFP", "modified_site_by_target_id": "eGFP-Y22D7AL.16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM066aH09, url:https://www.sourcebioscience.com/search?search=WRM066aH09", "description": "wgIs615 [Y22D7AL.16::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5861d721-ba58-4384-bc97-645d46ce18b7", "aliases:array": "kevin-white:ADNP", "modified_site_by_target_id": "eGFP-ADNP-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-141D11", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ADNP. The last 50 bases before the stop codon of ADNP are as follows: AGCCCATGCATGGCAGCTTAGCCGGAGTTAAACTGAGCAGCCAACAGGCC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "9280aab0-b0da-4d7e-91c8-fbadb7a86be7", "aliases:array": "kevin-white:ZKSCAN8-CRISPR", "modified_site_by_target_id": "eGFP-ZKSCAN8-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "AUCUGAAUCCAUAAGCGUUU", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF192 (ZKSCAN8) gene. The sequence of the guide RNA was AUCUGAAUCCAUAAGCGUUU.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "854e767d-4813-4ea5-b651-08fbd3e76965", "aliases:array": "kevin-white:ZNF193-CRISPR", "modified_site_by_target_id": "eGFP-ZSCAN9-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "ACAGUGGCUGAGCUGGUCUA", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF193 (ZSCAN9) gene. The sequence of the guide RNA was ACAGUGGCUGAGCUGGUCUA.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "99538674-cf82-49e8-b776-4cb31ab5a338", "aliases:array": "kevin-white:ZNF584-CRISPR", "modified_site_by_target_id": "eGFP-ZNF584-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "CUGCUAGCACCGUGUUCAUC", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF584 gene. The sequence of the guide RNA was CUGCUAGCACCGUGUUCAUC.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "23a7aba3-5d49-4d29-9016-593ac79e3abc", "modified_site_by_target_id": "eGFP-Hr4-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH322-137G06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH322-137G06 has been chosen to target the gene Hr4. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of ATT sites. Recombinant individuals were screened based on mini-white presence. The line has been stabilized as homozygous for the transgene.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/b0a10b06-9ad0-4e59-aac9-a7797781d29e/", "award": "U01HG004264"}, - {"uuid": "4d0586df-38ee-4c92-a6f9-aa060b3222ce", "aliases:array": "kevin-white:ZNF197-CRISPR", "modified_site_by_target_id": "eGFP-ZNF197-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "CUGGAUGUGUCUGUUUCUCG", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF197 gene. The sequence of the guide RNA was CUGGAUGUGUCUGUUUCUCG.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "6e6eae23-0d61-42bf-83a9-480ff27f2db6", "aliases:array": "kevin-white:ZNF644", "modified_site_by_target_id": "eGFP-ZNF644-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-148J16", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF644. The last 50 bases before the stop codon of ZNF644 are as follows: CCTCCATTACAGAAACTTCATTTTCTCTACTAATGGCCGAAGCAGCTTCA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "a686a8ff-68a4-49ad-994e-e30437297764", "aliases:array": "kevin-white:ZNF83", "modified_site_by_target_id": "eGFP-ZNF83-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-125O9", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF83. The last 50 bases before the stop codon of ZNF83 are as follows: TTGTACGTCATCAGAGATTTCATGCCGGAAAGAAATCTAACACATGTAAT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "0381e4b0-e4fb-4c50-b939-3e22c0ea3ccc", "aliases:array": "kevin-white:ELK1-Nterm", "modified_site_by_target_id": "eGFP-ELK1-human", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2320N10", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a N-terminal Localization and Affinity Purification (NFLAP) tag at the N-terminal of ELK1. The last 50 bases before the stop codon of ELK1 are as follows: GCTGTTTGCTCTCCAGGTACCCCTGGGATGGCGTGAGCACTCCCCCAGCG", "documents:array": "/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/;/documents/248a4510-055a-447a-9171-4eac079f0b14/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "75e15df3-8387-4a42-bed1-3369db8941dc", "aliases:array": "robert-waterston:OP517_construct", "modified_site_by_target_id": "eGFP-sox-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs517 [sox-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "282373c4-e5a3-451f-8db3-7116724e91b0", "aliases:array": "kevin-white:AV007_eGFP-Myb", "modified_site_by_target_id": "eGFP-Myb-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-115K18, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCTGATAGCTTAATCAGTAACTCTTATTTTATTAGTTATAGGTGGAAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d39d07a3-f504-4af5-b7c0-709707f40ad7", "aliases:array": "hugo-bellen:Dif-MiMIC-GFP", "modified_site_by_target_id": "eGFP-Dif-dmelanogaster", "introduced_tags:object:array": "location:other, name: eGFP;location:other, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:please-contact-lab, url:http://flypush.imgen.bcm.tmc.edu/pscreen/", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: Dif-RA, Dif-RB, Dif-RD of Dif. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "c78c8483-27dd-4459-a0ed-9a4ba5b40deb", "modified_site_by_target_id": "eGFP-nhr-77-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0611dB10, url:https://www.sourcebioscience.com/search?search=WRM0611dB10", "description": "wgIs353 [nhr-77::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e91b3e86-4279-4df5-9964-0eb784171d2d", "aliases:array": "robert-waterston:OP418-GFP", "modified_site_by_target_id": "eGFP-dmd-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628aD07, url:https://www.sourcebioscience.com/search?search=WRM0628aD07", "description": "wgIs418 [dmd-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-25-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8cabafdb-5f7a-4fbb-b151-dc26f8459429", "aliases:array": "robert-waterston:OP508-GFP", "modified_site_by_target_id": "eGFP-madf-10-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630bH08, url:https://www.sourcebioscience.com/search?search=WRM0630bH08", "description": "wgIs508 [madf-10::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:10-16-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "aeb2a6a0-61f5-4169-bad5-4b580564a0dd", "modified_site_by_target_id": "eGFP-alr-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068bC04, url:https://www.sourcebioscience.com/search?search=WRM068bC04", "description": "wgIs362 [alr-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "6cebacc9-31a2-4711-80ad-d373b200039a", "modified_site_by_target_id": "eGFP-nhr-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0629bE01, url:https://www.sourcebioscience.com/search?search=WRM0629bE01", "description": "wgIs384 [nhr-30::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "44ce2876-4325-41f7-8b98-1e5c18a9daae", "modified_site_by_target_id": "eGFP-cey-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061cE06, url:https://www.sourcebioscience.com/search?search=WRM061cE06", "description": "wgIs363 [cey-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "faa6867d-b0ec-407e-a910-4c503c177459", "aliases:array": "robert-waterston:OP518_construct", "modified_site_by_target_id": "eGFP-nhr-48-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs518 [nhr-48::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "91f3ee23-816e-49cd-ad0c-f142ca7239c6", "aliases:array": "robert-waterston:OP609-GFP", "modified_site_by_target_id": "eGFP-chd-7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065dB07, url:https://www.sourcebioscience.com/search?search=WRM065dB07", "description": "wgIs609 [CHD-7::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "902f2426-570c-4376-8e53-56d53eaae8a2", "aliases:array": "robert-waterston:OP598-GFP", "modified_site_by_target_id": "eGFP-T26A5.8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0632aD09, url:https://www.sourcebioscience.com/search?search=WRM0632aD09", "description": "wgIs598 [T26A5.8::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4ce086a3-6cab-412b-b88c-aa7b89642c06", "aliases:array": "kevin-white:ZNF175-CRISPR", "modified_site_by_target_id": "eGFP-ZNF175-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "TGCACUAGGAAUUCAUUGCU", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF175 gene. The sequence of the guide RNA was TGCACUAGGAAUUCAUUGCU.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "d2aa6921-8b9b-45a2-97ca-7c167e657173", "modified_site_by_target_id": "eGFP-N-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH321-89E02, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "P[acman] BAC number CH321-89E02 has been chosen to target the gene Notch. The LAP-TAG containing the GFP has been recombineered in 3 of the gene in frame. The engineered vector has then been inserted into the specific docking site with the help of Att sites. Recombinant individuals were screened based on mini-white presence.", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004264"}, - {"uuid": "5f8c6cca-90d4-429c-aa14-1353bedf6bf5", "aliases:array": "kevin-white:KLF9", "modified_site_by_target_id": "eGFP-KLF9-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-229G17", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of KLF9. The last 50 bases before the stop codon of KLF9 are as follows: TCCACCCCAGCATGATCAAGCGATCGAAAAAGGCGCTGGCCAACGCTTTG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "6e4c5405-0c60-4031-b8f7-ea28a6a1ef54", "aliases:array": "kevin-white:ZNF639-CRISPR", "modified_site_by_target_id": "eGFP-ZNF639-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "AAUCAAGUUGUCUCAUGGAC", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF639 gene. The sequence of the guide RNA was AAUCAAGUUGUCUCAUGGAC.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "2415c2ee-42d0-4539-8d3a-aac559819937", "aliases:array": "kevin-white:HBP1-CRISPR", "modified_site_by_target_id": "eGFP-HBP1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCUCACAACAACAUUAAACC", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the HBP1 gene. The sequence of the guide RNA was GCUCACAACAACAUUAAACC.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "11313fb8-6e72-49ee-8869-720eac6ffc9c", "aliases:array": "michael-snyder:eGFP_ZNF79_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF79-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:13770, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=13770", "description": "This construct contains an eGFP N-terminal tag to ZNF79 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "a51c4fea-7b0c-4590-a6ac-85331d3d3af0", "aliases:array": "michael-snyder:eGFP_ZNF530_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF530-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10877, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10877", "description": "This construct contains an eGFP N-terminal tag to ZNF530 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "6a618940-819b-4a0d-a3d5-cb0e51ad2b48", "aliases:array": "michael-snyder:eGFP_TRPS1_FRT_construct", "modified_site_by_target_id": "eGFP-TRPS1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00365530, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00365530", "description": "This construct contains an eGFP N-terminal tag to TRPS1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "4b853f8a-5454-4535-8ab0-594357dc8f54", "aliases:array": "michael-snyder:eGFP_ZNF512B_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF512B-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56696, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56696", "description": "This construct contains an eGFP N-terminal tag to ZNF512B under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "20acc3df-3b91-4dc0-8f10-d839e69093da", "aliases:array": "michael-snyder:eGFP_ZNF660_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF660-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:71653, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=71653", "description": "This construct contains an eGFP N-terminal tag to ZNF660 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "4fcedc6c-a9d6-4d8a-b140-56c871c7ded9", "aliases:array": "michael-snyder:eGFP_ZNF768_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF768-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:2974, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=2974", "description": "This construct contains an eGFP N-terminal tag to ZNF768 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "46f3f0f8-9f12-4c86-9968-34f3e0685311", "aliases:array": "michael-snyder:eGFP_ZNF800_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF800-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00377247, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00377247", "description": "This construct contains an eGFP N-terminal tag to ZNF800 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "32cbefa5-9fac-48a2-abb0-27de688cc18a", "aliases:array": "michael-snyder:eGFP_ZNF677_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF677-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10682, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10682", "description": "This construct contains an eGFP N-terminal tag to ZNF677 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "4ec0b0b1-2fb4-49a1-9a75-38ad2df2aa7c", "aliases:array": "michael-snyder:eGFP_ZNF708_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF708-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399373, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00399373", "description": "This construct contains an eGFP N-terminal tag to ZNF708 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "8dcd10c6-e163-4f52-af85-4f8e9a68555b", "aliases:array": "richard-myers:KAT7-FLAG", "modified_site_by_target_id": "FLAG-KAT7-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GGTCACTTTAAGTGCCCTT", "reagents:object:array": "source:addgene, identifier:86266, url:https://www.addgene.org/86266/; source:addgene, identifier:86309, url:https://www.addgene.org/86309/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "0e8945fe-5acc-4db2-a40c-9412ca85db70", "aliases:array": "richard-myers:NR2F6-FLAG", "modified_site_by_target_id": "FLAG-NR2F6-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCTCGGGCCAGTGACCATGA;GGGCCAGTGACCATGACG", "reagents:object:array": "source:addgene, identifier:86284, url:https://www.addgene.org/86284/; source:addgene, identifier:86342, url:https://www.addgene.org/86342/; source:addgene, identifier:86343, url:https://www.addgene.org/86343/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "2bbc1155-ae95-4161-ab83-aba1b7904e51", "aliases:array": "richard-myers:ARID4B-FLAG", "modified_site_by_target_id": "FLAG-ARID4B-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "ddb5ca36-0002-488e-a247-feebef765ddd", "aliases:array": "richard-myers:ZNF581-FLAG", "modified_site_by_target_id": "FLAG-ZNF581-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "c61b70a7-e7ed-4be7-89ef-4bbbe4e58d84", "modified_site_by_target_id": "eGFP-ztf-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062dF11, url:https://www.sourcebioscience.com/search?search=WRM062dF11", "description": "wgIs511 [ztf-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "a20af24a-2b38-4438-8459-6bdf5f66d632", "modified_site_by_target_id": "eGFP-lsy-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063dD08, url:https://www.sourcebioscience.com/search?search=WRM063dD08", "description": "wgIs367 [lsy-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "68b94f22-4355-4d70-a241-1bb5a7fb8505", "modified_site_by_target_id": "eGFP-mbf-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064dE02, url:https://www.sourcebioscience.com/search?search=WRM064dE02", "description": "wgIs426 [mbf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "96e21c1b-5fbb-4284-8e85-f7944ba984c9", "modified_site_by_target_id": "eGFP-dac-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0616dE09, url:https://www.sourcebioscience.com/search?search=WRM0616dE09", "description": "wgIs188 [dac-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "b14b4567-b8cf-49b1-9164-ea83b5cbfd66", "modified_site_by_target_id": "eGFP-nhr-112-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618bF08, url:https://www.sourcebioscience.com/search?search=WRM0618bF08", "description": "wgIs364 [nhr-112::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "7cc5bac9-3688-4528-adc7-a23412d43d5d", "modified_site_by_target_id": "eGFP-sma-9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cH08, url:https://www.sourcebioscience.com/search?search=WRM062cH08", "description": "wgIs130 [sma-9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "5c55f547-ba41-4df3-bb82-d90b8edc439e", "modified_site_by_target_id": "eGFP-cey-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0629bA11, url:https://www.sourcebioscience.com/search?search=WRM0629bA11", "description": "wgIs375 [cey-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "acb88fb1-b47f-4e4e-ab9d-1bd578161ca7", "modified_site_by_target_id": "eGFP-nhr-275-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0626dE08, url:https://www.sourcebioscience.com/search?search=WRM0626dE08", "description": "wgIs225 [nhr-275::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3732fb9d-2629-4f14-85f9-d367833b01fe", "modified_site_by_target_id": "eGFP-ztf-15-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0626bA07, url:https://www.sourcebioscience.com/search?search=WRM0626bA07", "description": "wgIs431 [R06C7.9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "45122c94-66a8-4946-9fb5-c587fc6fc356", "modified_site_by_target_id": "eGFP-aha-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630aC10, url:https://www.sourcebioscience.com/search?search=WRM0630aC10", "description": "wgIs124 [aha-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "5d3c075b-de0b-4f66-ac19-ad55ff772564", "aliases:array": "michael-snyder:eGFP_ZNF514_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF514-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00378941, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00378941", "description": "This construct contains an eGFP N-terminal tag to ZNF514 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "805d7399-c3c3-48aa-890f-f0a3c75e030c", "aliases:array": "michael-snyder:eGFP_ZNF701_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF701-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:55279, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=55279", "description": "This construct contains an eGFP N-terminal tag to ZNF701 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "9fc4e71b-79da-4f8c-b35d-fdec1ec93e2a", "aliases:array": "michael-snyder:eGFP_ZSCAN18_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN18-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079770, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079770", "description": "This construct contains an eGFP N-terminal tag to ZSCAN18 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "57dae03b-6a23-4722-8b78-c38a0d1f7b82", "aliases:array": "michael-snyder:eGFP_BNC1_FRT_construct", "modified_site_by_target_id": "eGFP-BNC1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00082594, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00082594", "description": "This construct contains an eGFP N-terminal tag to BNC1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "61a591bc-5071-4ab5-9ec6-a5d00ceff171", "aliases:array": "michael-snyder:eGFP_CTCF_FRT_construct", "modified_site_by_target_id": "eGFP-CTCF-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:jack-greenblatt, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "introduced_sequence": "ATGGAAGGTGATGCAGTCGAAGCCATTGTGGAGGAGTCCGAAACTTTTATTAAAGGAAAGGAGAGAAAGACTTACCAGAGACGCCGGGAAGGGGGCCAGGAAGAAGATGCCTGCCACTTACCCCAGAACCAGACGGATGGGGGTGAGGTGGTCCAGGATGTCAACAGCAGTGTACAGATGGTGATGATGGAACAGCTGGACCCCACCCTTCTTCAGATGAAGACTGAAGTAATGGAGGGCACAGTGGCTCCAGAAGCAGAGGCTGCTGTGGACGATACCCAGATTATAACTTTACAGGTTGTAAATATGGAGGAACAGCCCATAAACATAGGAGAACTTCAGCTTGTTCAAGTACCTGTTCCTGTGACTGTACCTGTTGCTACCACTTCAGTAGAAGAACTTCAGGGGGCTTATGAAAATGAAGTGTCTAAAGAGGGCCTTGCGGAAAGTGAACCCATGATATGCCACACCCTACCTTTGCCTGAAGGGTTTCAGGTGGTTAAAGTGGGGGCCAATGGAGAGGTGGAGACACTAGAACAAGGGGAACTTCCACCCCAGGAAGATCCTAGTTGGCAAAAAGACCCAGACTATCAGCCACCAGCCAAAAAAACAAAGAAAACCAAAAAGAGCAAACTGCGTTATACAGAGGAGGGCAAAGATGTAGATGTGTCTGTCTACGATTTTGAGGAAGAACAGCAGGAGGGTCTGCTATCAGAGGTTAATGCAGAGAAAGTGGTTGGTAATATGAAGCCTCCAAAGCCAACAAAAATTAAAAAGAAAGGTGTAAAGAAGACATTCCAGTGTGAGCTTTGCAGTTACACGTGTCCACGGCGTTCAAATTTGGATCGTCACATGAAAAGCCACACTGATGAGAGACCACACAAGTGCCATCTCTGTGGCAGGGCATTCAGAACAGTCACCCTCCTGAGGAATCACCTTAACACACACACAGGTACTCGTCCTCACAAGTGCCCAGACTGCGACATGGCCTTTGTGACCAGTGGAGAATTGGTTCGGCATCGTCGTTACAAACACACCCACGAGAAGCCATTCAAGTGTTCCATGTGCGATTACGCCAGTGTAGAAGTCAGCAAATTAAAACGTCACATTCGCTCTCATACTGGAGAGCGTCCGTTTCAGTGCAGTTTGTGCAGTTATGCCAGCAGGGACACATACAAGCTGAAAAGGCACATGAGAACCCATTCAGGGGAAAAGCCTTATGAATGTTATATTTGTCATGCTCGGTTTACCCAAAGTGGTACCATGAAGATGCACATTTTACAGAAGCACACAGAAAATGTGGCCAAATTTCACTGTCCCCACTGTGACACAGTCATAGCCCGAAAAAGTGATTTGGGTGTCCACTTGCGAAAGCAGCATTCCTATATTGAGCAAGGCAAGAAATGCCGTTACTGTGATGCTGTGTTTCATGAGCGCTATGCCCTCATCCAGCATCAGAAGTCACACAAGAATGAGAAGCGCTTTAAGTGTGACCAGTGTGATTACGCTTGTAGACAGGAGAGGCACATGATCATGCACAAGCGCACCCACACCGGGGAGAAGCCTTACGCCTGCAGCCACTGCGATAAGACCTTCCGCCAGAAGCAGCTTCTCGACATGCACTTCAAGCGCTATCACGACCCCAACTTCGTCCCTGCGGCTTTTGTCTGTTCTAAGTGTGGGAAAACATTTACACGTCGGAATACCATGGCAAGACATGCTGATAATTGTGCTGGCCCAGATGGCGTAGAGGGGGAAAATGGAGGAGAAACGAAGAAGAGTAAACGTGGAAGAAAAAGAAAGATGCGCTCTAAGAAAGAAGATTCCTCTGACAGTGAAAATGCTGAACCAGATCTGGACGACAATGAGGATGAGGAGGAGCCTGCCGTAGAAATTGAACCTGAGCCAGAGCCTCAGCCTGTGACCCCAGCCCCACCACCCGCCAAGAAGCGGAGAGGACGACCCCCTGGCAGAACCAACCAGCCCAAACAGAACCAGCCAACAGCTATCATTCAGGTTGAAGACCAGAATACAGGTGCAATTGAGAACATTATAGTTGAAGTAAAAAAAGAGCCAGATGCTGAGCCCGCAGAGGGAGAGGAAGAGGAGGCCCAGCCAGCTGCCACAGATGCCCCCAACGGAGACCTCACGCCCGAGATGATCCTCAGCATGATGGACCGGTTG", "description": "This construct contains an eGFP N-terminal tag to CTCF under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "62ecdfc5-5834-4b6c-ab0f-e7505d32a2aa", "aliases:array": "michael-snyder:eGFP_SP2_FRT_construct", "modified_site_by_target_id": "eGFP-SP2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:867, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=867", "description": "This construct contains an eGFP N-terminal tag to SP2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "ec247838-05b9-42be-964b-fd695c888a06", "aliases:array": "michael-snyder:eGFP_ZBTB25_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB25-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00338516, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00338516", "description": "This construct contains an eGFP N-terminal tag to ZBTB25 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "04923587-4647-46fb-851f-1774c610b4a5", "aliases:array": "michael-snyder:eGFP_ZNF335_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF335-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00294944, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00294944", "description": "This construct contains an eGFP N-terminal tag to ZNF335 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "8bbfa0d2-1840-4a8b-b743-ceb6c8e8d275", "aliases:array": "michael-snyder:eGFP_ZNF202_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF202-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:5949, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=5949", "description": "This construct contains an eGFP N-terminal tag to ZNF202 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "5bc06028-e2a6-4c71-9686-3183d1e0e238", "aliases:array": "michael-snyder:eGFP_MECOM_FRT_construct", "modified_site_by_target_id": "eGFP-MECOM-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00296941, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00296941", "description": "This construct contains an eGFP N-terminal tag to MECOM under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "9102379a-0dc7-496d-8ad6-87a7d6dd1ebf", "aliases:array": "hugo-bellen:CrebA-MiMIC-GFP", "modified_site_by_target_id": "eGFP-CrebA-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI06441, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI06441", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: CrebA-RA, CrebA-RB of CrebA. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "e0c90b25-45a5-4b41-8046-881fbe808c82", "modified_site_by_target_id": "eGFP-F49E8.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0634aC04, url:https://www.sourcebioscience.com/search?search=WRM0634aC04", "description": "wgIs383 [F49E8.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "9cac1f25-af7a-4341-86e4-fce17b5c2f29", "modified_site_by_target_id": "eGFP-nhr-21-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619bF09, url:https://www.sourcebioscience.com/search?search=WRM0619bF09", "description": "wgIs361 [nhr-21::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "474e6e56-0ec8-466a-a6d5-3e6153acacfc", "modified_site_by_target_id": "eGFP-ceh-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635dE06, url:https://www.sourcebioscience.com/search?search=WRM0635dE06", "description": "wgIs120 [ceh-30::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "fd1e5ffc-fa08-430c-961d-b7ed2ee21fd7", "modified_site_by_target_id": "eGFP-sea-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613bE07, url:https://www.sourcebioscience.com/search?search=WRM0613bE07", "description": "wgIs129 [sea-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "7d5b1bf4-15f1-41ef-ab5b-b65a255c8728", "modified_site_by_target_id": "eGFP-nhr-124-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617bB02, url:https://www.sourcebioscience.com/search?search=WRM0617bB02", "description": "wgIs417 [nhr-124::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "a4abf7fd-89ab-432d-a33b-508affa9e73d", "modified_site_by_target_id": "eGFP-ceh-57-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617bG10, url:https://www.sourcebioscience.com/search?search=WRM0617bG10", "description": "ddIs164 [C07E3.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "ea18146e-fd93-47a2-9486-4fc9f5c5493b", "modified_site_by_target_id": "eGFP-nhr-42-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639dA07, url:https://www.sourcebioscience.com/search?search=WRM0639dA07", "description": "wgIs352 [nhr-42::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "608d8a80-96b2-4966-9de0-c2634b74a283", "modified_site_by_target_id": "eGFP-nhr-42-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639dA07, url:https://www.sourcebioscience.com/search?search=WRM0639dA07", "description": "wgIs359 [nhr-42::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "bb3ece75-697d-4177-b90e-a6bbc482d033", "modified_site_by_target_id": "eGFP-nhr-221-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619cG03, url:https://www.sourcebioscience.com/search?search=WRM0619cG03", "description": "ddIs184 [nhr-221::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "306ce81f-e950-45cc-ba68-6fc583c06bf3", "aliases:array": "michael-snyder:eGFP_ZNF19_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF19-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10699, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10699", "description": "This construct contains an eGFP N-terminal tag to ZNF19 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "c5ed6958-0d9b-466a-a577-81e448bc20e5", "aliases:array": "michael-snyder:eGFP_ZFHX2_FRT_construct", "modified_site_by_target_id": "eGFP-ZFHX2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56237, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56237", "description": "This construct contains an eGFP N-terminal tag to ZFHX2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "dfdbe823-4651-4728-ac15-ac173a6ae0f9", "aliases:array": "michael-snyder:eGFP_ZNF548_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF548-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1953, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1953", "description": "This construct contains an eGFP N-terminal tag to ZNF548 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "fa42186f-a64f-4a11-852f-4d268c2a2372", "aliases:array": "kevin-white:USF2-CRISPR", "modified_site_by_target_id": "eGFP-USF2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "UGGUGGCGGGCGUCACUGCC", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the USF2 gene. The sequence of the guide RNA was UGGUGGCGGGCGUCACUGCC.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "e7619431-8ac6-45eb-8032-4871f40d0158", "aliases:array": "michael-snyder:eGFP_AEBP2_FRT_construct", "modified_site_by_target_id": "eGFP-AEBP2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079913, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079913", "description": "This construct contains an eGFP N-terminal tag to AEBP2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "77b6dbd5-1c43-48c8-9e4c-6ed948a1d0aa", "aliases:array": "michael-snyder:eGFP_KLF5_FRT_construct", "modified_site_by_target_id": "eGFP-KLF5-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00042598, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00042598", "description": "This construct contains an eGFP N-terminal tag to KLF5 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "29a39683-9a11-4df3-b5ec-fdfaabfcede2", "aliases:array": "michael-snyder:eGFP_ZBTB44_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB44-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1316, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1316", "description": "This construct contains an eGFP N-terminal tag to ZBTB44 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "4c46a646-8623-4e69-b9b3-45edfb6dd8db", "aliases:array": "michael-snyder:eGFP_KLF9_FRT_construct", "modified_site_by_target_id": "eGFP-KLF9-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079814, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079814", "description": "This construct contains an eGFP N-terminal tag to KLF9 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "bb7d57c1-7c1b-4a69-9086-a85050bec4de", "aliases:array": "michael-snyder:eGFP_PRDM1_FRT_construct", "modified_site_by_target_id": "eGFP-PRDM1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00346073, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00346073", "description": "This construct contains an eGFP N-terminal tag to PRDM1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "209effeb-b9e8-4ed3-a1b6-16ac3d43f790", "aliases:array": "michael-snyder:eGFP_ZBTB33_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB33-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00082434, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00082434", "description": "This construct contains an eGFP N-terminal tag to ZBTB33 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d0562133-3248-45d8-8971-835cb13920e4", "aliases:array": "richard-myers:RERE-FLAG", "modified_site_by_target_id": "FLAG-RERE-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "46859843-0471-4b94-88ec-e6fdc1d5e042", "aliases:array": "richard-myers:HOMEZ-FLAG", "modified_site_by_target_id": "FLAG-HOMEZ-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GTGATCATACAAGACTGAG;GATCATACAAGACTGAGTG", "reagents:object:array": "source:addgene, identifier:86289, url:https://www.addgene.org/86289/; source:addgene, identifier:86352, url:https://www.addgene.org/86352/; source:addgene, identifier:86353, url:https://www.addgene.org/86353/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "ddc5515d-64db-4c79-982f-34c90709ca29", "aliases:array": "richard-myers:ZNF219-FLAG", "modified_site_by_target_id": "FLAG-ZNF219-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "af8f6693-05b5-40d6-a95a-a314dbb7e81d", "aliases:array": "richard-myers:ZNF146-FLAG", "modified_site_by_target_id": "FLAG-ZNF146-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCACTTTCAAGGCTTTCATG;CCACTTTCAAGGCTTTCAT", "reagents:object:array": "source:addgene, identifier:72359, url:https://www.addgene.org/72359/; source:addgene, identifier:72360, url:https://www.addgene.org/72360/; source:addgene, identifier:72361, url:https://www.addgene.org/72361/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "3ac5ea20-b067-4722-aec0-7e9681c5682b", "aliases:array": "michael-snyder:eGFP_ZNF382_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF382-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF382 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "c20d4dcf-184d-4eec-8f9a-deae012892ad", "aliases:array": "michael-snyder:eGFP_ZNF625_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF625-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:5197, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=5197", "description": "This construct contains an eGFP N-terminal tag to ZNF625 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "92bab80f-0a7c-423c-8ca2-a93a4eea17d1", "aliases:array": "michael-snyder:eGFP_PATZ1_FRT_construct", "modified_site_by_target_id": "eGFP-PATZ1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00431689, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00431689", "description": "This construct contains an eGFP N-terminal tag to PATZ1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "aefbba3b-9f15-4a3e-b124-19d92cb404cf", "aliases:array": "michael-snyder:eGFP_OVOL3_FRT_construct", "modified_site_by_target_id": "eGFP-OVOL3-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:RefSeq:NM_001270948, url:https://www.ncbi.nlm.nih.gov/nuccore/NM_001270948.1", "description": "This construct contains an eGFP N-terminal tag to OVOL3, synthesized by Life Technologies (using the sequence identified by NM_001270948), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "de30f058-5a8b-4326-a59f-bad4c0e8293a", "aliases:array": "michael-snyder:eGFP_HIC1_FRT_construct", "modified_site_by_target_id": "eGFP-HIC1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00082856, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00082856", "description": "This construct contains an eGFP N-terminal tag to HIC1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "321ac114-dd4b-4260-b42f-32e3bee81a53", "aliases:array": "michael-snyder:eGFP_ZBTB17_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB17-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZBTB17 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "f0fe9746-b52b-48ad-95dd-2be52ceb6fe3", "modified_site_by_target_id": "eGFP-crh-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620bH06, url:https://www.sourcebioscience.com/search?search=WRM0620bH06", "description": "wgIs425 [C27D6.4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "58ba2b3d-2f42-4b16-8085-83de765f479a", "modified_site_by_target_id": "eGFP-egl-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs177 [egl-27::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of egl-27 coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3c044db2-9da6-4371-96d3-5d366709c0dd", "modified_site_by_target_id": "eGFP-ceh-82-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619bA03, url:https://www.sourcebioscience.com/search?search=WRM0619bA03", "description": "ddEx58 [F45C12.2::TY1::EGFP::3xFLAG + unc-119(+)]. Pick wild-type to maintain array. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "bb2d07bb-9f32-4b47-a098-250de7e71fc4", "modified_site_by_target_id": "eGFP-nfya-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613bG01, url:https://www.sourcebioscience.com/search?search=WRM0613bG01", "description": "wgIs424 [nfya-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "03f707bb-c0ec-4c75-b0f4-fef912971430", "modified_site_by_target_id": "eGFP-odd-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063bF04, url:https://www.sourcebioscience.com/search?search=WRM063bF04", "description": "wgIs405 [odd-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "463589fe-446e-4702-b1e7-7c98646560a4", "modified_site_by_target_id": "eGFP-syp-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0623aH01, url:https://www.sourcebioscience.com/search?search=WRM0623aH01", "description": "wgIs227 [syp-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "cafad46f-8a0a-4c3e-8e47-224141106680", "modified_site_by_target_id": "eGFP-dpy-27-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs32 [dpy-27::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "1f189f7f-fc69-419b-bb06-77d968941168", "modified_site_by_target_id": "eGFP-ham-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621bG11, url:https://www.sourcebioscience.com/search?search=WRM0621bG11", "description": "wgIs102 [ham-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8726834d-f96c-4dc7-89ae-b740c697993d", "modified_site_by_target_id": "eGFP-hlh-8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063cA11, url:https://www.sourcebioscience.com/search?search=WRM063cA11", "description": "wgIs347 [hlh-8::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "1165d5c1-15d2-44d0-a9d5-7a436df03d3d", "modified_site_by_target_id": "eGFP-nhr-90-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628aD10, url:https://www.sourcebioscience.com/search?search=WRM0628aD10", "description": "wgIs411 [nhr-90::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f89af253-be6c-4292-9ef8-93ad5a52735f", "aliases:array": "michael-snyder:eGFP_ZNF561_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF561-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:9993, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=9993", "description": "This construct contains an eGFP N-terminal tag to ZNF561 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "0f9f8a0f-4833-4760-a6d7-1cc95ba2b4ce", "aliases:array": "michael-snyder:eGFP_GLIS1_FRT_construct", "modified_site_by_target_id": "eGFP-GLIS1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079827, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079827", "description": "This construct contains an eGFP N-terminal tag to GLIS1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "369d278a-35f3-40d1-a882-60503a51462d", "aliases:array": "michael-snyder:eGFP_PRDM13_FRT_construct", "modified_site_by_target_id": "eGFP-PRDM13-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399294, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00399294", "description": "This construct contains an eGFP N-terminal tag to PRDM13 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "cc6def3c-273b-44b3-88bb-74bc86629758", "aliases:array": "michael-snyder:eGFP_ZBTB26_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB26-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079602, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079602", "description": "This construct contains an eGFP N-terminal tag to ZBTB26 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "aa7a064f-3c7d-429e-a02b-92692b7d2942", "aliases:array": "michael-snyder:eGFP_ZFP41_FRT_construct", "modified_site_by_target_id": "eGFP-ZFP41-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:71390, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=71390", "description": "This construct contains an eGFP N-terminal tag to ZFP41 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "9ed52184-de68-4c23-818a-5f16605efc7b", "aliases:array": "michael-snyder:eGFP_ZNF559_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF559-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:5091, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=5091", "description": "This construct contains an eGFP N-terminal tag to ZNF559 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "75bdcec0-4a8b-4d62-8286-53d6cc4b03c0", "aliases:array": "michael-snyder:eGFP_KLF1_FRT_construct", "modified_site_by_target_id": "eGFP-KLF1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000264834, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?db=core;g=ENSG00000105610;r=19:12884423-12887181;t=ENST00000264834", "description": "This construct contains an eGFP N-terminal tag to KLF1, synthesized by Life Technologies (using the sequence identified by ENST00000264834), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6033dcf3-e068-4d7d-81a9-645dda2695a7", "aliases:array": "michael-snyder:eGFP_ZBTB16_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB16-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00080005, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00080005", "description": "This construct contains an eGFP N-terminal tag to ZBTB16 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d9d2b545-8208-4946-a993-b8d85b3868c0", "aliases:array": "michael-snyder:eGFP_MYNN_FRT_construct", "modified_site_by_target_id": "eGFP-MYNN-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00040564, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00040564", "description": "This construct contains an eGFP N-terminal tag to MYNN under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d828acf5-60fd-4ed2-800c-6459f506e9e9", "aliases:array": "richard-myers:SSRP1-FLAG", "modified_site_by_target_id": "FLAG-SSRP1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GATCCGATGAGTAGAAACGG;GATGAGTAGAAACGGAGGA", "reagents:object:array": "source:addgene, identifier:72370, url:https://www.addgene.org/72370/; source:addgene, identifier:72371, url:https://www.addgene.org/72371/; source:addgene, identifier:72372, url:https://www.addgene.org/72372/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "980e7baf-ac8d-4149-ab75-1ec58eba9733", "modified_site_by_target_id": "eGFP-egl-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs54 [egl-5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of egl-5 coding sequence of fosmid ID#WRM066cA09 by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "64fc4a09-1a88-45ca-9080-0a5bd41b47d5", "modified_site_by_target_id": "eGFP-nhr-82-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618cC08, url:https://www.sourcebioscience.com/search?search=WRM0618cC08", "description": "wgIs421 [nhr-82::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "758a858c-d250-4ef8-89ed-d65504da1e03", "aliases:array": "hugo-bellen:bi-MiMIC-GFP", "modified_site_by_target_id": "eGFP-bi-dmelanogaster", "introduced_tags:object:array": "location:other, name: eGFP;location:other, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:please-contact-lab, url:http://flypush.imgen.bcm.tmc.edu/pscreen/", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: bi-RA, bi-RB, bi-RC, bi-RD, bi-RE, bi-RF, bi-RG of bi. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d73cb214-985e-4e69-8e66-ca377f6289b4", "modified_site_by_target_id": "eGFP-tbx-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613cB10, url:https://www.sourcebioscience.com/search?search=WRM0613cB10", "description": "wgIs368 [tbx-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d0141b40-177c-4002-9651-19b8018084f6", "modified_site_by_target_id": "eGFP-nhr-28-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620bA06, url:https://www.sourcebioscience.com/search?search=WRM0620bA06", "description": "wgIs317 [nhr-28::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "44d16855-b95f-4843-af78-b2d40a33c06c", "modified_site_by_target_id": "eGFP-ceh-90-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067dC05, url:https://www.sourcebioscience.com/search?search=WRM067dC05", "description": "wgIs210 [ceh-90:EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8ba2e661-a28d-4f32-b679-f380cf7e9833", "modified_site_by_target_id": "eGFP-nhr-84-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0621cD02, url:https://www.sourcebioscience.com/search?search=WRM0621cD02", "description": "wgIs357 [nhr-84::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "90d1e5e4-4b53-415c-844f-4409b99c4788", "modified_site_by_target_id": "eGFP-cey-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061cE06, url:https://www.sourcebioscience.com/search?search=WRM061cE06", "description": "wgIs358 [cey-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "028f3978-84bd-4624-bb6a-63d9de7cdd6c", "modified_site_by_target_id": "eGFP-efl-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0622dE10, url:https://www.sourcebioscience.com/search?search=WRM0622dE10", "description": "wgIs344 [F49E12.6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3904f1e1-68cf-42ba-a299-c53763ed3b84", "modified_site_by_target_id": "eGFP-nhr-237-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067cC10, url:https://www.sourcebioscience.com/search?search=WRM067cC10", "description": "wgIs228 [nhr-237::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "57796fee-7d1a-49e4-ab0e-698c851ba4e4", "aliases:array": "michael-snyder:eGFP_BNC2_FRT_construct", "modified_site_by_target_id": "eGFP-BNC2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399335, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00399335", "description": "This construct contains an eGFP N-terminal tag to BNC2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "29b6bc4d-d1f3-4dd8-b186-54a86a466a9d", "aliases:array": "michael-snyder:eGFP_REPIN1_FRT_construct", "modified_site_by_target_id": "eGFP-REPIN1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:3311, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=3311", "description": "This construct contains an eGFP N-terminal tag to REPIN1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b12fba37-b2b4-4a41-bc03-4b0b6cc500d4", "aliases:array": "michael-snyder:eGFP_ZBTB11_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB11-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00347094, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00347094", "description": "This construct contains an eGFP N-terminal tag to ZBTB11 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "c4e41ea6-5070-456c-adb2-2047ab802ce2", "aliases:array": "michael-snyder:eGFP_PRDM12_FRT_construct", "modified_site_by_target_id": "eGFP-PRDM12-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399079, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00399079", "description": "This construct contains an eGFP N-terminal tag to PRDM12 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b173e27a-9e81-4035-b75f-747c4c7583a3", "aliases:array": "michael-snyder:eGFP_ZNF433_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF433-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10687, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10687", "description": "This construct contains an eGFP N-terminal tag to ZNF433 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d18f3c96-75d4-47e2-993a-608a73577b1d", "aliases:array": "richard-myers:DNMT3B-FLAG", "modified_site_by_target_id": "FLAG-DNMT3B-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCATGTGAATAGTTCCAGCC", "reagents:object:array": "source:addgene, identifier:72365, url:https://www.addgene.org/72365/; source:addgene, identifier:72366, url:https://www.addgene.org/72366/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "66d6c19c-bac1-4fbc-af72-a35a425373dc", "aliases:array": "kevin-white:AV007_eGFP-fd85E", "modified_site_by_target_id": "eGFP-fd85E-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-136M04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATGAATATTCTACTAATATGTACGAGAGTAGTGCCAATGAGCACAATCGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "b3c73378-51f0-4893-9d8b-aabfcc05da6a", "aliases:array": "michael-snyder:eGFP_ZNF501_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF501-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00331353, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00331353", "description": "This construct contains an eGFP N-terminal tag to ZNF501 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "40483d83-d8a1-48a7-94e2-b633ce551b89", "aliases:array": "kevin-white:AV007_eGFP-E(spl)m3-HLH", "modified_site_by_target_id": "eGFP-E(spl)m3-HLH-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-77H22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGGTTAGCTCGCAGGAGTCCGGCGCCTCTGAGCCCGTCTGGAGGCCCTGG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7c927c19-1c9e-47e5-9d9d-7c19d6481788", "aliases:array": "michael-snyder:eGFP_ZSCAN21_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN21-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:11464, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=11464", "description": "This construct contains an eGFP N-terminal tag to ZSCAN21 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "55e3695e-168e-4645-b565-d08a1c2fd32a", "aliases:array": "robert-waterston:RW10325-GFP", "modified_site_by_target_id": "eGFP-mes-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0628bD04, url:https://www.sourcebioscience.com/search?search=WRM0628bD04", "description": "stIs10325(mes-4::TY1 EGFP 3xFLAG(modENCODE171); unc-119(+));unc-119(ed3)", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ec73cd8f-3797-43c4-9169-dcf1286c8a36", "aliases:array": "robert-waterston:CS152-GFP", "modified_site_by_target_id": "eGFP-sma-3-celegans", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "microinjection", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab, url:http://www.ncbi.nlm.nih.gov/pubmed/12397107", "description": "Construction of the sma-3 strain is described in Wang et al., 2002, Development 129:4989-4996. Briefly, GFP was inserted at the N-terminus of SMA-3 in an 8kb genomic fragment to generate pCS185. The construct was microinjected with rol-6 as a marker. The GFP fusion protein rescues sma-3 mutants. Received from Savage-Dunn", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0e179729-6ff6-484f-a1d1-4edf4bfce9d3", "aliases:array": "robert-waterston:OP543-GFP", "modified_site_by_target_id": "eGFP-sdz-38-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630cG02, url:https://www.sourcebioscience.com/search?search=WRM0630cG02", "description": "wgIs543(sdz-38::TY1 EGFP 3xFLAG(p_wTRG5_insertion_c_0093E11);unc-119(+));unc-119 (tm4063)", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "67a49e44-e569-4ebb-9763-3fdcea96a50b", "aliases:array": "richard-myers:ZNF511-FLAG", "modified_site_by_target_id": "FLAG-ZNF511-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "2645f176-1020-4b00-b5ed-aea9ed77c16d", "aliases:array": "richard-myers:CERS6-FLAG", "modified_site_by_target_id": "FLAG-CERS6-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "5e8f1f3f-9561-4f4d-96b7-7c03577329e9", "aliases:array": "richard-myers:ZGPAT-FLAG", "modified_site_by_target_id": "FLAG-ZGPAT-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GAGACCCCACAAGCACTA;GCTTCGTCCATAGTGCTTGT", "reagents:object:array": "source:addgene, identifier:86276, url:https://www.addgene.org/86276/; source:addgene, identifier:86327, url:https://www.addgene.org/86327/; source:addgene, identifier:86328, url:https://www.addgene.org/86328/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "d275a8f9-ab23-4d89-aebb-c1da916aea6e", "aliases:array": "richard-myers:GMEB2-FLAG", "modified_site_by_target_id": "FLAG-GMEB2-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "4f2db020-b627-461a-8006-8fdbacecc223", "aliases:array": "richard-myers:ZNF614-FLAG", "modified_site_by_target_id": "FLAG-ZNF614-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "47783822-0e82-4164-9134-9613af907a20", "aliases:array": "richard-myers:CEBPA-FLAG", "modified_site_by_target_id": "FLAG-CEBPA-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCAACTGCGCGTGAGGCGCG;GCCATGGGCAACTGCGCGTG", "reagents:object:array": "source:addgene, identifier:86293, url:https://www.addgene.org/86293/; source:addgene, identifier:86358, url:https://www.addgene.org/86358/; source:addgene, identifier:86359, url:https://www.addgene.org/86359/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "feff5f72-2d0d-4e7f-87a8-209345209a4f", "aliases:array": "richard-myers:PHF5A-FLAG", "modified_site_by_target_id": "FLAG-PHF5A-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "04a768c1-7f4d-41c9-af48-83d0d75bcce8", "modified_site_by_target_id": "eGFP-fkh-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615dC04, url:https://www.sourcebioscience.com/search?search=WRM0615dC04", "description": "wgIs100 [fkh-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "cf425cdd-1c90-4e36-8277-67cb8bcc9e94", "modified_site_by_target_id": "eGFP-lin-39-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs18 [lin-39::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of lin-39 coding sequence of fosmid ID#WRM0616aE11 by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "b5deec5e-1f57-423c-b1ca-dff616656d8a", "modified_site_by_target_id": "eGFP-nhr-102-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0620aC06, url:https://www.sourcebioscience.com/search?search=WRM0620aC06", "description": "wgIs463 [nhr-102::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8b0d52f9-05db-4c30-9f00-54685dfcabc7", "modified_site_by_target_id": "eGFP-nhr-43-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067dC05, url:https://www.sourcebioscience.com/search?search=WRM067dC05", "description": "wgIs477 [nhr-43::TY1::EGFP::3xFLAG(91G08) + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "82189d66-360f-46c3-94eb-a115383d9807", "modified_site_by_target_id": "eGFP-nhr-6-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0632dD06, url:https://www.sourcebioscience.com/search?search=WRM0632dD06", "description": "wgIs90 [nhr-6::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "34b07a4a-3461-46d4-9a6f-fb84559043f2", "aliases:array": "robert-waterston:OP480-GFP", "modified_site_by_target_id": "eGFP-nhr-71-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0622bA08, url:https://www.sourcebioscience.com/search?search=WRM0622bA08", "description": "wgIs480 [nhr-71::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:06-05-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3850adb9-e300-4303-a964-9a444f32fb94", "modified_site_by_target_id": "eGFP-F22D6.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635bC12, url:https://www.sourcebioscience.com/search?search=WRM0635bC12", "description": "wgIs399 [F22D6.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "95a9cd95-a41a-40b2-987d-ce7d53d787f3", "modified_site_by_target_id": "eGFP-ceh-22-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0611aD07, url:https://www.sourcebioscience.com/search?search=WRM0611aD07", "description": "wgIs389 [ceh-22::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "5e5c6d88-30bc-489f-a656-62f152a9a599", "modified_site_by_target_id": "eGFP-F44E2.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635aH12, url:https://www.sourcebioscience.com/search?search=WRM0635aH12", "description": "wgIs381 [F44E2.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "c1464c72-b2cf-42fc-a055-056ea79cc699", "modified_site_by_target_id": "eGFP-attf-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065bF12, url:https://www.sourcebioscience.com/search?search=WRM065bF12", "description": "wgIs219 [C05D10.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "9f5b03ae-1311-4ad3-94bd-84bc716b156c", "aliases:array": "richard-myers:HBP1-FLAG", "modified_site_by_target_id": "FLAG-HBP1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCTCACAACAACATTAAACC", "reagents:object:array": "source:addgene, identifier:86272, url:https://www.addgene.org/86272/; source:addgene, identifier:86320, url:https://www.addgene.org/86320/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "f0a06301-ddcf-410c-a15b-cbb8d8ebe150", "aliases:array": "richard-myers:KMT2B-FLAG", "modified_site_by_target_id": "FLAG-KMT2B-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "85c019aa-3ebd-4162-9585-fe44883249a4", "aliases:array": "richard-myers:RAD21-FLAG", "modified_site_by_target_id": "FLAG-RAD21-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "CCAAGGTTCCATATTATATAagg", "reagents:object:array": "source:addgene, identifier:64056, url:https://www.addgene.org/64056/; source:addgene, identifier:64057, url:https://www.addgene.org/64057/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "e431b12a-a724-4d48-8cc3-3acbea04d0ce", "aliases:array": "richard-myers:CREB1-FLAG", "modified_site_by_target_id": "FLAG-CREB1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCCACAAATCAGATTAATTTggg;GCCACAAATCAGATTAATTtgg", "reagents:object:array": "source:addgene, identifier:64938, url:https://www.addgene.org/64938/; source:addgene, identifier:64939, url:https://www.addgene.org/64939/; source:addgene, identifier:64940, url:https://www.addgene.org/64940/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "5d904a7b-c0a1-4fb7-a790-e8622af4138d", "aliases:array": "richard-myers:KDM3A-FLAG", "modified_site_by_target_id": "FLAG-KDM3A-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GACCTTAATCTCCCTGCACAT;GTAATTCATTTCCAATGTGC", "reagents:object:array": "source:addgene, identifier:86321, url:https://www.addgene.org/86321/; source:addgene, identifier:86322, url:https://www.addgene.org/86322/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "4debab60-105f-41b8-b7c4-428f8abcdd43", "aliases:array": "kevin-white:AV007_eGFP-Sox15", "modified_site_by_target_id": "eGFP-Sox15-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-152F07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATGAGATTAGCAACATTCTGGCAGGAGTGCGCAAGACCTGCTACAGCAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "446fa217-a78e-4152-94dc-9fa5669556d9", "aliases:array": "michael-snyder:eGFP_ZNF555_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF555-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1321, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1321", "description": "This construct contains an eGFP N-terminal tag to ZNF555 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020)", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "a64668d1-4516-47ed-ba33-a09a3ab2c6f0", "aliases:array": "kevin-white:AV007_eGFP-CG11902", "modified_site_by_target_id": "eGFP-CG11902-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-118B11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGAATCAGTTGAGCCCACCAGGCGCACGGTTCTAGAGCAGTTTACTCTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "96065651-4b13-4db4-a323-33092487a8ea", "aliases:array": "michael-snyder:eGFP_ZNF394_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF394-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:11750, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=11750", "description": "This construct contains an eGFP N-terminal tag to ZNF394 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "941d9c01-1861-41d3-af92-eef2f7a126ed", "aliases:array": "michael-snyder:eGFP_ZNF556_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF556-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:6700, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=6700", "description": "This construct contains an eGFP N-terminal tag to ZNF556 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "a2eece8f-53ec-431f-8ca6-38fd522a142b", "modified_site_by_target_id": "eGFP-nhr-23-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs43 [nhr-23::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "a823c81a-c124-4347-b1bd-1173940d76d6", "modified_site_by_target_id": "eGFP-skn-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aG02, url:https://www.sourcebioscience.com/search?search=WRM0641aG02", "description": "wgIs178 [skn-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of skn-1 coding sequence of fosmid ID#WRM0641aG02 by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "fd902f2e-0c0d-4614-aa72-5c36608a11f2", "aliases:array": "robert-waterston:OP509-GFP", "modified_site_by_target_id": "eGFP-ets-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM067cG01, url:https://www.sourcebioscience.com/search?search=WRM067cG01", "description": "wgIs509 [ets-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-03-13 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3d538210-2895-4263-825c-add8ac3555a5", "modified_site_by_target_id": "eGFP-hlh-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061dG04, url:https://www.sourcebioscience.com/search?search=WRM061dG04", "description": "wgIs396 [hlh-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "0b8cd627-ad02-4f27-9e37-d45d617a48cf", "modified_site_by_target_id": "eGFP-elt-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs56 [elt-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "25f1d240-3f44-4cb1-b740-9ff89098e260", "modified_site_by_target_id": "eGFP-unc-62-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab, url:http://elegans.bcgsc.ca/perl/fosmid/CloneSearch?genelist=++++--%0D%0A&file=0", "description": "gaIs285 [unc-62(7a)::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. A STOP-codon was inserted into exon 7b of unc-62 to generate an UNC-62(7a)-specific reporter. Recombineered fosmid was integrated by biolistic bombardment to produce strain OP601, which wa outcrossed to produce SD1888. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Gerstein MB, et al. Science. 2010 Dec 24;330(6012):1775-87. Strain was constructed as part of the Regulatory Element Project, part of modENCODE (http://www.modencode.org) MADE BY:Eric van Nostrand RECEIVED:12/12/12 from Kim S, Stanford University Medical School, Stanford, CA", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "2132ec89-2067-4689-8d0c-f7cc1812258b", "aliases:array": "hugo-bellen:dpn-MiMIC-GFP", "modified_site_by_target_id": "eGFP-dpn-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:please-contact-lab, url:http://flypush.imgen.bcm.tmc.edu/pscreen/", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: of dpn. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "370d5607-8ca0-42af-954e-5546c5ab3cb3", "aliases:array": "hugo-bellen:Eip75B-MiMIC-GFP", "modified_site_by_target_id": "eGFP-Eip75B-dmelanogaster", "introduced_tags:object:array": "location:internal, name: eGFP;location:internal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:please-contact-lab, url:http://flypush.imgen.bcm.tmc.edu/pscreen/", "description": "This line was created by RCME to replace the miniwhite sequence within the MiMIC transposon with an 3xFLAG sequence, targeting these isoforms: Eip75B-RA, Eip75B-RB, Eip75B-RC, Eip75B-RE, Eip75B-RF of Eip75B. They were a gift from Hugo Bellens lab at Baylor College of Medicine.", "documents:array": "/documents/68ca207f-902a-4f9d-984f-ea0a364b73d9/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "3ca708a4-df60-4988-997e-36a4a45cf958", "aliases:array": "robert-waterston:OP478-GFP", "modified_site_by_target_id": "eGFP-T07F8.4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0638dB09, url:https://www.sourcebioscience.com/search?search=WRM0638dB09", "description": "wgIs478 [T07F8.4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:06-05-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "a087b4b0-1923-4c5b-a837-81299966f63d", "modified_site_by_target_id": "eGFP-daf-12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs222 [daf-12::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "8a4372f5-ca79-468c-91ec-2e5cbe625546", "aliases:array": "michael-snyder:eGFP_ZNF366_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF366-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56668, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56668", "description": "This construct contains an eGFP N-terminal tag to ZNF366 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "1f53eb2e-8af1-4d40-b52c-2412c0e4f0dc", "aliases:array": "michael-snyder:eGFP_ZNF438_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF438-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:71842, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=71842", "description": "This construct contains an eGFP N-terminal tag to ZNF438 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "70e11ceb-c72c-4e29-bc01-87aff76e9232", "aliases:array": "robert-waterston:AGK541-GFP", "modified_site_by_target_id": "eGFP-unc-130-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:mex-5-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab, url:http://www.ncbi.nlm.nih.gov/pubmed/22819322", "description": "The transgenic strain expressing UNC-130::GFP under mex-5 promoter was generated by Mos1-mediated single copy insertion (MosSCI) transformation (Frokjaer-Jensen et al., 2008) into EG4322 (ttTi5605 II; unc-119(ed3)III) resulting in a strain AGK541 (armSi1[Pmex5::UNC-130::GFP::tbb-2 3UTR; cb-unc-119(+)II; unc-119(ed3)III). The Pmex5::UNC-130::GFP::tbb-2 3UTR plasmid was generated by MultiSite Gateway cloning system (Invitrogen) using the plasmids described in (Zeiser et al., 2011). Strain published in Cecere et al., 2012. PMID: 22819322. Received from Jun Liu", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f91bf8bb-a2a6-4e15-bacb-a3683cea8c7d", "aliases:array": "robert-waterston:xtl1186-GFP", "modified_site_by_target_id": "eGFP-B0035.1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "unc-119(ed9)III;pB0035.1::B0035.1::GFP;unc-119(+)", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a0c98266-c22b-4542-998b-5a20c6df9983", "aliases:array": "robert-waterston:GOU883-GFP", "modified_site_by_target_id": "eGFP-egl-13-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:egl-13-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "casIs203[Pegl-13::egl-13::gfp; Pegl-17::Myri-mCherry; Pegl-17::mCherry::his-24; unc-76(+)]. Plasmids or PCR products were co-injected into unc-76(e911) strain, and integrated by gamma ray. Outcross x0.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a0626a06-3a3a-47ee-8431-c2eb325d38c2", "aliases:array": "richard-myers:FOXA3-FLAG", "modified_site_by_target_id": "FLAG-FOXA3-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "a5648664-4876-43ef-bf48-d82b497089f0", "aliases:array": "richard-myers:ZBTB25-FLAG", "modified_site_by_target_id": "FLAG-ZBTB25-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "ef8f3641-10f9-49aa-8761-136057d9267e", "aliases:array": "richard-myers:ATF6B-FLAG", "modified_site_by_target_id": "FLAG-ATF6B-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "ab7c5176-82ab-4691-b01d-cb73a4363c3c", "aliases:array": "richard-myers:RXRB-FLAG", "modified_site_by_target_id": "FLAG-RXRB-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "baeadfe6-404e-421f-b9c6-6b535d9f007b", "aliases:array": "richard-myers:SOX5-FLAG", "modified_site_by_target_id": "FLAG-SOX5-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCAGGACAAGCCAACTGATAA", "reagents:object:array": "source:addgene, identifier:86292, url:https://www.addgene.org/86292/; source:addgene, identifier:86357, url:https://www.addgene.org/86357/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "4a77d527-0b59-47f9-a984-1d6e052da7dc", "aliases:array": "richard-myers:GATAD2A-FLAG", "modified_site_by_target_id": "FLAG-GATAD2A-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GATAGTGCGAGCCAGGCCCCG;GAGGGAGCCCGTCTTCCACG", "reagents:object:array": "source:addgene, identifier:86279, url:https://www.addgene.org/86279/; source:addgene, identifier:86333, url:https://www.addgene.org/86333/; source:addgene, identifier:86334, url:https://www.addgene.org/86334/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "28568b9e-a3cb-4eab-bbf9-92e06db15e28", "aliases:array": "richard-myers:MXD4-FLAG", "modified_site_by_target_id": "FLAG-MXD4-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "6fc1647c-881e-4eb2-90c6-743af2beb06e", "aliases:array": "richard-myers:NFYC-FLAG", "modified_site_by_target_id": "FLAG-NFYC-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "08d05312-ea60-48ec-8062-a2e6dd256b02", "aliases:array": "richard-myers:ZSCAN9-FLAG", "modified_site_by_target_id": "FLAG-ZSCAN9-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GACAGTGGCTGAGCTGGTCTA;GGCTGAGCTGGTCTAGGGCT", "reagents:object:array": "source:addgene, identifier:86268, url:https://www.addgene.org/86268/; source:addgene, identifier:86312, url:https://www.addgene.org/86312/; source:addgene, identifier:86313, url:https://www.addgene.org/86313/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "2a54eb7c-c764-4b5e-87ac-9357d3cf9398", "aliases:array": "richard-myers:NFIL3-FLAG", "modified_site_by_target_id": "FLAG-NFIL3-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GATTACTACTGAGTAAGAGCT;GAATTACTACTGAGTAAGAGC", "reagents:object:array": "source:addgene, identifier:86287, url:https://www.addgene.org/86287/; source:addgene, identifier:86348, url:https://www.addgene.org/86348/; source:addgene, identifier:86349, url:https://www.addgene.org/86349/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "b49283f2-f57e-47ec-a7ac-5c1744a9b56a", "aliases:array": "richard-myers:RCOR2-FLAG", "modified_site_by_target_id": "FLAG-RCOR2-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "62c3481b-ac19-458e-857d-ef49f2d09ff1", "aliases:array": "richard-myers:MIER3-FLAG", "modified_site_by_target_id": "FLAG-MIER3-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GACTCAGGTCACTCAGAGTGT;GCACTCTGAGTGACCTGAGTG", "reagents:object:array": "source:addgene, identifier:86274, url:https://www.addgene.org/86274/; source:addgene, identifier:86323, url:https://www.addgene.org/86323/; source:addgene, identifier:86324, url:https://www.addgene.org/86324/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "15a2cd4e-d4ff-4bfd-89c5-67bf1c234795", "aliases:array": "kevin-white:AV007_eGFP-rgr", "modified_site_by_target_id": "eGFP-rgr-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-13G11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GATGGCACAAAAAGCGAGAGCACAGCTCCGTGGGGCAAGCGGGCGGCAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c4ce55ff-e9c3-49ea-b76e-b1db6753a229", "aliases:array": "kevin-white:AV007_eGFP-CG3995", "modified_site_by_target_id": "eGFP-CG3995-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-79C08, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AACTGAAAAAGAAACTATTGGAAATCGAGCAAAAAAAGCTGTCGCTCAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cfba1f4d-8fef-43fe-891c-ab9ac4bd464a", "aliases:array": "kevin-white:AV007_eGFP-salr", "modified_site_by_target_id": "eGFP-salr-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-76C09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATGCCACTGGAGGGGACAACGACGAATCGGAGTCCAGGGATGCGGAGAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "0e362cb2-6dda-4086-84c6-0d97772489e8", "modified_site_by_target_id": "eGFP-C30G4.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635bE05, url:https://www.sourcebioscience.com/search?search=WRM0635bE05", "description": "wgIs346 [C30G4.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "405fb523-712e-43cf-978f-4369601e71db", "aliases:array": "robert-waterston:OP470-GFP", "modified_site_by_target_id": "eGFP-duxl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0612dG05, url:https://www.sourcebioscience.com/search?search=WRM0612dG05", "description": "wgIs470 [ZC204.2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:03-28-12 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f5e4d504-77e2-492a-9ebc-bb2eb46439ec", "aliases:array": "robert-waterston:OP516_construct", "modified_site_by_target_id": "eGFP-ceh-32-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs516 [ceh-32::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "18852779-36b4-4c06-a200-170a7fc4e518", "aliases:array": "brenton-graveley:S2R+-CG16901-HA", "modified_site_by_target_id": "HA-sqd-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "4f212c58-79fe-431e-b0b2-0f295d4d5308", "aliases:array": "brenton-graveley:S2R+-CG5099-HA", "modified_site_by_target_id": "HA-msi-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "06c45665-54a6-4e33-9898-f15f641529c3", "aliases:array": "brenton-graveley:S2R+-CG10279-HA", "modified_site_by_target_id": "HA-Rm62-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "d3a79233-df25-4dc9-bf37-04a8e50ae578", "aliases:array": "brenton-graveley:S2R+-CG12357-HA", "modified_site_by_target_id": "HA-Cbp20-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "b8f5f0b4-c2c1-4fe7-a258-beba7e8e3c04", "aliases:array": "brenton-graveley:S2R+-CG31716-HA", "modified_site_by_target_id": "HA-Cnot4-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "2f057291-e25b-414a-97fa-ac70e6d49d6f", "aliases:array": "brenton-graveley:S2R+-CG17136-HA", "modified_site_by_target_id": "HA-Rbp1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "de64b3c7-8532-45a9-9b6e-6026999eb0c0", "aliases:array": "brenton-graveley:S2R+-CG6227-HA", "modified_site_by_target_id": "HA-CG6227-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "14e03be7-2641-4705-a08b-6998d0f5bb60", "aliases:array": "michael-snyder:eGFP_ZBTB39_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB39-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZBTB39 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "7c4d4635-e1b9-4d75-87b4-f4cd4cc1f82e", "aliases:array": "michael-snyder:eGFP_ZNF317_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF317-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF317 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "18836048-eac1-4f4b-b4e0-3ef75dc95342", "aliases:array": "michael-snyder:eGFP_SCRT1_FRT_construct", "modified_site_by_target_id": "eGFP-SCRT1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:100068273, url:http://horfdb.dfci.harvard.edu/index.php?page=showdetail&orf=100068273", "description": "This construct contains an eGFP N-terminal tag to SCRT1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "02faaa06-8bf1-4f08-b889-2801f112c12f", "aliases:array": "michael-snyder:eGFP_ZNF582_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF582-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF582 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b8621910-cb66-4520-bf8f-911417475f01", "aliases:array": "michael-snyder:eGFP_ZNF215_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF215-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF215 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "e14420df-e476-4629-8d01-5cfd4d9dca40", "aliases:array": "robert-waterston:YL577-GFP", "modified_site_by_target_id": "eGFP-him-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "unc-119(ed3)III; vrIs131[pPIE-1::GFP:FLAG::HIM-1::HIM-1 3UTR, unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a3ded870-d294-48e9-a880-766e2b23aaed", "aliases:array": "robert-waterston:ZM8745-GFP", "modified_site_by_target_id": "eGFP-daf-16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP, promoter_used:ges-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab, url:http://www.ncbi.nlm.nih.gov/pubmed/23347407", "description": "daf-16(mu86);daf-2(e1370) III; hpSi15 (Pges-1 GFP::daf-16a). Generated by MosSci into ttTi5605; unc-119. the resulting insertion was outcrossed to remove unc-119 and then crossed into daf-16; daf-2 strain.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7b49beed-052a-4412-a1a9-d70b267be75f", "aliases:array": "robert-waterston:OP562-GFP", "modified_site_by_target_id": "eGFP-ahr-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0631dC03, url:https://www.sourcebioscience.com/search?search=WRM0631dC03", "description": "wgIs562 [ahr-1::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "37e17ea0-67e0-4be3-bde9-fc7de7da29fd", "aliases:array": "kevin-white:AV007_eGFP-SuHw", "modified_site_by_target_id": "eGFP-su(Hw)-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-158D06, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGGTGGTCCGGGAAAATAAGAAAAAACCTGTAGGCGAACAAGAGAAAGCT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9c9217b4-9a98-4f50-b91f-848137716222", "aliases:array": "michael-snyder:eGFP_ZNF473_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF473-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:7169, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=7169", "description": "This construct contains an eGFP N-terminal tag to ZNF473 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "30701f90-5f75-4eb2-b95d-5ef4888a79dd", "modified_site_by_target_id": "eGFP-aly-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cD11, url:https://www.sourcebioscience.com/search?search=WRM062cD11", "description": "wgIs468 [aly-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d76b6dba-f816-4776-9793-3d8896f8ed25", "modified_site_by_target_id": "eGFP-nhr-25-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM069bB11, url:https://www.sourcebioscience.com/search?search=WRM069bB11", "description": "wgIs33 [nhr-25::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "ce29f300-72cd-46dd-9bfb-9c3c44c00b29", "modified_site_by_target_id": "eGFP-sex-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061dE05, url:https://www.sourcebioscience.com/search?search=WRM061dE05", "description": "wgIs369 [sex-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "db2345e4-74f3-4532-8155-8e95fb8f30bd", "modified_site_by_target_id": "eGFP-elt-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619bE05, url:https://www.sourcebioscience.com/search?search=WRM0619bE05", "description": "wgIs354 [elt-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "cf906872-e87f-41db-88fc-e0d35c3a8e9c", "modified_site_by_target_id": "eGFP-C02F12.5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0622cF02, url:https://www.sourcebioscience.com/search?search=WRM0622cF02", "description": "wgIs437 [C02F12.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "413ba12d-e102-4e2f-b333-8c34260ec538", "modified_site_by_target_id": "eGFP-ceh-16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aB09, url:https://www.sourcebioscience.com/search?search=WRM0641aB09", "description": "wgIs82 [ceh-16::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "99053668-3ff3-4bbe-b119-0b9ebde773cd", "modified_site_by_target_id": "eGFP-eor-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617cB05, url:https://www.sourcebioscience.com/search?search=WRM0617cB05", "description": "wgIs350 [eor-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "70adbac0-fce4-4ef2-bfa6-9ef4a21bc5bb", "modified_site_by_target_id": "eGFP-unc-86-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0612cF07, url:https://www.sourcebioscience.com/search?search=WRM0612cF07", "description": "wgIs476 [unc-86::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "819dc342-3d35-4c90-9f5b-4714b03305a4", "modified_site_by_target_id": "eGFP-madf-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0636cB04, url:https://www.sourcebioscience.com/search?search=WRM0636cB04", "description": "wgIs436 [C01G12.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "49ca34a2-7cca-490e-8f18-ab83697584de", "modified_site_by_target_id": "eGFP-nhr-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0618bB02, url:https://www.sourcebioscience.com/search?search=WRM0618bB02", "description": "wgIs99 [nhr-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "b04bfb75-4e32-4765-9535-60e15475508a", "aliases:array": "richard-myers:GABP-FLAG", "modified_site_by_target_id": "FLAG-GABP-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GAAAAGGATAATTGAGCCCCagg;TTTGGAGTCTCAGAATGTCCtgg", "reagents:object:array": "source:addgene, identifier:64253, url:https://www.addgene.org/64253/; source:addgene, identifier:64254, url:https://www.addgene.org/64254/; source:addgene, identifier:64255, url:https://www.addgene.org/64255/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "739e959a-6b7e-440a-bb3c-6f64f5df36d7", "aliases:array": "richard-myers:KLF6_isoform2-FLAG", "modified_site_by_target_id": "FLAG-KLF6_isoform2-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "f73a347e-eb0d-47ae-b36c-8522b75d776f", "aliases:array": "richard-myers:ZNF205-FLAG", "modified_site_by_target_id": "FLAG-ZNF205-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "cecf2629-258b-44af-ba20-c50bb1e2446a", "aliases:array": "kevin-white:AV007_eGFP-CG12942", "modified_site_by_target_id": "eGFP-CG12942-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-162N04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ATCTCTTTGCCAGCTCCGCCGCTCTGGACAACCTGCTCAATTTGATACCT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "f666de09-1b87-45ad-b1dd-cd9e5f15ee30", "aliases:array": "robert-waterston:YL502-GFP", "modified_site_by_target_id": "eGFP-snpc-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cF05, url:https://www.sourcebioscience.com/search?search=WRM062cF05", "description": "prg-1(tm0872) I; unc-119(ed3) III;wgIs179[gei-11::TY1 EGFP FLAG;unc-119(+)]. Strain generated by crossing OP179 into prg-1(tm0872) mutants.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fe9db49d-1202-49b2-9e5f-40a5ac7b15af", "aliases:array": "robert-waterston:YL551-GFP", "modified_site_by_target_id": "eGFP-snpc-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cF05, url:https://www.sourcebioscience.com/search?search=WRM062cF05", "description": "snpc-4(tm4568) I; unc-119(ed3) III; prde-1(mj207) V; wgIs179 [snpc-4:TY1 EGFP 3XFLAG; unc-119]. Strain generated by crossing YL487 into prde-1(mj207) mutants.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1c10178e-88c1-428a-ac12-1f4fd607c4aa", "aliases:array": "robert-waterston:YL581-GFP", "modified_site_by_target_id": "eGFP-rec-8-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "unc-119(ed3)III; vrIs135[pPIE-1::GFP:FLAG::REC-8::REC-8 3UTR, unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "61d0c92f-f0f2-49a6-b7b5-fde5bd169bd5", "aliases:array": "kevin-white:AV007_eGFP-CG6654", "modified_site_by_target_id": "eGFP-CG6654-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-144O20, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGGCCCTTGAAGAGGAACTTAACGAGATGACCGAGTCTGCGCTTATGCTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8ac61c6e-432e-42df-93ed-c0c3f2de1624", "aliases:array": "kevin-white:AV007_eGFP-CG7556", "modified_site_by_target_id": "eGFP-CG7556-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-154K19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACTTATCCAGCGGCGAGGACTCGGACGATGCATATCAGTACGAGATCAGT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "75e54002-86f0-4e04-9d96-f86eecd3c105", "aliases:array": "kevin-white:AV007_eGFP-Fer1", "modified_site_by_target_id": "eGFP-Fer1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-163K19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGTCGGATCCTGGAGCTGCGGCCAGTATTTTCAGCAGCGGCAGTGGCATG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4133928b-3dd4-4ce8-af44-fc8bd2ca0aa8", "aliases:array": "kevin-white:AV007_eGFP-gfzf", "modified_site_by_target_id": "eGFP-gfzf-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-97B15, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACATGGAACACCCATTCCATCCGACGCGCAAGTCTATGGGCCTGAAGTTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e5ee0164-dae6-4dd4-a5fb-f89b593e871b", "aliases:array": "kevin-white:AV007_eGFP-CG12236", "modified_site_by_target_id": "eGFP-CG12236-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-54F14, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAATGGGCTGTTCGACCAAGGGATTCACCAAGATCGAGTACAGCGATCAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "89277663-299c-4382-968c-5906996744f2", "aliases:array": "kevin-white:AV007_eGFP-CG2116", "modified_site_by_target_id": "eGFP-CG2116-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-54P23, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACTACAACGACGAGCTGATATATGAAATCACCTTGAAGACTGAGGATAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "31776211-dc68-4224-b082-5a3176e551fc", "aliases:array": "robert-waterston:YL478-GFP", "modified_site_by_target_id": "eGFP-efl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab, url:http://www.ncbi.nlm.nih.gov/pubmed/23347407", "description": "unc-119(ed3) III; vrIs99 [pPIE-1::EFL-1:GFP:FLAG::FBF-1 3UTR, unc-119 (+)]). Strain generated by bombardment into unc-119(ed3) mutants.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "bd8d2e3e-9383-417b-bd74-124f254f35b4", "aliases:array": "robert-waterston:LW1254", "modified_site_by_target_id": "eGFP-sma-9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:sma-9-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "The strain was generating by bombardment. The plasmid used was described in Foehr et al. (2006) Development: pMX10: 3.7kb sma-9p::sma-9C2::gfp::unc-54 3UTR. PMID: 16790477.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "80332b00-e9c9-4d44-89fb-d23d1b419b32", "aliases:array": "kevin-white:AV008_eGFP-dpn", "modified_site_by_target_id": "eGFP-dpn-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-159A22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AATTCCTAGCTGGCGCCATCGAAAAGTCGAGCTCCGCTTGGAGGCCGTGG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8aec4731-ce86-4afe-b89b-84ba85959a05", "aliases:array": "kevin-white:AV007_eGFP-CG10274", "modified_site_by_target_id": "eGFP-CG10274-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-178M05, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAGCACATGCCGATGGCACCACTTTGGATGCTTTAAAAATCGATCATGTC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a5e9bf92-4ed1-4cd1-bb41-ddac3710fa06", "aliases:array": "kevin-white:AV007_eGFP-CG16815", "modified_site_by_target_id": "eGFP-CG16815-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-40O01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCAGATGGCCCTCTCCCAGCAGATGCTCATCTTTGGTGGCCAGCACTGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e665bc2a-18b6-4228-b502-3b9bd543a0d3", "aliases:array": "kevin-white:AV007_eGFP-CG7928", "modified_site_by_target_id": "eGFP-CG7928-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-161L07, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: ACGAGCAGAACTATGATGCCCACGTTCAGAGAGACGACTGCACGCCAGTT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "76589596-be2d-4285-a626-6d5f2a65c2d4", "aliases:array": "kevin-white:AV007_eGFP-org-1", "modified_site_by_target_id": "eGFP-org-1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-39C22, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CACATCACCAGATGATGCGACCGAATAGCTACATAGATCTGGTGCCGCGC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "80440cfc-9056-46c3-b411-6fdd1db1f5c9", "aliases:array": "brenton-graveley:S2R+-CG4262-HA", "modified_site_by_target_id": "HA-elav-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "2c341d6b-7d19-48bf-8b83-ba7ddc125595", "aliases:array": "brenton-graveley:S2R+-CG6987-HA", "modified_site_by_target_id": "HA-SF2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "0563a0b4-7b62-4da5-bdca-2cba2b41cb83", "aliases:array": "brenton-graveley:S2R+-CG5442-HA", "modified_site_by_target_id": "HA-SC35-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "dd38ef1f-47e4-4b7b-ba2f-7e965e04afd0", "aliases:array": "brenton-graveley:S2R+-CG17838-HA", "modified_site_by_target_id": "HA-Syp-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "7bd02b30-ae5a-4005-905e-62717c03bd47", "aliases:array": "brenton-graveley:S2R+-CG10851-HA", "modified_site_by_target_id": "HA-B52-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "3549f461-2f0f-4a9d-b414-7404d5a498eb", "aliases:array": "robert-waterston:OP405-GFP", "modified_site_by_target_id": "eGFP-odd-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM063bF04, url:https://www.sourcebioscience.com/search?search=WRM063bF04", "description": "wgIs405 [odd-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a89f7ae7-d2a9-4e64-b63e-1c0a7cb4ee6f", "aliases:array": "robert-waterston:OP404-GFP", "modified_site_by_target_id": "eGFP-nfya-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613bG01, url:https://www.sourcebioscience.com/search?search=WRM0613bG01", "description": "wgIs404 [nfya-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "8884df8e-04b2-4e82-a79d-2820594041b6", "aliases:array": "robert-waterston:OP429-GFP", "modified_site_by_target_id": "eGFP-F23B12.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068bG02, url:https://www.sourcebioscience.com/search?search=WRM068bG02", "description": "wgIs429 [F23B12.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:12-01-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "94695dab-3fbf-4802-8621-2d1e9b184326", "aliases:array": "kevin-white:AV007_eGFP-Su(var)3-7", "modified_site_by_target_id": "eGFP-Su(var)3-7-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-115H04, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GGCTGATAGCTTAATCAGTAACTCTTATTTTATTAGTTATAGGTGGAAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "a1716809-60a3-474e-9118-8364ee8017c6", "aliases:array": "michael-snyder:YL418_construct", "modified_site_by_target_id": "eGFP-efl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:ges-1-celegans;location:C-terminal, name:FLAG, promoter_used:ges-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "The EFL-1::GFP fusion protein is driven by the ges-1 promoter and expressed in the instestine.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "7f8db4bd-24ab-4e7e-a60e-1445cce95676", "aliases:array": "michael-snyder:eGFP_ZNF776_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF776-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:70699, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=70699", "description": "This construct contains an eGFP N-terminal tag to ZNF776 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "11b7759e-5ac9-4730-a6e1-32a498e94467", "aliases:array": "michael-snyder:eGFP_ZNF398_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF398-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10556, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10556", "description": "This construct contains an eGFP N-terminal tag to ZNF398 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "b168877f-6a9e-4f52-ba4a-bb19f7fd02c3", "aliases:array": "michael-snyder:eGFP_ZNF311_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF311-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:70576, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=70576", "description": "This construct contains an eGFP N-terminal tag to ZNF311 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "3e4e2434-eaf4-497d-b490-9932b5719545", "aliases:array": "michael-snyder:eGFP_RREB1_FRT_construct", "modified_site_by_target_id": "eGFP-RREB1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399254, url:https://plasmid.med.harvard.edu/PLASMID/GeneSearch.xhtml", "description": "This construct contains an eGFP N-terminal tag to RREB1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "3baf379b-8174-4ba6-9dc8-ca6026534fb2", "aliases:array": "valerie-reinke:YL398-GFP", "modified_site_by_target_id": "eGFP-lin-35-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:ges-1-celegans;location:C-terminal, name:FLAG, promoter_used:ges-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "This construct contains C-terminal GFP and FLAG tags to LIN-35 under the control of an intestine-specific promoter from GES-1.", "status": "released", "lab": "valerie-reinke", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004267"}, - {"uuid": "b93fb14f-4b7c-4377-9fb1-5018fb7eda27", "aliases:array": "valerie-reinke:YL424-GFP", "modified_site_by_target_id": "eGFP-efl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:efl-1-celegans;location:C-terminal, name:FLAG, promoter_used:efl-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "This construct contains C-terminal GFP and FLAG tags to EFL-1 under the control of its native promoter.", "status": "released", "lab": "valerie-reinke", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004267"}, - {"uuid": "841b5ba1-4b97-4fc2-9d1d-46fd15721e15", "aliases:array": "valerie-reinke:YL448-GFP", "modified_site_by_target_id": "eGFP-dpl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:ges-1-celegans;location:C-terminal, name:FLAG, promoter_used:ges-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "This construct contains C-terminal GFP and FLAG tags to DPL-1 under the control of an intestine-specific promoter from GES-1.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004267"}, - {"uuid": "6d9cd9f5-be85-4c60-919b-42938fdc1020", "aliases:array": "cgc:OP231-GFP", "modified_site_by_target_id": "eGFP-ZK546.5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs231 [ZK546.5::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "d3cf8221-1dab-4557-9ec3-18eab78b986e", "aliases:array": "michael-snyder:eGFP_SP3_FRT_construct", "modified_site_by_target_id": "eGFP-SP3-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00400284, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00400284", "description": "This construct contains an eGFP N-terminal tag to SP3 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "69b11812-cdc2-4b44-adc4-a09513fefc3e", "aliases:array": "michael-snyder:eGFP_EGR2_FRT_construct", "modified_site_by_target_id": "eGFP-EGR2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:9919, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=9919", "description": "This construct contains an eGFP N-terminal tag to EGR2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "e04777a6-6a8b-406f-bd9d-1e1ae335da21", "modified_site_by_target_id": "eGFP-nhr-201-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0612aH09, url:https://www.sourcebioscience.com/search?search=WRM0612aH09", "description": "wgIs479 [nhr-201::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "d370ba4f-19ae-4bd9-be84-585b901e4285", "aliases:array": "robert-waterston:OP370-GFP", "modified_site_by_target_id": "eGFP-ceh-31-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635dE06, url:https://www.sourcebioscience.com/search?search=WRM0635dE06", "description": "wgIs370 [ceh-31::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:RJT-PW RECEIVED:04-12-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "f23b5d51-ca7c-468e-b3af-2c6becfa4d12", "aliases:array": "robert-waterston:OP520_construct", "modified_site_by_target_id": "eGFP-ref-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs520 [ref-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "documents:array": "/documents/6b39b4a5-7efc-43df-aac8-40a0ad450e2b/;/documents/253304b2-6d17-40c3-8c8b-4d706cee7388/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U41HG007355"}, - {"uuid": "0cd3df6b-dffd-4c55-8c0a-5ddcb5d1661c", "aliases:array": "brenton-graveley:S2R+-CG6841-HA", "modified_site_by_target_id": "HA-CG6841-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA;location, promoter_used:MtnA-dmelanogaster:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "5bcb583a-1d87-472b-84dc-61f3b1331c42", "aliases:array": "brenton-graveley:S2R+-Empty Vector", "modified_site_by_target_id": "HA-influenza", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "f5c2d1b2-e406-4507-84c7-06b1de5436b5", "aliases:array": "brenton-graveley:S2R+-CG6203-HA", "modified_site_by_target_id": "HA-Fmr1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "2ebda555-bd21-41c4-90a0-a5b11203db13", "aliases:array": "brenton-graveley:S2R+-CG7437-HA", "modified_site_by_target_id": "HA-mub-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/6e684d33-1735-4603-b2fe-76819dadfb9d/;/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "41455f71-8404-4a9c-b450-ee8d546925d5", "aliases:array": "brenton-graveley:S2R+-CG16725-HA", "modified_site_by_target_id": "HA-Smn-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "1cac680e-2751-4590-8e50-a815261fe395", "aliases:array": "brenton-graveley:S2R+-CG16788-HA", "modified_site_by_target_id": "HA-RnpS1-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: HA, promoter_used:MtnA-dmelanogaster; location:C-terminal, name:FLAG, promoter_used:MtnA-dmelanogaster", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:brenton-graveley, identifier:please-contact-lab", "documents:array": "/documents/cb9bc761-5e00-4bbe-9064-59b8bf00a58b/", "status": "released", "lab": "brenton-graveley", "submitted_by": "/users/4fa80b58-322a-4c8e-9b33-d2a00c8405bd/", "award": "U01HG004271"}, - {"uuid": "b64a592c-a4a8-498f-b9d9-e36e71151f65", "aliases:array": "robert-waterston:OP354-GFP", "modified_site_by_target_id": "eGFP-elt-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0619bE05, url:https://www.sourcebioscience.com/search?search=WRM0619bE05", "description": "wgIs354 [elt-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-08-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2c246f6b-5d64-47a3-a7aa-dbf506e07d56", "aliases:array": "kevin-white:AV007_eGFP-CG8359", "modified_site_by_target_id": "eGFP-CG8359-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-66P19, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TTGACTTTCAGATCGAGGTCCTGAAAATCCTACGAAACTTCAAGCCGAAT", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "bd4e427a-06ae-4d9b-8aa5-d480e9bf91fc", "aliases:array": "kevin-white:AV007_eGFP-odd", "modified_site_by_target_id": "eGFP-odd-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-48K09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGAAGCCCAAGCGGATGCTGGGCTTCACCATCGATGAGATCATGAGCAGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "1c2206eb-4cf6-4483-b694-cecff4b2f565", "aliases:array": "kevin-white:AV007_eGFP-TFAM", "modified_site_by_target_id": "eGFP-TFAM-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-09F11, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TCGATCCACCTGAGCCAAAGCCCCGCAAGACGCTGGCCTCCAAAGATATA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "22a30b80-3610-474f-b2c4-80b5f21ce03c", "aliases:array": "kevin-white:AV007_eGFP-Pita", "modified_site_by_target_id": "eGFP-pita-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-09H09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AGCCTCATCACAAACTGGAACGCAACCTTAAGAATCGCCGATCCGCAAAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "23cee2a8-3246-4c21-a0bd-22abec137738", "aliases:array": "michael-snyder:eGFP_ZNF621_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF621-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079967, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079967", "description": "This construct contains an eGFP N-terminal tag to ZNF621 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "b0af230a-d084-434c-a647-4158f76b6c96", "aliases:array": "michael-snyder:eGFP_SALL2_FRT_construct", "modified_site_by_target_id": "eGFP-SALL2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1683, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1683", "description": "This construct contains an eGFP N-terminal tag to SALL2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "1fc256ff-e9a1-41d2-b700-2c39cc57bc73", "aliases:array": "michael-snyder:eGFP_ZNF112_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF112-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:54036, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=54036", "description": "This construct contains an eGFP N-terminal tag to ZNF112 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "c21bb58f-d072-4e11-9787-8af096e785b9", "aliases:array": "michael-snyder:eGFP_KLF13_FRT_construct", "modified_site_by_target_id": "eGFP-KLF13-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00328133, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00328133", "description": "This construct contains an eGFP N-terminal tag to KLF13 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "85bfa346-0cb2-4070-8612-7adc694d358e", "aliases:array": "michael-snyder:eGFP_ZIK1_FRT_construct", "modified_site_by_target_id": "eGFP-ZIK1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00378934, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00378934", "description": "This construct contains an eGFP N-terminal tag to ZIK1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "280b65bb-13ec-4318-9f2a-8986f57d838e", "aliases:array": "michael-snyder:eGFP_ZNF521_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF521-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:jussi-taipale, identifier:please-contact-lab", "description": "This construct contains an eGFP N-terminal tag to ZNF521 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "b9f6d1ff-cb7a-4f2d-ae87-964809551bde", "aliases:array": "michael-snyder:eGFP_ZNF248_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF248-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:53350, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=53350", "description": "This construct contains an eGFP N-terminal tag to ZNF248 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "64400338-de41-4d10-bdf1-b94194f3aaf8", "aliases:array": "michael-snyder:eGFP_ZNF691_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF691-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079774, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079774", "description": "This construct contains an eGFP N-terminal tag to ZNF691 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "5c4fc9be-10d7-49d6-a1ab-7c64ebe3661e", "aliases:array": "michael-snyder:eGFP_ZNF300_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF300-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:54029, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=54029", "description": "This construct contains an eGFP N-terminal tag to ZNF300 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "9f467d02-6e88-48c3-b0f2-7f5af3e9342d", "aliases:array": "michael-snyder:eGFP_ZSCAN29_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN29-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENSG00000140265, url:http://uswest.ensembl.org/Homo_sapiens/Gene/Summary?db=core;g=ENSG00000140265;r=15:43358172-43371025", "introduced_sequence": "ATGATGGCCAAGAGCGCCCTGAGAGAGAACGGCACCAACAGCGAGACATTCCGGCAGCGGTTCCGGCGGTTCCATTATCAGGAAGTGGCCGGACCCAGAGAGGCCTTCAGCCAGCTGTGGGAGCTGTGCTGCCGGTGGCTGAGGCCCGAAGTGCGGACCAAAGAACAGATCGTGGAACTGCTGGTGCTGGAACAGTTCCTGACCGTGCTGCCCGGCGAGATCCAGAACTGGGTGCAGGAACAGTGCCCCGAGAACGGCGAAGAGGCCGTGACCCTGGTGGAAGATCTGGAAAGAGAGCCCGGCAGACCCCGGTCCAGCGTGACCGTGTCTGTGAAGGGCCAGGAAGTGCGGCTGGAAAAGATGACCCCCCCCAAGAGCAGCCAGGAACTGCTGAGCGTCCGGCAGGAAAGCGTCGAGCCCCAGCCTCGGGGCGTGCCCAAGAAAGAGAGAGCCAGAAGCCCCGACCTGGGCCCCCAGGAACAGATGAACCCCAAAGAGAAGCTGAAGCCCTTCCAGCGGAGCGGCCTGCCATTCCCCAAGAGCGGCGTGGTGTCCCGGCTGGAACAGGGCGAGCCCTGGATCCCTGACCTGCTGGGCAGCAAAGAGAAAGAGCTGCCCAGCGGCAGCCACATCGGCGACAGAAGAGTGCACGCCGACCTGCTGCCCTCCAAGAAGGACCGGCGGAGCTGGGTGGAACAGGACCACTGGTCCTTCGAGGACGAGAAGGTGGCCGGCGTGCACTGGGGCTACGAGGAAACCAGAACCCTGCTGGCCATCCTGAGCCAGACCGAGTTCTACGAGGCCCTGCGGAACTGCCACCGGAACAGCCAGGTGTACGGCGCCGTGGCCGAGCGGCTGAGAGAGTATGGCTTCCTGCGGACCCTGGAACAGTGCAGGACCAAGTTCAAGGGCCTGCAGAAGTCCTACCGGAAAGTCAAGAGCGGCCACCCCCCCGAGACATGCCCATTCTTTGAAGAGATGGAAGCCCTGATGAGCGCCCAGGTGATCGCCCTGCCCAGCAACGGACTGGAAGCCGCCGCTAGCCACAGCGGCCTCGTGGGCTCTGACGCCGAGACAGAGGAACCCGGCCAGCGGGGATGGCAGCACGAGGAAGGCGCCGAAGAAGCCGTGGCCCAGGAAAGCGACAGCGACGACATGGACCTGGAAGCCACCCCCCAGGACCCCAACTCTGCCGCCCCTGTGGTGTTCAGATCCCCTGGCGGAGTGCATTGGGGCTATGAAGAGACAAAGACCTACCTGGCCATTCTGTCCGAGACACAGTTTTATGAGGCCCTCAGAAACTGCCACAGAAATTCCCAGCTGTATGGGGCCGTGGCTGAGAGACTGTGGGAGTACGGCTTTCTGAGAACCCCCGAGCAGTGTCGGACCAAGTTTAAGTCTCTGCAGACCAGCTATCGGAAAGTGAAGAACGGACAGGCCCCTGAAACCTGCCCATTTTTTGAAGAAATGGACGCTCTGGTGTCCGTGCGCGTGGCCGCTCCCCCCAACGATGGACAGGAAGAGACAGCCAGCTGCCCCGTGCAGGGCACATCTGAGGCCGAGGCCCAGAAGCAGGCCGAGGAAGCCGACGAGGCCACCGAAGAGGACTCCGACGACGACGAGGAAGATACCGAGATCCCCCCTGGCGCCGTGATCACCAGAGCCCCCGTGCTGTTCCAGAGCCCCAGAGGCTTCGAGGCCGGCTTCGAGAACGAGGACAACAGCAAGCGGGACATCAGCGAGGAAGTGCAGCTGCATCGGACACTGCTGGCCAGAAGCGAGCGGAAGATCCCCAGATACCTGCACCAGGGCAAGGGCAACGAGAGCGACTGCAGATCCGGCAGACAGTGGGCCAAGACCAGCGGCGAGAAGCGGGGCAAGCTGACCCTGCCCGAGAAGTCCCTGAGCGAGGTGCTGAGCCAGCAGAGGCCTTGCCTGGGCGAGCGGCCCTACAAGTACCTGAAGTACAGCAAGAGCTTCGGCCCCAACAGCCTGCTGATGCACCAGGTGTCCCACCAGGTGGAAAACCCCTACAAGTGCGCCGACTGCGGCAAGTCCTTCAGCAGAAGCGCCAGACTGATCCGGCACCGGCGGATCCACACAGGCGAGAAGCCTTACAAGTGCCTGGACTGCGGAAAGAGCTTCCGGGACAGCAGCAACTTCATCACCCACAGACGGATTCACACCGGGGAGAAACCCTACCAGTGTGGCGAGTGTGGCAAGTGCTTCAACCAGAGCAGCAGCCTGATCATCCACCAGAGAACCCACACCGGCGAAAAGCCATATCAGTGCGAGGAATGCGGCAAGAGCTTTAACAACAGCAGCCACTTCTCCGCCCATCGGAGAATCCATACCGGCGAGAGGCCCCACGTGTGCCCCGATTGCGGCAAAAGCTTCAGCAAGTCCAGCGACCTGCGGGCCCACCACAGGACCCATACAGGGGAGAAGCCATACGGCTGCCACGATTGCGGGAAGTGTTTCAGCAAGAGCAGCGCCCTGAACAAGCACGGGGAGATCCACGCCAGAGAGAAGCTGCTGACCCAGAGCGCCCCCAAG", "description": "This construct contains an eGFP N-terminal tag to ZSCAN29 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "1a9018d4-5282-4caa-be4c-39c78bd89bb7", "aliases:array": "valerie-reinke:YL445-GFP", "modified_site_by_target_id": "eGFP-efl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans;location:C-terminal, name:FLAG, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "This construct contains C-terminal GFP and FLAG tags to EFL-1 under the control of a germ-line specific promoter from PIE-1.", "status": "released", "lab": "valerie-reinke", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004267"}, - {"uuid": "e54fa249-bc2d-4db9-af1a-430e5b166b37", "aliases:array": "valerie-reinke:YL390-GFP", "modified_site_by_target_id": "eGFP-dpl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans;location:C-terminal, name:FLAG, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "This construct contains C-terminal GFP and FLAG tags to DPL-1 under the control of a germ-line specific promoter from PIE-1.", "status": "released", "lab": "valerie-reinke", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004267"}, - {"uuid": "90097767-846a-4886-ae8b-6a04723ffec8", "aliases:array": "valerie-reinke:YL402-GFP", "modified_site_by_target_id": "eGFP-lin-35-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans;location:C-terminal, name:FLAG, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "This construct contains C-terminal GFP and FLAG tags to LIN-35 under the control of a germ-line specific promoter from PIE-1.", "status": "released", "lab": "valerie-reinke", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004267"}, - {"uuid": "40c11022-8238-4823-81dd-84332b58872c", "aliases:array": "cgc:OP226-GFP", "modified_site_by_target_id": "eGFP-nhr-116-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs226 [nhr-116::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "8c859ab4-440e-4fe5-b52f-36195e43e5c2", "aliases:array": "cgc:OP178-GFP", "modified_site_by_target_id": "eGFP-skn-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0641aG02, url:https://www.sourcebioscience.com/search?search=WRM0641aG02", "description": "wgIs178 [skn-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence of fosmid by recombineering", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "a490520b-7f59-42af-bc95-a5e7ed3f8162", "aliases:array": "modencode:YL457-GFP", "modified_site_by_target_id": "eGFP-snpc-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "80f94b83-c8ab-4429-983c-53787e3fa057", "aliases:array": "michael-snyder:OP337_construct", "modified_site_by_target_id": "eGFP-fkh-10-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:FLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "This strains transgene was constructed by fosmid recombineering at the TransgeneOmics Unit of the Max Planck Institute of Molecular Cell Biology and Genetics in Dresden. The tagged fosmid was integrated into the genome of an unc-119(ed3) worms using biolistic transformation. The FKH-10::EGFP fusion protein is expressed in the correct fkh-10 spatio-temporal expression pattern. This strain was used for ChIP-seq experiments to map the in vivo binding sites for the FKH-10 transcription factor.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "bac626a2-86e7-4e25-869c-e877066fe7bd", "aliases:array": "david-miller:NC1639_construct", "modified_site_by_target_id": "eGFP-unc-55-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:unknown, name: eGFP, promoter_used:ttr-39-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "Expresses functional *GFP-tagged UNC-55* (COUP-TF) in ventral cord GABA motor neurons (also some ectopic expression in other cells). This line is integrated and shows strong GFP expression.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "7c420021-21c8-483b-b85c-8c0c630a972d", "aliases:array": "michael-snyder:OP600_construct", "modified_site_by_target_id": "eGFP-unc-62-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:FLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "This strains transgene was constructed by fosmid recombineering at the TransgeneOmics Unit of the Max Planck Institute of Molecular Cell Biology and Genetics in Dresden. The tagged fosmid was integrated into the genome of an unc-119(ed3) worms using biolistic transformation. The UNC-62::EGFP fusion protein is expressed in the correct unc-62 spatio-temporal expression pattern. This strain was used for ChIP-seq experiments to map the in vivo binding sites for the UNC-62 transcription factor.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "44ce5dea-394d-4ac6-b558-284b71229944", "aliases:array": "michael-snyder:OP26_construct", "modified_site_by_target_id": "eGFP-mab-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:FLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "This strains transgene was constructed by fosmid recombineering at the TransgeneOmics Unit of the Max Planck Institute of Molecular Cell Biology and Genetics in Dresden. The tagged fosmid was integrated into the genome of an unc-119(ed3) worms using biolistic transformation. The MAB-5::EGFP fusion protein is expressed in the correct mab-5 spatio-temporal expression pattern. This strain was used for ChIP-seq experiments to map the in vivo binding sites for the MAB-5 transcription factor.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "60f74598-d593-4d83-af24-3b1ac7998caa", "aliases:array": "robert-waterston:OP536-GFP", "modified_site_by_target_id": "eGFP-irx-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624bH02, url:https://www.sourcebioscience.com/search?search=WRM0624bH02", "description": "wgIs536 [irx-1::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "fe8c6dca-a9d9-4af9-90bc-7a7cb1211ed7", "aliases:array": "robert-waterston:OP544-GFP", "modified_site_by_target_id": "eGFP-zip-5-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617bD09, url:https://www.sourcebioscience.com/search?search=WRM0617bD09", "description": "wgIs544 [zip-5::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "822c4651-cb09-4fc8-b5f0-fd44359a63f8", "aliases:array": "robert-waterston:TH184-GFP", "modified_site_by_target_id": "eGFP-hmg-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0637dG02, url:https://www.sourcebioscience.com/search?search=WRM0637dG02", "description": "ddIs101 [hmg-11::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c814f5b5-bced-4c16-b43a-34dbba49d23a", "aliases:array": "kevin-white:ZNF507", "modified_site_by_target_id": "eGFP-ZNF507-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-373A5", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF507. The last 50 bases before the stop codon of ZNF507 are as follows: TTGTAAACATCATCCTGAATAAGGACCACAATACAGCTCTAAACACAAAT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "6d9a1101-d85d-4264-8018-afd216451696", "aliases:array": "kevin-white:ZNF174", "modified_site_by_target_id": "eGFP-ZNF174-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-361I19", "description": "This construct was made using the Human RP11 BAC library, derived from male whole blood, and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF174. The last 50 bases before the stop codon of ZNF174 are as follows: ATATGGCCACAGATGAACTTCCATGCAAGCTATGGCTGAGTTTCATTGCT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "34304ae7-2d4e-4ca1-85e9-53f3d582bd36", "aliases:array": "robert-waterston:OP560-GFP", "modified_site_by_target_id": "eGFP-pop-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0635aF10, url:https://www.sourcebioscience.com/search?search=WRM0635aF10", "description": "wgIs560 [POP-1::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3139e48f-99ba-47ec-bc67-9849b972699c", "aliases:array": "michael-snyder:eGFP_ZNF140_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF140-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:71088, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=71088", "description": "This construct contains an eGFP N-terminal tag to ZNF140 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "ba686c54-3120-4c79-bb4e-e4ac5592ddae", "aliases:array": "michael-snyder:eGFP_SALL1_FRT_construct", "modified_site_by_target_id": "eGFP-SALL1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00295069, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00295069", "description": "This construct contains an eGFP N-terminal tag to SALL1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "bc67bc4f-8366-4fa6-baff-f6ab7c4d8a8b", "aliases:array": "michael-snyder:eGFP_ZEB2_FRT_construct", "modified_site_by_target_id": "eGFP-ZEB2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00347714, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00347714", "description": "This construct contains an eGFP N-terminal tag to ZEB2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d0083438-fe91-4ceb-bf66-d0512c3f0cd9", "aliases:array": "michael-snyder:eGFP_ZNF213_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF213-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:5271, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=5271", "description": "This construct contains an eGFP N-terminal tag to ZNF213 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "ac1a22a1-0dbf-4669-825d-4c26f5e51cfa", "aliases:array": "michael-snyder:eGFP_ZNF346_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF346-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:4978, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=4978", "description": "This construct contains an eGFP N-terminal tag to ZNF346 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "58d9b7dd-93a5-40d6-8d34-903903682cf7", "aliases:array": "michael-snyder:eGFP_ZNF48_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF48-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00080023, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00080023", "description": "This construct contains an eGFP N-terminal tag to ZNF48 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "86bb14bc-252e-43e1-9ffb-882e726174e9", "aliases:array": "michael-snyder:eGFP_ZNF510_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF510-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079919, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079919", "description": "This construct contains an eGFP N-terminal tag to ZNF510 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "5dc35ce1-28e3-4191-89d2-bdd67b5b43cf", "aliases:array": "michael-snyder:eGFP_ZNF518A_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF518A-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:52952, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=52952", "description": "This construct contains an eGFP N-terminal tag to ZNF518A under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "7984a343-7464-4a44-ab29-b4ffaf1b4821", "aliases:array": "michael-snyder:eGFP_ZNF600_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF600-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000338230, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?db=core;g=ENSG00000189190;r=19:52764195-52786763;t=ENST00000338230", "description": "This construct contains an eGFP N-terminal tag to ZNF600, synthesized by Life Technologies (using the sequence identified by ENST00000338230), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "56d89662-1c67-4898-b64c-9e9c6de19d05", "aliases:array": "michael-snyder:eGFP_ZNF354C_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF354C-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:71110, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=71110", "description": "This construct contains an eGFP N-terminal tag to ZNF354C under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d7edec66-b34e-485e-951c-17d05da6e3e9", "aliases:array": "robert-waterston:OP358-GFP", "modified_site_by_target_id": "eGFP-cey-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061cE06, url:https://www.sourcebioscience.com/search?search=WRM061cE06", "description": "wgIs358 [cey-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:Robert Terrell RECEIVED:12-23-10 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "ff743c3f-ea27-45af-96c8-35c912e9ecf6", "aliases:array": "robert-waterston:OP433-GFP", "modified_site_by_target_id": "eGFP-hlh-30-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM064cH05, url:https://www.sourcebioscience.com/search?search=WRM064cH05", "description": "wgIs433 [hlh-30::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:01-11-12 from Reinke V, modENCODE, Yale University, New Haven, CT", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cf315941-1b96-4597-b345-9853a98cae89", "aliases:array": "robert-waterston:OP398-GFP", "modified_site_by_target_id": "eGFP-dve-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0624bB05, url:https://www.sourcebioscience.com/search?search=WRM0624bB05", "description": "wgIs398 [dve-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering. Expression of transgene confirmed by GFP. References: Sarov, M, et al. Nat Methods (2006) 10:839-44. Zhong, M, et al. PLoS Genet (2010) 6(2):e1000848. Strain was constructed as part of the Regulatory Element Project, part of modENCODE MADE BY:DKV-RJT-PW RECEIVED:08-23-11 from Waterston B, University of Washington, Seattle, WA", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "400d2a2c-51f2-4a8c-94d9-1d9a1d0a501a", "modified_site_by_target_id": "eGFP-lola-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-64B21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV001) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CGAAGCACAAACACAATCTCGTGCTGCATATGCGCACCCACCAACATCGA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/7b542e10-6d58-4967-b70a-c3a9b0407f1f/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3c9ce97f-4ee3-4130-8923-7b6faae741f1", "aliases:array": "michael-snyder:OP167_construct", "modified_site_by_target_id": "eGFP-daf-12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:FLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "This strains transgene was constructed by fosmid recombineering at the TransgeneOmics Unit of the Max Planck Institute of Molecular Cell Biology and Genetics in Dresden. The tagged fosmid was integrated into the genome of an unc-119(ed3) worms using biolistic transformation. The DAF-12::EGFP fusion protein is expressed in the correct daf-12 spatio-temporal expression pattern. This strain was used for ChIP-seq experiments to map the in vivo binding sites for the DAF-12 transcription factor.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "fae58181-c3a8-4997-ad5e-739dee3ad2b5", "aliases:array": "michael-snyder:TJ356_construct", "modified_site_by_target_id": "eGFP-daf-16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "Integrated DAF-16::GFP roller strain. Daf-c, Rol, Integrated by gamma irradiation of extrachromosomal (Ex daf-16::gfp) line. Outcrossed x5. Created by S. Henderson and T. Johnson, Current Biology 11: 1975-80, 2001. Presumably the initial extrachromosomal array was created by microinjection using the plasmid pRF4 containing rol-6(su1006d) as the transgenic marker, but this information is omitted from the CGC record. There is also no information about which GFP variant was used or where the DAF-16::GFP fusion was made. The pGP30 plasmid bearing the fusion protein construct can rescue a daf-16(null) in the appropriate genetic background.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "5276451b-3fdc-43ab-8094-cb66c5dd532d", "aliases:array": "michael-snyder:OP391_construct", "modified_site_by_target_id": "eGFP-med-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:FLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:michael-snyder, identifier:please-contact-lab", "description": "This strains transgene was constructed by Mihail Sarov at the Max Planck Institute for Cell Biology and Genetics in Dresden, using Tony Hymans recombineering pipeline. The resulting plasmid was used for biolistic transformation of an unc-119(ed3) strain. The MED-1::EGFP fusion protein is expressed in the correct med-1 spatio-temporal expression pattern. This strain was used for ChIP-seq experiments to map the in vivo binding sites for the MED-1 transcription factor.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/27e105ca-c741-4459-bf17-90e003508639/", "award": "U01HG004267"}, - {"uuid": "aad6a48e-25d4-41aa-8f21-b75675d7ed2b", "aliases:array": "michael-snyder:YL398_construct", "modified_site_by_target_id": "eGFP-lin-35-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:ges-1-celegans;location:C-terminal, name:FLAG, promoter_used:ges-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "The LIN-35::GFP fusion protein is driven by the ges-1 promoter and is expressed in the intestine.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/5a9c0bc3-eeb5-40a8-9388-ede91b22c821/", "award": "U01HG004267"}, - {"uuid": "bda754f6-db7f-4694-aef1-f8fee48f9c09", "aliases:array": "robert-waterston:OP541-GFP", "modified_site_by_target_id": "eGFP-cog-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0640cG09, url:https://www.sourcebioscience.com/search?search=WRM0640cG09", "description": "wgIs541 [cog-1::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "6e4ba38f-46e0-4f63-8e4e-363d178aac09", "aliases:array": "kevin-white:ZNF512", "modified_site_by_target_id": "eGFP-ZNF512-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-209G13", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF512. The last 50 bases before the stop codon of ZNF512 are as follows: AGTTCCAGAAAGTAAAGCCCCCAAAGACTAATCATAAACGAGGAAGGAAA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "741bf0fa-fb00-4285-8021-c208be6ee15a", "aliases:array": "valerie-reinke:YL425-GFP", "modified_site_by_target_id": "eGFP-dpl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:dpl-1-celegans;location:C-terminal, name:FLAG, promoter_used:dpl-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "This construct contains C-terminal GFP and FLAG tags to DPL-1 under the control of its native promoter.", "status": "released", "lab": "valerie-reinke", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004267"}, - {"uuid": "a74e85f4-e735-4dbf-8e05-0a052b6eeece", "aliases:array": "valerie-reinke:YL409-GFP", "modified_site_by_target_id": "eGFP-lin-35-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:lin-35-celegans;location:C-terminal, name:FLAG, promoter_used:lin-35-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "This construct contains C-terminal GFP and FLAG tags to LIN-35 under the control of its native promoter.", "status": "released", "lab": "valerie-reinke", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004267"}, - {"uuid": "34c642a1-93e8-4aad-96f6-1261c926e22d", "aliases:array": "cgc:OP217-GFP", "modified_site_by_target_id": "eGFP-aly-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "ddIs172 [aly-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "1df71421-bfe6-4c11-882f-7f9a787a46a4", "aliases:array": "cgc:OP389-GFP", "modified_site_by_target_id": "eGFP-ceh-22-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs389 [ceh-22::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "98aeb761-ab05-4c11-b856-65305d32a39c", "aliases:array": "cgc:OP212-GFP", "modified_site_by_target_id": "eGFP-ceh-82-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "ddEx58 [F45C12.2::TY1::EGFP::3xFLAG + unc-119(+)]. Pick wild-type to maintain array. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "3c031ad0-9e5a-4b24-91e4-6fbb59059567", "aliases:array": "modencode:YL521-GFP", "modified_site_by_target_id": "eGFP-lin-35-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "ed9e0022-448b-4ebb-8042-b0bcae1213bb", "aliases:array": "modencode:OP337-GFP", "modified_site_by_target_id": "eGFP-fkh-10-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "968f3fdc-13b5-4382-acb8-8ff9894e44bd", "aliases:array": "modencode:OP102-GFP", "modified_site_by_target_id": "eGFP-mep-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "c21ee40d-7f59-41fe-89d3-ef35cb7d5e52", "aliases:array": "modencode:OP174-GFP", "modified_site_by_target_id": "eGFP-ces-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "325b10fb-df29-45f9-bc9e-0af1d2f36ce4", "aliases:array": "cgc:OP75-GFP", "modified_site_by_target_id": "eGFP-elt-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs75 [elt-3::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "eae0776d-8106-49e0-91ee-dac31660c574", "aliases:array": "cgc:OP198-GFP", "modified_site_by_target_id": "eGFP-mml-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs198 [mml-1::TY1::EGFP::3xFLAG + unc-119(+)]. Y1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "35f30043-be7b-4d44-bdaf-1d707775b035", "aliases:array": "cgc:OP202-GFP", "modified_site_by_target_id": "eGFP-ceh-9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs202 [ceh-9::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "85021b5d-06d3-4753-8f37-9538dcfae0f6", "aliases:array": "cgc:OP355-GFP", "modified_site_by_target_id": "eGFP-ZK337.2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs355 [mdl-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "147603dc-8347-4dee-8a34-8c2fd4eaf50c", "aliases:array": "modencode:OP193-GFP", "modified_site_by_target_id": "eGFP-sea-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "3d1e0308-6494-432a-9a18-f1863957f92c", "aliases:array": "cgc:OP201-GFP", "modified_site_by_target_id": "eGFP-pqm-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs201 [pqm-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "8b1c4dd1-6c04-4cc6-b029-97e968f3b3f6", "aliases:array": "cgc:OP318-GFP", "modified_site_by_target_id": "eGFP-nhr-12-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs318 [nhr-12::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "fa4eef34-3665-4f10-9083-dbbef0ad293d", "aliases:array": "modencode:OP601-GFP", "modified_site_by_target_id": "eGFP-unc-62-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "7700f98c-e77e-4513-9655-102530f4e115", "aliases:array": "cgc:OP219-GFP", "modified_site_by_target_id": "eGFP-attf-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs219 [C05D10.1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "fbdbe151-b8b2-4bcb-8cde-f00fb54b25b2", "aliases:array": "michael-snyder:eGFP_ELF4_CRISPR_construct", "modified_site_by_target_id": "eGFP-ELF4-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ELF4 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "6e8272e0-bd0f-41dc-80c1-4fdfb13f4028", "aliases:array": "michael-snyder:eGFP_ZBTB26_CRISPR_construct", "modified_site_by_target_id": "eGFP-ZBTB26-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZBTB26 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "8e39aa78-9a45-4311-9644-ed6bbe46cf9d", "aliases:array": "robert-waterston:OP636-GFP", "modified_site_by_target_id": "eGFP-tbx-9-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM065aG10, url:https://www.sourcebioscience.com/search?search=WRM065aG10", "description": "wgIs636 [TBX-9::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "228cf24e-3fcf-4715-b43b-41e8a7fdf99e", "aliases:array": "robert-waterston:OP573-GFP", "modified_site_by_target_id": "eGFP-hnd-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630bC04, url:https://www.sourcebioscience.com/search?search=WRM0630bC04", "description": "wgIs573 [HND-1::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9c567d1c-0dc7-415d-8e7c-3abfd891af20", "aliases:array": "robert-waterston:OP622-GFP", "modified_site_by_target_id": "eGFP-gmeb-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0639cB02, url:https://www.sourcebioscience.com/search?search=WRM0639cB02", "description": "wgIs622 [GMEB-2::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d5a6d1e5-950e-4ffd-b527-4595c8b9034d", "aliases:array": "robert-waterston:OP659-GFP", "modified_site_by_target_id": "eGFP-unc-120-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0611bD01, url:https://www.sourcebioscience.com/search?search=WRM0611bD01", "description": "wgIs659 [UNC-120::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "096b6333-d6b1-4b2d-8cf2-f3ddd04efdaf", "aliases:array": "kevin-white:ELF1", "modified_site_by_target_id": "eGFP-ELF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-429P17", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ELF1. The last 50 bases before the stop codon of ELF1 are as follows: CTTCTCAGGTAGCTATGAAACAAAACGAACTGCTGGAACCCAACTCTTTT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "14e6e1c9-5d1c-4bf3-86d7-7289bdb227b0", "aliases:array": "kevin-white:BACH1", "modified_site_by_target_id": "eGFP-BACH1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CTD-2083K20", "description": "This construct was made using the Invitrogen BAC (Bacterial Artificial Chromosome) Clone Collections and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of BACH1. The last 50 bases before the stop codon of BACH1 are as follows: AATTAGAAGCATGCTTTCCACTGAACTTCCCGACAACATTTGTTATGCAGA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dc7e0de1-bd9b-43c4-a7ed-e4867c786e7c/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "1dca2295-7551-47c2-8bf2-bf5cbde78f07", "aliases:array": "kevin-white:GTF2E2", "modified_site_by_target_id": "eGFP-GTF2E2-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-128D14", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of GTF2E2. The last 50 bases before the stop codon of GTF2E2 are as follows: AACACTTGGCTGGAGTGCTGAAGGATTACTCTGACATTACTTCCAGCAAA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "1d2bd7e1-b562-4410-aa28-d0860b35f9c8", "aliases:array": "kevin-white:ZNF589-CRISPR", "modified_site_by_target_id": "eGFP-ZNF589-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "AUUGAGGCCGAGGCUUUGUA", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF589. The sequence of the guide RNA was AUUGAGGCCGAGGCUUUGUA.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "275bc7a6-e066-4d9c-9348-3efa2c9fb407", "aliases:array": "kevin-white:ZNF766-CRISPR", "modified_site_by_target_id": "eGFP-ZNF766-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GAGUCCUUACAAACUGAGUU", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF766 gene. The sequence of the guide RNA was GAGUCCUUACAAACUGAGUU.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "c8066034-8ee3-49b8-8cc5-d29b233e81e9", "aliases:array": "michael-snyder:eGFP_ZNF157_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF157-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079540, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079540", "description": "This construct contains an eGFP N-terminal tag to ZNF157 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "087a63b6-5e3b-4592-befa-4ab5f386525f", "aliases:array": "michael-snyder:eGFP_ZNF664_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF664-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079714, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079714", "description": "This construct contains an eGFP N-terminal tag to ZNF664 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "8ff52868-ea9e-4cb0-b871-150bb1ced9c7", "aliases:array": "michael-snyder:eGFP_ZNF692_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF692-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00378734, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00378734", "description": "This construct contains an eGFP N-terminal tag to ZNF692 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "a0445f07-7d5f-4d36-acaf-c96e6564b018", "aliases:array": "michael-snyder:eGFP_ZNF770_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF770-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:14536, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=14536", "description": "This construct contains an eGFP N-terminal tag to ZNF770 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "0e197cd4-c164-481c-aa41-985ddce3060f", "aliases:array": "michael-snyder:eGFP_ZIM3_FRT_construct", "modified_site_by_target_id": "eGFP-ZIM3-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00373032, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00373032", "description": "This construct contains an eGFP N-terminal tag to ZIM3 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "c00ce191-687c-4d97-af76-e623b315d6eb", "aliases:array": "michael-snyder:eGFP_ZSCAN23_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN23-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079984, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079984", "description": "This construct contains an eGFP N-terminal tag to ZSCAN23 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "add54a4e-00c7-4d54-8b7f-386a307cb4ca", "aliases:array": "michael-snyder:eGFP_ZNF23_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF23-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:5242, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=5242", "description": "This construct contains an eGFP N-terminal tag to ZNF23 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "13e80494-8de8-417e-a1c1-5f8ca2083493", "aliases:array": "michael-snyder:eGFP_ZSCAN5A_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN5A-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:4058, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=4058", "description": "This construct contains an eGFP N-terminal tag to ZSCAN5A under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "a560c1b8-9cb9-4632-ba78-0f4ef6b852ae", "aliases:array": "michael-snyder:eGFP_ZNF558_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF558-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00080008, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00080008", "description": "This construct contains an eGFP N-terminal tag to ZNF558 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "3a007d7e-e5e0-4bbb-9e07-ad714944072d", "aliases:array": "michael-snyder:eGFP_ZNF792_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF792-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:52758, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=52758", "description": "This construct contains an eGFP N-terminal tag to ZNF792 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "07c617d7-5ff4-4b31-8734-35a9620b7793", "aliases:array": "michael-snyder:eGFP_ZSCAN1_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZSCAN1, synthesized by Life Technologies (using the sequence identified by ENST00000282326), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6afdbff0-adf2-4ca1-b923-1a70ad42b998", "aliases:array": "kevin-white:TFDP1", "modified_site_by_target_id": "eGFP-TFDP1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:RP11-711N1", "description": "This construct was made using the Human RP11 BAC library, derived from male whole blood, and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of TFDP1. The last 50 bases before the stop codon of TFDP1 are as follows: GGGAGGACGACGAGGAGGACGATGACTTCAACGAGAATGACGAGGACGAC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/890aff8e-f140-4f97-91cc-7cd179979586/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "2e298554-413b-4718-9a70-f25fb1d5fb5f", "aliases:array": "kevin-white:KLF10", "modified_site_by_target_id": "eGFP-KLF10-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-237N16", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of KLF10. The last 50 bases before the stop codon of KLF10 are as follows: TGAGCAAGCTAAATGACATTGCTCTACCTCCAACCCCTGCTCCCACACAG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "f7ab2cbc-25c4-45ac-b734-fa403532ee02", "aliases:array": "kevin-white:ZNF254", "modified_site_by_target_id": "eGFP-ZNF254-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-289I15", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF254. The last 50 bases before the stop codon of ZNF254 are as follows: GGATGTGCCAAGGGTGCCAGTCCAAGACTTCCGACGGGCAGTTTTCTCTA", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "9930727f-5e56-4a01-a181-249a277f0d43", "aliases:array": "robert-waterston:OP606-GFP", "modified_site_by_target_id": "eGFP-F52B5.7-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM061bB06, url:https://www.sourcebioscience.com/search?search=WRM061bB06", "description": "wgIs606 [F52B5.7::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "9b08dca3-0882-4763-a1a5-f2af3999925e", "aliases:array": "robert-waterston:OP631-GFP", "modified_site_by_target_id": "eGFP-ceh-48-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM068cH03, url:https://www.sourcebioscience.com/search?search=WRM068cH03", "description": "wgIs631 [CEH-48::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4315c156-009b-46fa-967b-5569e034bcae", "aliases:array": "robert-waterston:OP646-GFP", "modified_site_by_target_id": "eGFP-mel-28-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0613bG08, url:https://www.sourcebioscience.com/search?search=WRM0613bG08", "description": "wgIs646 [MEL-28::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "32c11549-a3db-49ea-adce-be72d2f467b0", "aliases:array": "kevin-white:ZNF148", "modified_site_by_target_id": "eGFP-ZNF148-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-285M22", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of ZNF148. The last 50 bases before the stop codon of ZNF148 are as follows: GAGCTGGGATGACATCTTCACCTGATGCCACAACTGGCCAGACTTTTGGC", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "614821a9-4ede-4c91-8225-c7f7f494b855", "aliases:array": "kevin-white:VEZF1-CRISPR", "modified_site_by_target_id": "eGFP-VEZF1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GUUUACCAAGGCGGUGAUGU", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the VEZF1 gene. The sequence of the guide RNA was GUUUACCAAGGCGGUGAUGU.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "0b2ece3a-77ed-4e16-8145-b8a42884566d", "aliases:array": "kevin-white:GABPA", "modified_site_by_target_id": "eGFP-GABPA-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-273L21", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of GABPA. The last 50 bases before the stop codon of GABPA are as follows: TCACAGCAGTAGCTCTGGCTACTGCTTCTCTGCAAACGGAAAAGGATAAT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "04a513e9-30b2-4c67-8f15-366e86318b47", "aliases:array": "kevin-white:FOSL1", "modified_site_by_target_id": "eGFP-FOSL1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-332A20", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of FOSL1. The last 50 bases before the stop codon of FOSL1 are as follows: GCGGAGACCCATCCTCTGACCCCCTTGGCTCTCCAACCCTCCTCGCTTTG", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "97fe4a51-362d-4b0f-b4aa-15764c136407", "aliases:array": "cgc:OP33-GFP", "modified_site_by_target_id": "eGFP-nhr-25-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs33 [nhr-25::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "e258687a-4695-40cb-adbf-2e173e91567d", "aliases:array": "modencode:OP239-GFP", "modified_site_by_target_id": "eGFP-nhr-10-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "8b832b93-76f3-4c17-a586-415f17471091", "aliases:array": "cgc:OP62-GFP", "modified_site_by_target_id": "eGFP-lin-11-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs427 [mbf-1::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "4e1378a6-10d9-4cb9-8100-42460af30ae6", "aliases:array": "cgc:OP179-GFP", "modified_site_by_target_id": "eGFP-snpc-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs179 [gei-11::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "d15281d1-cb56-480d-9075-21276de7e08e", "aliases:array": "cgc:OP418-GFP", "modified_site_by_target_id": "eGFP-dmd-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs418 [dmd-4::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "fde95ab6-9ae7-4052-a34a-a51746193c9c", "aliases:array": "michael-snyder:eGFP_OTX1_CRISPR_construct", "modified_site_by_target_id": "eGFP-OTX1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the OTX1 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "a1d14467-1c51-4df3-8009-ff61f3b6bd65", "aliases:array": "michael-snyder:eGFP_ZNF140_CRISPR_construct", "modified_site_by_target_id": "eGFP-ZNF140-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF140 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "6a09323c-6cf9-4a53-9077-13fdad0e9932", "aliases:array": "michael-snyder:eGFP_OVOL1_FRT_construct", "modified_site_by_target_id": "eGFP-OVOL1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10848, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10848", "description": "This construct contains an eGFP N-terminal tag to OVOL1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b89e5c95-df0a-4347-a606-4c440636b50d", "aliases:array": "michael-snyder:eGFP_ZEB1_FRT_construct", "modified_site_by_target_id": "eGFP-ZEB1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00347061, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00347061", "description": "This construct contains an eGFP N-terminal tag to ZEB1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "4c60e8b4-4ae2-4238-b296-3fcaa8314141", "aliases:array": "michael-snyder:eGFP_ZNF418_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF418-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:53566, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=53566", "description": "This construct contains an eGFP N-terminal tag to ZNF418 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6acf8194-a23f-43b4-8f95-b6292465190b", "aliases:array": "michael-snyder:eGFP_ZBTB11_CRISPR_construct", "modified_site_by_target_id": "eGFP-ZBTB11-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZBTB11 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "5408c3a1-32a8-4fcf-86eb-7b8e0359eeb5", "aliases:array": "michael-snyder:eGFP_MLX_CRISPR_construct", "modified_site_by_target_id": "eGFP-MLX-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the MLX gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "b5c6cd41-38fa-4e5f-9b98-4a711db7fd0b", "aliases:array": "michael-snyder:eGFP_ZNF331_CRISPR_construct", "modified_site_by_target_id": "eGFP-ZNF331-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF331 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "cb9fc3a7-a070-48f6-922d-3131870f6d38", "modified_site_by_target_id": "eGFP-CDT1-human", "introduced_tags:object:array": "location:C-terminal, name: DsRed", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:thermo-fisher, identifier:P36238, url:https://www.thermofisher.com/us/en/home/life-science/cell-analysis/cell-viability-and-regulation/cell-cycle/live-cell-imaging-of-cell-cycle-and-division.html#ord", "description": "Premo FUCCI Cell Cycle Sensor", "status": "released", "lab": "john-stamatoyannopoulos", "submitted_by": "/users/332d0e03-a907-4f53-8358-bb00118277c8/", "award": "U54HG007010"}, - {"uuid": "4387f206-6c2f-494c-9182-e5332fc96889", "aliases:array": "robert-waterston:OP673-GFP", "modified_site_by_target_id": "eGFP-ceh-24-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP;location:C-terminal, name:3xFLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0632aB09, url:https://www.sourcebioscience.com/search?search=WRM0632aB09", "description": "wgIs673 [CEH-24::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "e76be2c7-c0bb-4ba4-afe7-7817cf95f197", "aliases:array": "richard-myers:ZNF124-FLAG", "modified_site_by_target_id": "FLAG-ZNF124-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "1ccd4f46-7554-407c-aebf-4a202279a40e", "aliases:array": "michael-snyder:eGFP_RBAK_FRT_construct", "modified_site_by_target_id": "eGFP-RBAK-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00379104, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00379104", "description": "This construct contains an eGFP N-terminal tag to RBAK under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "378bb677-0d7f-42a5-a72e-ba674b427d8d", "aliases:array": "michael-snyder:eGFP_ZNF747_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF747-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00322956, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00322956", "description": "This construct contains an eGFP N-terminal tag to ZNF747 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "73293446-89ee-49b0-ad07-c6b5759fdb74", "aliases:array": "michael-snyder:eGFP_ZNF155_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF155-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:54512, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=54512", "description": "This construct contains an eGFP N-terminal tag to ZNF155 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "162cb220-4a88-4150-8135-412a9be27d2b", "aliases:array": "michael-snyder:eGFP_ZNF211_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF211-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:71544, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=71544", "description": "This construct contains an eGFP N-terminal tag to ZNF211 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "bb3275fc-d969-42c2-a0b3-5fd39fee8ad8", "aliases:array": "michael-snyder:eGFP_ZBTB20_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB20-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:8505, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=8505", "description": "This construct contains an eGFP N-terminal tag to ZBTB20 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "96c6c460-7f59-4b02-b384-24adde920e6e", "aliases:array": "michael-snyder:eGFP_ZNF274_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF274-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:5846, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=5846", "description": "This construct contains an eGFP N-terminal tag to ZNF274 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "e14e2ef6-73f2-4a8d-8ca8-f7a92a53ff3d", "aliases:array": "michael-snyder:eGFP_GLIS3_FRT_construct", "modified_site_by_target_id": "eGFP-GLIS3-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079929, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079929", "description": "This construct contains an eGFP N-terminal tag to GLIS3 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "15799496-909e-4ec5-a37b-6fb32614c672", "aliases:array": "michael-snyder:eGFP_KLF8_FRT_construct", "modified_site_by_target_id": "eGFP-KLF8-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079641, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079641", "description": "This construct contains an eGFP N-terminal tag to KLF8 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "8f73101e-e0e6-43d7-9cbf-e5f89c49b56b", "aliases:array": "michael-snyder:eGFP_PRDM4_FRT_construct", "modified_site_by_target_id": "eGFP-PRDM4-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10103, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10103", "description": "This construct contains an eGFP N-terminal tag to PRDM4 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "db4f5185-3497-46bf-bed8-1772e3ecad33", "aliases:array": "richard-myers:PBX2-FLAG", "modified_site_by_target_id": "FLAG-PBX2-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GTGAGGGGCAAGATCAGTTGG;GCCAACTGATCTTGCCCCTCA", "reagents:object:array": "source:addgene, identifier:72356, url:https://www.addgene.org/72356/; source:addgene, identifier:72357, url:https://www.addgene.org/72357/; source:addgene, identifier:72358, url:https://www.addgene.org/72358/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "87bbdd8e-5703-4dd4-85d0-cc3ed2213dc6", "aliases:array": "richard-myers:ZNF792-FLAG", "modified_site_by_target_id": "FLAG-ZNF792-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCAACACAGCTAGCATTCCTA;GCCAACACAGCTAGCATTCCT", "reagents:object:array": "source:addgene, identifier:86282, url:https://www.addgene.org/86282/; source:addgene, identifier:86339, url:https://www.addgene.org/86339/; source:addgene, identifier:86340, url:https://www.addgene.org/86340/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "26e9e64b-0f09-4bf8-a1a1-246b430a07f7", "aliases:array": "robert-waterston:OP566-GFP", "modified_site_by_target_id": "eGFP-hlh-15-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0630cF03, url:https://www.sourcebioscience.com/search?search=WRM0630cF03", "description": "wgIs566 [hlh-15::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c3e575b7-d537-4f02-83f1-3fc07ba1ffdb", "aliases:array": "richard-myers:KLF16-FLAG", "modified_site_by_target_id": "FLAG-KLF16-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "7be92e7e-b85b-4e13-91c6-8aa1bc91d316", "aliases:array": "richard-myers:ZBTB26-FLAG", "modified_site_by_target_id": "FLAG-ZBTB26-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "393b2995-22ab-4735-bb47-ebc48bb86546", "aliases:array": "richard-myers:ZKSCAN8-FLAG", "modified_site_by_target_id": "FLAG-ZKSCAN8-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "0ecf63b4-798e-4dc3-8415-935984d2bbfa", "aliases:array": "richard-myers:NCoA2-FLAG", "modified_site_by_target_id": "FLAG-NCoA2-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GGTCAGCTGAAGAAGCAAC", "reagents:object:array": "source:addgene, identifier:86283, url:https://www.addgene.org/86283/; source:addgene, identifier:86341, url:https://www.addgene.org/86341/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "70244e40-200a-4754-83a8-2ed4eb4e4eac", "aliases:array": "richard-myers:THRB-FLAG", "modified_site_by_target_id": "FLAG-THRB-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "2b942aaf-5aef-4188-8da6-35e6f3d27eeb", "aliases:array": "richard-myers:RARA-FLAG", "modified_site_by_target_id": "FLAG-RARA-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "59ab2fcf-91f0-4901-a95d-310de93c6933", "aliases:array": "richard-myers:KLF9-FLAG", "modified_site_by_target_id": "FLAG-KLF9-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCTTTGTGAGGTGCTGCCCG;GGCAGCACCTCACAAAGCGT", "reagents:object:array": "source:addgene, identifier:86286, url:https://www.addgene.org/86286/; source:addgene, identifier:86346, url:https://www.addgene.org/86346/; source:addgene, identifier:86347, url:https://www.addgene.org/86347/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "699ecbc2-c99b-4306-96ce-7bd7c47c48b9", "aliases:array": "kevin-white:E2F5-CRISPR", "modified_site_by_target_id": "eGFP-E2F5-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GAAUCUAAUAAUUUAGUAUC", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the E2F5 gene. The sequence of the guide RNA was GAAUCUAAUAAUUUAGUAUC.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "f61fc9f5-2751-44dd-bbc6-a8c323119ff2", "aliases:array": "kevin-white:ZBTB11-CRISPR", "modified_site_by_target_id": "eGFP-ZBTB11-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GAGGUAGCACAUAUUUCAGG", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZBTB11 gene. The sequence of the guide RNA was GAGGUAGCACAUAUUUCAGG.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "f010f492-3b71-4aff-920b-35d3ec076bac", "aliases:array": "kevin-white:KLF4", "modified_site_by_target_id": "eGFP-KLF4-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "stable transfection", "reagents:object:array": "source:bacpac, identifier:CH17-60F2", "description": "This construct was made using the CHORI-17: Hydatidiform Mole (Homo sapiens) BAC Library and contains a Localization and Affinity Purification (LAP) tag at the C-terminal of KLF4. The last 50 bases before the stop codon of KLF4 are as follows: GAGCATTTTCCAGGTCGGACCACCTCGCCTTACACATGAAGAGGCATTTT", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/;/documents/dcf15d5e-40aa-43bc-b81c-32c70c9afb01/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "3e175611-a035-4add-9b44-bd7c2134fbb0", "aliases:array": "michael-snyder:eGFP_ZIC2_FRT_construct", "modified_site_by_target_id": "eGFP-ZIC2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399098, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00399098", "description": "This construct contains an eGFP N-terminal tag to ZIC2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "48e6972b-87ad-46b4-92b5-952b530dbdf3", "aliases:array": "michael-snyder:eGFP_ZNF415_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF415-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:14041, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=14041", "description": "This construct contains an eGFP N-terminal tag to ZNF415 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "ece32a47-74ed-46d8-819f-a026d0699994", "aliases:array": "michael-snyder:eGFP_ZNF133_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF133-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:3666, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=3666", "description": "This construct contains an eGFP N-terminal tag to ZNF133 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "04425972-8b8b-41af-881e-0b8aa3bf7239", "aliases:array": "michael-snyder:eGFP_ZNF704_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF704-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:70646, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=70646", "description": "This construct contains an eGFP N-terminal tag to ZNF704 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "1791a005-5ca3-4a6e-82e2-25f7f099cdf5", "aliases:array": "michael-snyder:eGFP_YY2_FRT_construct", "modified_site_by_target_id": "eGFP-YY2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00342546, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00342546", "description": "This construct contains an eGFP N-terminal tag to YY2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "863e1722-b804-409a-b66e-149bd6d1c637", "aliases:array": "michael-snyder:eGFP_ZNF266_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF266-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:54403, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=54403", "description": "This construct contains an eGFP N-terminal tag to ZNF266 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "a2762ccc-8658-40e5-b9ae-ad843f494b01", "aliases:array": "michael-snyder:eGFP_ZNF670_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF670-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079745, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079745", "description": "This construct contains an eGFP N-terminal tag to ZNF670 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "0af67d91-325c-4939-a3a4-b46d1a46016e", "aliases:array": "michael-snyder:eGFP_ZNF680_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF680-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1555, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1555", "description": "This construct contains an eGFP N-terminal tag to ZNF680 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "8caa566e-b201-4f60-a446-4c6057c82e47", "aliases:array": "michael-snyder:eGFP_PRDM10_FRT_construct", "modified_site_by_target_id": "eGFP-PRDM10-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00340140, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00340140", "description": "This construct contains an eGFP N-terminal tag to PRDM10 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "2a9ef2cd-e2ef-4c9d-b3aa-d7feafa8dadb", "aliases:array": "michael-snyder:eGFP_ATF2_FRT_construct", "modified_site_by_target_id": "eGFP-ATF2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:54731, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=54731", "description": "This construct contains an eGFP N-terminal tag to ATF2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "dc8e6d83-448b-4d97-9e01-a6b3686a4977", "aliases:array": "michael-snyder:eGFP_GLIS2_FRT_construct", "modified_site_by_target_id": "eGFP-GLIS2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00348129, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00348129", "description": "This construct contains an eGFP N-terminal tag to GLIS2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "39e9101d-4816-47bd-a489-4cc7e1361677", "aliases:array": "michael-snyder:eGFP_GTF3A_FRT_construct", "modified_site_by_target_id": "eGFP-GTF3A-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to GTF3A, synthesized by Life Technologies (using the sequence identified by ENST00000381140), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "8b061e3f-c66e-445d-a9f2-9822c1c5b940", "aliases:array": "michael-snyder:eGFP_INSM1_FRT_construct", "modified_site_by_target_id": "eGFP-INSM1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to INSM1, synthesized by Life Technologies (using the sequence identified by ENST00000310227), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d72ea3dc-69b3-4b8a-95b5-fa59ee8afc79", "aliases:array": "michael-snyder:eGFP_KLF6_FRT_construct", "modified_site_by_target_id": "eGFP-KLF6-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:4274, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=4274", "description": "This construct contains an eGFP N-terminal tag to KLF6 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "c9dcda03-8cf0-453c-a003-f3f5f8709278", "aliases:array": "michael-snyder:eGFP_KLF17_FRT_construct", "modified_site_by_target_id": "eGFP-KLF17-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000372299, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?g=ENSG00000171872;r=1:44118850-44135140;t=ENST00000372299", "description": "This construct contains an eGFP N-terminal tag to KLF17, synthesized by Life Technologies (using the sequence identified by ENST00000372299), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "049f74c9-2cde-44a8-bb58-e7287d99eeb5", "aliases:array": "michael-snyder:eGFP_ZNF214_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF214-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:70583, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=70583", "description": "This construct contains an eGFP N-terminal tag to ZNF214 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "5b1a76c6-d151-4eed-b729-a45fd82d9415", "aliases:array": "michael-snyder:eGFP_ZNF276_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF276-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56203, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56203", "description": "This construct contains an eGFP N-terminal tag to ZNF276 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "bb8dc13e-ef54-43e2-ac98-84a3efdcb084", "aliases:array": "michael-snyder:eGFP_SP5_FRT_construct", "modified_site_by_target_id": "eGFP-SP5-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to SP5, synthesized by Life Technologies (using the sequence identified by ENST00000375281), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "97660e79-0dc7-4448-9840-5ddc6cbef450", "aliases:array": "michael-snyder:eGFP_YY1_FRT_construct", "modified_site_by_target_id": "eGFP-YY1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:jack-greenblatt, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "introduced_sequence": "ATGGCCTCGGGCGACACCCTCTACATCGCCACGGACGGCTCGGAGATGCCGGCCGAGATCGTGGAGCTGCACGAGATCGAGGTGGAGACCATCCCGGTGGAGACCATCGAGACCACAGTGGTGGGCGAGGAGGAGGAGGAGGACGACGACGACGAGGACGGCGGCGGTGGCGACCACGGCGGCGGGGGCGGCCACGGGCACGCCGGCCACCACCACCACCACCATCACCACCACCACCACCCGCCCATGATCGCTCTGCAGCCGCTGGTCACCGACGACCCGACCCAGGTGCACCACCACCAGGAGGTGATCCTGGTGCAGACGCGCGAGGAGGTGGTGGGCGGCGACGACTCGGACGGGCTGCGCGCCGAGGACGGCTTCGAGGATCAGATTCTCATCCCGGTGCCCGCGCCGGCCGGCGGCGACGACGACTACATTGAACAAACGCTGGTCACCGTGGCGGCGGCCGGCAAGAGCGGCGGCGGCGGCTCGTCGTCGTCGGGAGGCGGCCGCGTCAAGAAGGGCGGCGGCAAGAAGAGCGGCAAGAAGAGTTACCTCAGCGGCGGGGCCGGCGCGGCGGGCGGCGGCGGCGCCGACCCGGGCAACAAGAAGTGGGAGCAGAAGCAGGTGCAGATCAAGACCCTGGAGGGCGAGTTCTCGGTCACCATGTGGTCCTCAGATGAAAAAAAAGATATTGACCATGAGACAGTGGTTGAAGAACAGATCATTGGAGAGAACTCACCTCCTGATTATTCAGAATATATGACAGGAAAGAAACTTCCTCCTGGAGGAATACCTGGCATTGACCTCTCAGATCCCAAACAACTGGCAGAATTTGCTAGAATGAAGCCAAGAAAAATTAAAGAAGATGATGCTCCAAGAACAATAGCTTGCCCTCATAAAGGCTGCACAAAGATGTTCAGGGATAACTCGGCCATGAGAAAACATCTGCACACCCACGGTCCCAGAGTCCACGTCTGTGCAGAATGTGGCAAAGCTTTTGTTGAGAGTTCAAAACTAAAACGACACCAACTGGTTCATACTGGAGAGAAGCCCTTTCAGTGCACGTTCGAAGGCTGTGGGAAACGCTTTTCACTGGACTTCAATTTGCGCACACATGTGCGAATCCATACCGGAGACAGGCCCTATGTGTGCCCCTTCGATGGTTGTAATAAGAAGTTTGCTCAGTCAACTAACCTGAAATCTCACATCTTAACACATGCTAAGGCCAAAAACAACCAGTTG", "description": "This construct contains an eGFP N-terminal tag to YY1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "82fada32-6186-470c-80ae-ba6f91a936c8", "aliases:array": "michael-snyder:eGFP_ZBTB24_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB24-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:54115, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=54115", "description": "This construct contains an eGFP N-terminal tag to ZBTB24 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "c450f82b-f83b-46ee-8544-8910071c8a66", "aliases:array": "michael-snyder:eGFP_INSM2_FRT_construct", "modified_site_by_target_id": "eGFP-INSM2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000307169, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?g=ENSG00000168348;r=14:35534042-35537054;t=ENST00000307169", "description": "This construct contains an eGFP N-terminal tag to INSM2, synthesized by Life Technologies (using the sequence identified by ENST00000307169), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "7c278b00-a748-46d6-9d5f-61858924d057", "aliases:array": "michael-snyder:eGFP_ZBTB6_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB6-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1984, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1984", "description": "This construct contains an eGFP N-terminal tag to ZBTB6 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "98ac8222-8037-4a49-a797-f9bb037a1543", "aliases:array": "michael-snyder:eGFP_ZNF32_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF32-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:12749, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=12749", "description": "This construct contains an eGFP N-terminal tag to ZNF32 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6ea62454-1735-45c6-9731-7c806fe7ca7f", "aliases:array": "michael-snyder:eGFP_ZNF462_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF462-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:11181, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=11181", "description": "This construct contains an eGFP N-terminal tag to ZNF462 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "058049c3-6751-4c2e-ac83-fa3ab0a80980", "aliases:array": "michael-snyder:eGFP_ZNF223_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF223-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1178, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1178", "description": "This construct contains an eGFP N-terminal tag to ZNF223 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "71f7759b-a772-4b10-927d-5c2e83a5d71e", "aliases:array": "michael-snyder:eGFP_WT1_FRT_construct", "modified_site_by_target_id": "eGFP-WT1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000332351, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?g=ENSG00000184937;r=11:32387775-32435630;t=ENST00000332351", "description": "This construct contains an eGFP N-terminal tag to WT1, synthesized by Life Technologies (using the sequence identified by ENST00000332351), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6f2e6ebe-eb50-4881-860e-2f4ef86ac137", "aliases:array": "michael-snyder:eGFP_ZNF256_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF256-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:7455, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=7455", "description": "This construct contains an eGFP N-terminal tag to ZNF256 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "886eee7a-82cb-4e03-a099-d60df8d62a83", "aliases:array": "richard-myers:ZBED5-FLAG", "modified_site_by_target_id": "FLAG-ZBED5-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "395c051f-d246-4c7c-92b8-1e98bda8ada6", "aliases:array": "richard-myers:HLF-FLAG", "modified_site_by_target_id": "FLAG-HLF-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCAAAAATGCCATCCTACAG;GGATGGCATTTTTGCAGGC", "reagents:object:array": "source:addgene, identifier:86262, url:https://www.addgene.org/86262/; source:addgene, identifier:86301, url:https://www.addgene.org/86301/; source:addgene, identifier:86302, url:https://www.addgene.org/86302/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "8e541f26-f405-4a71-82b0-887b93ca6bbb", "aliases:array": "richard-myers:MLX-FLAG", "modified_site_by_target_id": "FLAG-MLX-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GAAAAACCAGCTTTACTGAC;GTTCTCCAGGTTTCCAAGAAC", "reagents:object:array": "source:addgene, identifier:86277, url:https://www.addgene.org/86277/; source:addgene, identifier:86329, url:https://www.addgene.org/86329/; source:addgene, identifier:86330, url:https://www.addgene.org/86330/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "86735c94-8faf-46fb-8241-38ccc38d05eb", "aliases:array": "richard-myers:DMAP1-FLAG", "modified_site_by_target_id": "FLAG-DMAP1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GAAGCCGTGAGAGGCCCCA;GCCGTGAGAGGCCCCACG", "reagents:object:array": "source:addgene, identifier:86354, url:https://www.addgene.org/86354/; source:addgene, identifier:86355, url:https://www.addgene.org/86355/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "c0e2aaf6-ba3e-43d9-ba83-f22bc8843635", "aliases:array": "richard-myers:IKZF5-FLAG", "modified_site_by_target_id": "FLAG-IKZF5-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "9d5d1d7a-7306-4e57-a7c2-a5034ebf23e6", "aliases:array": "richard-myers:KAT8-FLAG", "modified_site_by_target_id": "FLAG-KAT8-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "e4a8d411-5f27-4237-8ee8-de9eeb9010cd", "aliases:array": "kevin-white:AV007_eGFP-CG18764", "modified_site_by_target_id": "eGFP-CG18764-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-133G09, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AATTTCACACTGCAAAAGCGAAAACCATTGGTGCGGAGGTACTACAATTA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "43b3fb97-bb04-4783-8079-729c61a0e250", "aliases:array": "kevin-white:AV007_eGFP-CG30403", "modified_site_by_target_id": "eGFP-CG30403-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-178J17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GTAAGATTAACGGTCATCCTGGCGATATGGACATATTTCTAACTAAAAAC", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "c4881265-4af7-4a71-8a4e-ad6ba0e355f3", "aliases:array": "kevin-white:AV007_eGFP-Hsf", "modified_site_by_target_id": "eGFP-Hsf-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-151N08, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: GCCAGATGCAGACGCAAAGTTCGGTTTTAAATACGCCACGTCACGAGTTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "50976949-b1ae-4b38-a663-57be5afb38a8", "aliases:array": "kevin-white:AV007_eGFP-fu2", "modified_site_by_target_id": "eGFP-fu2-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-02F01, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGATTCCCACAATGAATCTGGGCTTCTACAGCGAGACTCGTCCCGAGGAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3e92589a-7673-4db7-9ccd-955e5251dcb9", "aliases:array": "michael-snyder:eGFP_ZNF658_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF658-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:15041, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=15041", "description": "This construct contains an eGFP N-terminal tag to ZNF658 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "4bc6d54a-5f74-4447-8f7b-1cc84e36a578", "aliases:array": "kevin-white:CUX1-CRISPR", "modified_site_by_target_id": "eGFP-CUX1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "CCUCAGAACUCCCAUUCGAU", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the CUX1 gene. The sequence of the guide RNA was CCUCAGAACUCCCAUUCGAU.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "d05ed254-2fcd-4db7-98a9-636a03554715", "aliases:array": "kevin-white:ZFX-CRISPR", "modified_site_by_target_id": "eGFP-ZFX-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "UGUAGAAGUAUUGUUAGGGC", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZFX gene. The sequence of the guide RNA was UGUAGAAGUAUUGUUAGGGC.", "documents:array": "/documents/899377cb-45dc-45d8-ac26-9807d388209b/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U54HG006996"}, - {"uuid": "6abc4dff-a474-42dc-ab50-1c3531abd2be", "aliases:array": "michael-snyder:eGFP_ZNF830_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF830-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:7196, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=7196", "description": "This construct contains an eGFP N-terminal tag to ZNF830 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "7593377d-65bc-465c-9b9b-30dfbbe74659", "aliases:array": "michael-snyder:eGFP_ZSCAN30_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN30-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000420878", "description": "This construct contains an eGFP N-terminal tag to ZSCAN30 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "923ededc-d501-4ad8-ad1f-1fa7f6cb59be", "aliases:array": "michael-snyder:eGFP_ZNF667_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF667-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:72110, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=72110", "description": "This construct contains an eGFP N-terminal tag to ZNF667 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "e13943f5-23e1-4d88-87a8-7efdaa00e292", "aliases:array": "michael-snyder:eGFP_ZNF114_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF114-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56633, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56633", "description": "This construct contains an eGFP N-terminal tag to ZNF114 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/742bd56b-e511-411c-9410-4040c5776597/", "award": "U54HG006996"}, - {"uuid": "c9da1928-ec80-44e6-9c90-267d917c446e", "aliases:array": "valerie-reinke:YL468-GFP", "modified_site_by_target_id": "eGFP-lin-35-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:mex-5-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "This construct contains C-terminal GFP and FLAG tags to LIN-35 under the control of a germ-line specific promoter from MEX-5.", "status": "released", "lab": "valerie-reinke", "submitted_by": "/users/4c23ec32-c7c8-4ac0-affb-04befcc881d4/", "award": "U01HG004267"}, - {"uuid": "18e9f0c9-8a49-4d73-b3ca-b85d9c501114", "aliases:array": "modencode:XE1464-GFP", "modified_site_by_target_id": "eGFP-daf-16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "0ac7eaab-305a-4084-b808-d65d30fe5c75", "aliases:array": "cgc:OP367-GFP", "modified_site_by_target_id": "eGFP-lsy-2-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs367 [lsy-2::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "c7c50aaf-8fd6-4380-8deb-55f93e6c1c71", "aliases:array": "michael-snyder:eGFP_ZNF449_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF449-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10819, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10819", "description": "This construct contains an eGFP N-terminal tag to ZNF449 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "3baa57b0-249c-401b-b16b-77da835e5aae", "aliases:array": "michael-snyder:eGFP_ZNF239_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF239-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079755, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079755", "description": "This construct contains an eGFP N-terminal tag to ZNF239 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "53aea4df-b5c8-45ea-8333-61564a315858", "aliases:array": "michael-snyder:eGFP_ZNF524_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF524-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:7694, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=7694", "description": "This construct contains an eGFP N-terminal tag to ZNF524 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "0d5ff31f-ca44-4670-823c-13b262f9f3dd", "aliases:array": "michael-snyder:eGFP_ZNF546_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF546-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10470, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10470", "description": "This construct contains an eGFP N-terminal tag to ZNF546 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "a9de51c1-cd74-47aa-8610-04222fbd385d", "aliases:array": "michael-snyder:eGFP_ZNF639_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF639-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00080049, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00080049", "description": "This construct contains an eGFP N-terminal tag to ZNF639 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "e0bb48ff-284f-4ec5-bb0b-74620eb4ad2a", "aliases:array": "michael-snyder:eGFP_ZNF594_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF594-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF594, synthesized by Life Technologies (using the sequence identified by ENST00000399604), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "70bb9982-ba34-4a84-b16c-f35b1dc60b7e", "aliases:array": "michael-snyder:eGFP_ZNF707_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF707-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:234, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=234", "description": "This construct contains an eGFP N-terminal tag to ZNF707 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "145719f4-f0e4-4d6b-bfd1-49a36ebdae55", "aliases:array": "michael-snyder:eGFP_ZNF837_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF837-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:55254, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=55254", "description": "This construct contains an eGFP N-terminal tag to ZNF837 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "87e6d7b5-87d7-40f8-8d36-e4da69279f29", "aliases:array": "michael-snyder:eGFP_ZIC3_FRT_construct", "modified_site_by_target_id": "eGFP-ZIC3-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00400101, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00400101", "description": "This construct contains an eGFP N-terminal tag to ZIC3 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "31b578c6-1e77-42f9-93de-d72708e84ff7", "aliases:array": "michael-snyder:eGFP_ZNF10_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF10-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1363, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1363", "description": "This construct contains an eGFP N-terminal tag to ZNF10 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "4dd2ac16-5a4f-4510-a5e9-73e58787d23e", "aliases:array": "michael-snyder:eGFP_ZBTB38_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB38-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:5338, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=5338", "description": "This construct contains an eGFP N-terminal tag to ZBTB38 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "f3013590-fc32-47e0-95cd-cb9807010fd8", "aliases:array": "michael-snyder:eGFP_ZNF296_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF296-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:6279, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=6279", "description": "This construct contains an eGFP N-terminal tag to ZNF296 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "022ca8f1-e996-4626-94ec-7b98a080fad9", "aliases:array": "michael-snyder:eGFP_ZNF302_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF302-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1339, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1339", "description": "This construct contains an eGFP N-terminal tag to ZNF302 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "5e0b17c8-a51a-48c3-85af-069997ae9f59", "aliases:array": "michael-snyder:eGFP_ZNF454_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF454-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:jack-greenblatt, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "introduced_sequence": "ATGGCTGTCAGCCACCTGCCAACCATGGTCCAGGAATCGGTGACCTTCAAGGATGTGGCTATACTGTTCACCCAGGAAGAGTGGGGGCAGCTGAGCCCCGCCCAGAGGGCCCTGTACAGGGACGTGATGCTGGAGAACTACAGCAACCTGGTCTCACTGGGACTCTTAGGACCCAAACCAGATACGTTTTCCCAGCTAGAAAAAAGGGAAGTGTGGATGCCAGAGGACACCCCTGGAGGCTTCTGTCTTGACTGGATGACTATGCCTGCCAGTAAGAAATCTACTGTCAAGGCAGAGATTCCTGAAGAAGAATTGGATCAATGGACAATAAAGGAAAGATTCAGTAGCAGTAGTCACTGGAAGTGTGCTAGCCTGCTGGAGTGGCAATGTGGAGGCCAGGAGATCAGTTTGCAGCGAGTGGTACTCACTCACCCCAACACCCCATCACAGGAATGTGATGAATCCGGGAGCACTATGAGCTCATCTCTTCACAGTGCTCAAAGTCAGGGATTTCAACCTAGCAAAAATGCCTTTGAGTGTAGTGAGTGTGGAAAAGTCTTCTCTAAGAGTTCAACTCTTAATAAACATCAGAAAATTCATAATGAAAAAAATGCAAATCAGAAAATTCATATTAAGGAGAAAAGATATGAATGTAGAGAATGTGGGAAAGCCTTTCACCAGAGTACGCACCTTATCCATCACCAAAGAATTCACACTGGCGAGAAACCCTATGAATGTAAGGAATGTGGCAAGGCCTTCTCAGTGAGCTCCTCACTTACGTACCATCAGAAAATTCATACTGGAGAGAAGCCTTTTGAATGCAACTTATGTGGAAAAGCTTTTATCCGAAATATACACCTTGCCCATCATCATAGAATACATACTGGAGAGAAACCTTTTAAATGTAACATTTGTGAAAAAGCCTTTGTGTGCAGGGCACACCTTACCAAACACCAGAATATCCACAGTGGAGAGAAACCCTATAAATGCAATGAATGTGGAAAAGCCTTTAATCAGAGTACAAGTTTCCTTCAGCATCAGAGAATTCACACTGGAGAGAAACCCTTTGAATGTAATGAATGTGGGAAGGCCTTCAGGGTGAACTCTTCCCTTACTGAACATCAGAGAATTCATACTGGAGAGAAACCTTATAAATGTAATGAATGTGGGAAAGCTTTCAGGGATAATTCATCCTTTGCACGACATCGGAAAATTCACACTGGAGAGAAACCTTACAGATGTGGCTTGTGTGAGAAAGCCTTTCGGGACCAATCAGCACTAGCCCAACATCAGAGAATTCATACTGGGGAAAAACCTTATACATGTAACATATGTGAAAAAGCCTTCAGTGACCATTCAGCCCTTACCCAACATAAGAGAATTCATACTAGGGAAAAACCTTACAAATGTAAAATCTGTGAGAAAGCCTTTATCCGAAGCACTCACCTGACTCAACATCAGAGGATTCACACAGGAGAGAAACCCTATAAATGTAATAAATGTGGGAAAGCTTTTAACCAGACTGCAAACCTCATTCAGCATCAGAGACATCATATTGGAGAGAAGTGA", "description": "This construct contains an eGFP N-terminal tag to ZNF454 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "289ede66-faac-40a0-b4f5-fa439ecc889f", "aliases:array": "michael-snyder:eGFP_ZNF580_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF580-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00382751, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00382751", "description": "This construct contains an eGFP N-terminal tag to ZNF580 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b186d8b2-1677-44d2-9f44-e09896a8939e", "aliases:array": "michael-snyder:eGFP_ZNF610_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF610-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10287, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10287", "description": "This construct contains an eGFP N-terminal tag to ZNF610 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "7815313d-09c5-416d-a694-2b73f592b692", "aliases:array": "michael-snyder:eGFP_ZNF488_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF488-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:jack-greenblatt, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF488 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "574470ea-c5d5-402d-87a5-f1839880e95e", "aliases:array": "michael-snyder:eGFP_ZNF641_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF641-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1176, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1176", "description": "This construct contains an eGFP N-terminal tag to ZNF641 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "ebb3a9c9-d555-422e-a582-d1ccdd78f688", "aliases:array": "michael-snyder:eGFP_ZNF254_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF254-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:56550, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=56550", "description": "This construct contains an eGFP N-terminal tag to ZNF254 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "dc540781-64e7-4754-831d-f49212a5b6ab", "aliases:array": "michael-snyder:eGFP_ZNF597_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF597-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:9330, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=9330", "description": "This construct contains an eGFP N-terminal tag to ZNF597 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "60fc477c-3d59-4960-8b95-3938af600f33", "aliases:array": "kevin-white:AV007_eGFP-CG10654", "modified_site_by_target_id": "eGFP-CG10654-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-168D21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: TGGAGCTCAACGCTCACGGGAGGAAACACAAAGCGATGGATGTAGTTCAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "released", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "3ac56a61-7f74-485c-af6d-5cdf36a0c4ad", "aliases:array": "robert-waterston:YL517-GFP", "modified_site_by_target_id": "eGFP-rpc-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "771dc454-ecd6-402e-b8f5-8e800179d9c1", "aliases:array": "robert-waterston:YL487-GFP", "modified_site_by_target_id": "eGFP-snpc-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062cF05, url:https://www.sourcebioscience.com/search?search=WRM062cF05", "description": "snpc-4(tm4568) I; unc-119(ed3) III; wgIs179 [snpc-4:TY1 EGFP 3XFLAG; unc-119]. Strain generated by crossing OP179 into snpc-4(tm4568) mutants.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "79b6eecd-7d46-4c8c-be0c-1207ecf6288e", "aliases:array": "robert-waterston:YL479-GFP", "modified_site_by_target_id": "eGFP-efl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab, url:http://www.ncbi.nlm.nih.gov/pubmed/23347407", "description": "unc-119(ed3) III; vrIs100 [pPIE-1::EFL-1:GFP:FLAG::PUF-5 3UTR, unc-119 (+)]). Strain generated by bombardment into unc-119(ed3) mutants.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "d8b640ab-6d9c-4dad-940b-96df37aaafc7", "aliases:array": "robert-waterston:YL576-GFP", "modified_site_by_target_id": "eGFP-him-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "unc-119(ed3)III; vrIs130[pHIM-1::GFP:FLAG::HIM-1::HIM-1 3UTR, unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "43fe7812-ebd9-4d19-9f47-0c377e9699ff", "aliases:array": "robert-waterston:YL485-GFP", "modified_site_by_target_id": "eGFP-snpc-1.3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:mex-5-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "unc-119(ed3) III; vrIs103 [pMEX-5::F08F3.9:GFP FLAG::F08F3.9 3UTR, unc-119(+)]. Strain generated by bombardment into unc-119(ed3) mutants.", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5afe5f22-3213-4317-a832-c3d863476d51", "aliases:array": "robert-waterston:YL497-GFP", "modified_site_by_target_id": "eGFP-snpc-3.4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:mex-5-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "unc-119(ed3) III; vrIs107 [pMEX-5::T02C12.2:GFP FLAG::T02C12.2 3UTR, unc-119(+)]. Strain generated by bombardment into unc-119(ed3) mutants.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "4b916223-200f-41a2-a7b3-446cac2e47d8", "aliases:array": "robert-waterston:YL482-GFP", "modified_site_by_target_id": "eGFP-snpc-1.1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP, promoter_used:mex-5-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "unc-119(ed3) III; vrIs101 [pMEX-5::C06A8.2:GFP FLAG::C06A8.2 3UTR, unc-119(+)]. Strain generated by bombardment into unc-119(ed3) mutants.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "7d18a6c3-d958-42d8-b411-5a31fe95d501", "aliases:array": "kevin-white:AV007_eGFP-ac", "modified_site_by_target_id": "eGFP-ac-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH321-93A21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CTGAAGATGAGGACATCCTCGACTATATATCACTCTGGCAGGACGACCTG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "2d3b53ab-1bc5-4916-871b-76b076cffbf9", "aliases:array": "kevin-white:AV007_eGFP-CG6854", "modified_site_by_target_id": "eGFP-CG6854-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-66P13, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AAAAGCTCATCTTCAAGGAACTCTACAAAGAAGATCTTGAGGAGTCCAAG", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "db7b0c1e-ebe1-4821-84c7-cb1805f9a432", "aliases:array": "cgc:YL448-GFP", "modified_site_by_target_id": "eGFP-dpl-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "vrIs83 [ges-1p::dpl-1::GFP::FLAG::dpl-1 3UTR + unc-119(+)].", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "3d6f1025-0faf-4e27-8702-4d10c11a9bea", "aliases:array": "cgc:OP218-GFP", "modified_site_by_target_id": "eGFP-attf-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:robert-waterston, identifier:please-contact-lab", "description": "wgIs218 [R02D3.7::TY1::EGFP::3xFLAG + unc-119(+)]. TY1::EGFP::3xFLAG tag inserted in frame at C-terminus of coding sequence by recombineering.", "status": "in progress", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U01HG004267"}, - {"uuid": "b21c8ea2-0eaa-4026-b3fa-06d7323f69fc", "aliases:array": "michael-snyder:eGFP_NFXL1_CRISPR_construct", "modified_site_by_target_id": "eGFP-NFXL1-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the NFXL1 gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "a52410c2-6187-4769-a068-1c309bfa050e", "aliases:array": "michael-snyder:eGFP_ZNF354C_CRISPR_construct", "modified_site_by_target_id": "eGFP-ZNF354C-human", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:kevin-white, identifier:please-contact-lab", "description": "CRISPR was used to insert a LAP tag downstream of the ZNF354C gene.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/51d0b8cb-6bb4-46a7-a167-8db20f23e562/", "award": "UM1HG009442"}, - {"uuid": "2672ef11-9cc4-4495-a64f-c62f14d4cca2", "modified_site_by_target_id": "FLAG-ZNF48-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/ca6e2de3-a6bd-4fce-8b6d-52ef41e7c0c5/", "award": "U54HG006998"}, - {"uuid": "2e030106-61b6-438f-8a48-13bb8a489093", "aliases:array": "michael-snyder:eGFP_ZFP2_FRT_construct", "modified_site_by_target_id": "eGFP-ZFP2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:55126, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=55126", "description": "This construct contains an eGFP N-terminal tag to ZFP2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "908cee0e-eff5-4f44-b948-558e408b67e7", "aliases:array": "michael-snyder:eGFP_ZNF143_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF143-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00334444, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00334444", "description": "This construct contains an eGFP N-terminal tag to ZNF143 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "7e173bb8-1f52-4022-b22f-15a1561881ba", "aliases:array": "michael-snyder:eGFP_ZNF165_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF165-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:1549, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=1549", "description": "This construct contains an eGFP N-terminal tag to ZNF165 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "a9c75630-38a1-4133-b3ff-feec5854b682", "aliases:array": "michael-snyder:eGFP_ZNF263_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF263-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:4846, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=4846", "description": "This construct contains an eGFP N-terminal tag to ZNF263 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "31314396-953d-4e3f-a156-4c914f57b88b", "aliases:array": "michael-snyder:eGFP_ZNF577_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF577-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:3868, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=3868", "description": "This construct contains an eGFP N-terminal tag to ZNF577 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "18dd6428-05a7-4315-8601-3a0c054e9616", "aliases:array": "michael-snyder:eGFP_ZNF426_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF426-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:3759, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=3759", "description": "This construct contains an eGFP N-terminal tag to ZNF426 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "2dbeea58-1c2a-44b7-82cf-a3a970249516", "aliases:array": "michael-snyder:eGFP_ZNF132_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF132-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:53066, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=53066", "description": "This construct contains an eGFP N-terminal tag to ZNF132 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b9294150-8f2f-4c63-b6f4-b8aa37234162", "aliases:array": "michael-snyder:eGFP_ZNF341_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF341-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:53259, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=53259", "description": "This construct contains an eGFP N-terminal tag to ZNF341 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "f939c108-c32d-40ff-97f3-a7b659f3f20a", "aliases:array": "michael-snyder:eGFP_ZNF529_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF529-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:10770, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=10770", "description": "This construct contains an eGFP N-terminal tag to ZNF529 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "1a27ebbf-b05f-4d4d-a465-1ccea1ebf51f", "aliases:array": "michael-snyder:eGFP_ZSCAN16_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN16-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:4224, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=4224", "description": "This construct contains an eGFP N-terminal tag to ZSCAN16 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "44b437dc-0306-461b-88a6-65288badd7e5", "aliases:array": "michael-snyder:eGFP_MZF1_FRT_construct", "modified_site_by_target_id": "eGFP-MZF1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:4979, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=4979", "description": "This construct contains an eGFP N-terminal tag to MZF1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "27c6e28f-e3d8-4cdd-9e69-9700e7c2df65", "aliases:array": "michael-snyder:eGFP_SP7_FRT_construct", "modified_site_by_target_id": "eGFP-SP7-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079737, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079737", "description": "This construct contains an eGFP N-terminal tag to SP7 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "0d87ec4d-244a-4ede-aa3c-b77c58f95f4c", "aliases:array": "michael-snyder:eGFP_KLF14_FRT_construct", "modified_site_by_target_id": "eGFP-KLF14-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00295198, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00295198", "description": "This construct contains an eGFP N-terminal tag to KLF14 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "88029291-9599-4a9e-827a-1f46e128afae", "aliases:array": "michael-snyder:eGFP_PRDM16_FRT_construct", "modified_site_by_target_id": "eGFP-PRDM16-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00295556, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00295556", "description": "This construct contains an eGFP N-terminal tag to PRDM16 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "d934009e-5205-4bda-a9fc-977be0e08b2d", "aliases:array": "michael-snyder:eGFP_ZBTB1_FRT_construct", "modified_site_by_target_id": "eGFP-ZBTB1-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079584, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079584", "description": "This construct contains an eGFP N-terminal tag to ZBTB1 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "5c95bf18-e6ee-41cd-9f8c-33a7a0bcc7b5", "aliases:array": "michael-snyder:eGFP_ZNF264_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF264-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00377137, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00377137", "description": "This construct contains an eGFP N-terminal tag to ZNF264 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "2910d508-9e77-40fc-9cb0-a7f4d8f283ed", "aliases:array": "michael-snyder:eGFP_ZNF623_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF623-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079546, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079546", "description": "This construct contains an eGFP N-terminal tag to ZNF623 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "6ecb3dab-ffaf-4bc6-b781-bebdd1a7ef61", "aliases:array": "michael-snyder:eGFP_ZSCAN2_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN2-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00342109, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00342109", "description": "This construct contains an eGFP N-terminal tag to ZSCAN2 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "9b05a2a1-001b-49e5-b2a9-bc7a35b42668", "aliases:array": "michael-snyder:eGFP_ZNF493_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF493-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00295155, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00295155", "description": "This construct contains an eGFP N-terminal tag to ZNF493 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "095e5154-aa17-4ae5-b29e-1c30b1a47214", "aliases:array": "michael-snyder:eGFP_ZFP3_FRT_construct", "modified_site_by_target_id": "eGFP-ZFP3-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:53255, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=53255", "description": "This construct contains an eGFP N-terminal tag to ZFP3 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "b93becd0-53d3-41ca-9fc7-3bc63bc8c72c", "aliases:array": "kevin-white:AV007_eGFP-Clk", "modified_site_by_target_id": "eGFP-Clk-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-164C21, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: AATCACAGAATCTATTCAACTCGCCACACACAGCCCCAGGCAGTAGTCAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "385deca7-a314-49c8-8e61-cc3ab2ee5417", "aliases:array": "kevin-white:AV007_eGFP-REPTOR", "modified_site_by_target_id": "eGFP-su(Hw)-dmelanogaster", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:bacpac, identifier:CH322-40A17, url:https://bacpacresources.org/cloneInfoSearch.php", "description": "This construct was made using the P[acman] Drosophila Melanogaster Library and contains a GFP (AV007) tag at the C-terminal of the protein of interest. The 50 bases preceding the tag are as follows: CAACCAACAATGACCAGTTACTTCAGGAACTCGGAATCCTCAAACAAGAA", "documents:array": "/documents/c0a10893-9488-44e7-8c90-350722df29fd/;/documents/08894bdc-e1f8-473c-a394-9c39ac020014/", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5b207abd-357c-4f49-bd83-465ca3acf7b1", "aliases:array": "robert-waterston:OP443-GFP", "modified_site_by_target_id": "eGFP-eyg-1-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM062dB12, url:https://www.sourcebioscience.com/search?search=WRM062dB12", "description": "wgIs443 [eyg-1::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "5a331a15-70f7-4028-9baa-3a81f2c05f62", "aliases:array": "richard-myers:SLC30A9-FLAG", "modified_site_by_target_id": "FLAG-SLC30A9-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "93a428db-dd9c-4b08-ae75-2b55da3cbf48", "aliases:array": "richard-myers:TGIF2-FLAG", "modified_site_by_target_id": "FLAG-TGIF2-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GTCTCTGAAAATCCCCAGT;GTAGGCATCTGCCAAGAA", "reagents:object:array": "source:addgene, identifier:72373, url:https://www.addgene.org/72373/; source:addgene, identifier:72374, url:https://www.addgene.org/72374/; source:addgene, identifier:72375, url:https://www.addgene.org/72375/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "83bc63a9-cad6-43e8-bc6c-d41b4d86b779", "aliases:array": "richard-myers:PREB-FLAG", "modified_site_by_target_id": "FLAG-PREB-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "in progress", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "38d1eaec-d7d9-4e47-a2f1-b972c22ee04e", "aliases:array": "richard-myers:TCF25-FLAG", "modified_site_by_target_id": "FLAG-TCF25-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "8dd2f3b0-a49a-4079-a350-4c2b26fa4b0f", "aliases:array": "richard-myers:GATAD1-FLAG", "modified_site_by_target_id": "FLAG-GATAD1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "reagents:object:array": "source:addgene, identifier:placeholder_id", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "f9e92a0a-df37-49fa-97a8-5db6cea92fc2", "aliases:array": "richard-myers:KLF11-FLAG", "modified_site_by_target_id": "FLAG-KLF11-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GCTAATGGACCTTTCAGGCAG;GCTCTGCCTGAAAGGTCCATT", "reagents:object:array": "source:addgene, identifier:86269, url:https://www.addgene.org/86269/; source:addgene, identifier:86314, url:https://www.addgene.org/86314/; source:addgene, identifier:86315, url:https://www.addgene.org/86315/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "4d7b8077-5efc-4e23-89f1-63262908c56a", "aliases:array": "richard-myers:ATF1-FLAG", "modified_site_by_target_id": "FLAG-ATF1-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "TAGGAATCAAACACTTTTATtgg", "reagents:object:array": "source:addgene, identifier:64689, url:https://www.addgene.org/64689/; source:addgene, identifier:64690, url:https://www.addgene.org/64690/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "f51c70d7-a1b0-4a25-b568-e1c062a791f2", "aliases:array": "richard-myers:ZNF3-FLAG", "modified_site_by_target_id": "FLAG-ZNF3-human", "introduced_tags:object:array": "location:C-terminal, name: 3xFLAG", "category": "insertion", "purpose": "tagging", "method": "CRISPR", "guide_rna_sequences:array": "GGGTGTGTGGCTCTTTCACG;GTGAGGAAAATGGGTGTG", "reagents:object:array": "source:addgene, identifier:72362, url:https://www.addgene.org/72362/; source:addgene, identifier:72363, url:https://www.addgene.org/72363/; source:addgene, identifier:72364, url:https://www.addgene.org/72364/", "description": "The CETCh-seq method (Savic et al., 2015) was used to edit the genome of a pool of cells, inserting a 3xFLAG epitope at the 3 end of the target gene. The protein contains a C-terminal 3xFLAG tag.", "documents:array": "/documents/25aed8a4-a63c-452d-9063-9896dfa17908/", "status": "released", "lab": "richard-myers", "submitted_by": "/users/9851ccbc-2df9-4529-a4f3-90edee981fc0/", "award": "U54HG006998"}, - {"uuid": "faaed82d-993e-4708-b82a-71cbf86c5146", "aliases:array": "robert-waterston:OP315-GFP", "modified_site_by_target_id": "eGFP-ceh-14-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0617cA12, url:https://www.sourcebioscience.com/search?search=WRM0617cA12", "description": "wgIs315(ceh-14::TY1 EGFP 3xFLAG(P000006_D11); unc-119(+));unc-119(ed3)", "documents:array": "/documents/04845b38-6a47-4be7-9c4a-d23e1d6a0aca/;/documents/ed97be5a-42bd-4d91-b18d-84753e918185/", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cdfcb869-a4ea-4a3e-aa63-190db343948e", "aliases:array": "michael-snyder:eGFP_ZNF408_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF408-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF408, synthesized by Life Technologies (using the sequence identified by ENST00000311764), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "db286143-8d9b-4624-b75d-50871b7f22e1", "aliases:array": "michael-snyder:eGFP_ZNF629_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF629-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZNF629 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "4a0adcbf-f4a6-4a9f-9548-dbe61fd1b181", "aliases:array": "michael-snyder:eGFP_ZKSCAN4_FRT_construct", "modified_site_by_target_id": "eGFP-ZKSCAN4-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:V601020, url:https://www.thermofisher.com/order/catalog/product/V601020", "description": "This construct contains an eGFP N-terminal tag to ZKSCAN4 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "f297308a-7499-48d9-892f-ab356c35d9b4", "aliases:array": "michael-snyder:eGFP_ZSCAN20_FRT_construct", "modified_site_by_target_id": "eGFP-ZSCAN20-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:8817, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=8817", "description": "This construct contains an eGFP N-terminal tag to ZSCAN20 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "64a0cec2-e024-47e9-9932-f935a5a17e21", "aliases:array": "michael-snyder:eGFP_ZNF292_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF292-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00399184, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00399184", "description": "This construct contains an eGFP N-terminal tag to ZNF292 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "34742822-397c-438e-a612-abb1b841df65", "aliases:array": "michael-snyder:eGFP_ZNF30_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF30-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00379025, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00379025", "description": "This construct contains an eGFP N-terminal tag to ZNF30 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "18440e1c-728d-4fa9-9d7f-3a6b507b310b", "aliases:array": "michael-snyder:eGFP_ZNF391_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF391-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:thermo-fisher, identifier:Ensembl:ENST00000244576, url:http://uswest.ensembl.org/Homo_sapiens/Transcript/Summary?g=ENSG00000124613;r=6:27388718-27403904;t=ENST00000244576", "description": "This construct contains an eGFP N-terminal tag to ZNF391, synthesized by Life Technologies (using the sequence identified by ENST00000244576), under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020). This construct was also custom synthesized by Thermo Fisher.", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "9607df82-7670-4d39-8228-e139d55271fc", "aliases:array": "michael-snyder:eGFP_ZNF485_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF485-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:7363, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=7363", "description": "This construct contains an eGFP N-terminal tag to ZNF485 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "f259f02b-6a07-4c46-8cca-9254a0962eca", "aliases:array": "michael-snyder:eGFP_ZNF491_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF491-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:human-orfeome, identifier:71791, url:http://horfdb.dfci.harvard.edu/hv7/index.php?page=getresults&by=detail&qury=71791", "description": "This construct contains an eGFP N-terminal tag to ZNF491 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "released", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "1b20e7ba-d391-4151-b7e8-0778baf45824", "aliases:array": "michael-snyder:eGFP_ZNF583_FRT_construct", "modified_site_by_target_id": "eGFP-ZNF583-human", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:N-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:Flp-recombinase-treatment", "reagents:object:array": "source:plasmid-repository, identifier:HsCD00079632, url:https://plasmid.med.harvard.edu/PLASMID/SearchClone.do?&searchType=PlasmID+Clone+ID&searchString=HsCD00079632", "description": "This construct contains an eGFP N-terminal tag to ZNF583 under control of a CMV promoter, introduced to expression vector pcDNA5/FRT as part of Thermo Fishers Flp-In system. It is stably integrated at the introduced FLP recombinase target (FRT) site in the host genome.", "documents:array": "/documents/672a2de5-5bfe-41a9-ac2d-e7e43c697c51/", "notes": "The pcDNA5/FRT vector is from Thermo Fisher, product id = V601020 (https://www.thermofisher.com/order/catalog/product/V601020).", "status": "in progress", "lab": "michael-snyder", "submitted_by": "/users/7dfa474a-d01d-417f-af5f-657c63cb254c/", "award": "U54HG006996"}, - {"uuid": "1344d865-3595-4ab9-a425-d424a185d7f1", "aliases:array": "robert-waterston:OP594-GFP", "modified_site_by_target_id": "eGFP-fkh-3-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:C-terminal, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:source-bioscience, identifier:WRM0615dC04, url:https://www.sourcebioscience.com/search?search=WRM0615dC04", "description": "wgIs594 [FKH-3::TY1::EGFP::3xFLAG + unc-119(+)]", "status": "released", "lab": "robert-waterston", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cb4af66e-b6d5-4a17-aef5-35a6be848fff", "aliases:array": "valerie-reinke:YL521-GFP", "modified_site_by_target_id": "eGFP-lin-35-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:unknown, name: eGFP; location:unknown, name:FLAG", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "LIN-35 is driven in the germ line under the PIE-1 promoter and is enriched in oocytes by using the PUF-5 3UTR.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/b9756104-0a7b-4b5b-929e-a8ea12d17bc0/", "award": "U41HG007355"}, - {"uuid": "9dff0886-7589-4591-8d18-9505800023e0", "aliases:array": "valerie-reinke:YL457-GFP", "modified_site_by_target_id": "eGFP-snpc-4-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:unknown, name: eGFP, promoter_used:pie-1-celegans", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:valerie-reinke, identifier:please-contact-lab", "description": "SNPC-4(GEI-11) is driven in the germ line under the PIE-1 promoter.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/b9756104-0a7b-4b5b-929e-a8ea12d17bc0/", "award": "U41HG007355"}, - {"uuid": "1c0ade32-b445-4f6a-bf37-43495df74a25", "aliases:array": "valerie-reinke:TJ356-GFP", "modified_site_by_target_id": "eGFP-daf-16-celegans", "modified_site_nonspecific": "random", "introduced_tags:object:array": "location:unknown, name: eGFP", "category": "insertion", "purpose": "tagging", "method": "bombardment", "reagents:object:array": "source:unknown, identifier:some lab in Colorado", "description": "Contains the promoter and coding region of DAF-16 fused to GFP.", "status": "in progress", "lab": "valerie-reinke", "submitted_by": "/users/b9756104-0a7b-4b5b-929e-a8ea12d17bc0/", "award": "U41HG007355"}, - {"uuid": "d43f755e-369b-4b3f-91a4-0fd4a3585b34", "aliases:array": "hugo-bellen:CG16779-MiMIC-GFP", "modified_site_by_target_id": "eGFP-CG16779-dmelanogaster", "introduced_tags:object:array": "location:internal, name:eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI06036, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI06036", "description": "This line was created by RCME to replace the EGFP-miniwhite sequence within the MiMIC transposon with an eGFP-3xFLAG sequence. They were a gift from Hugo Bellens lab at Baylor College of Medicine", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"}, - {"uuid": "cc3be8b2-96ef-493d-9264-7c404d34201f", "aliases:array": "hugo-bellen:snoo-MiMIC-GFP", "modified_site_by_target_id": "eGFP-Snoo-dmelanogaster", "introduced_tags:object:array": "location:internal, name:eGFP", "category": "insertion", "purpose": "tagging", "method": "site-specific recombination", "treatments:array": "encode:PhiC31-integrase-treatment", "reagents:object:array": "source:hugo-bellen, identifier:MI07577, url:http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line=MI07577", "description": "This line was created by RCME to replace the EGFP-miniwhite sequence within the MiMIC transposon with an eGFP-3xFLAG sequence. They were a gift from Hugo Bellens lab at Baylor College of Medicine", "status": "in progress", "lab": "kevin-white", "submitted_by": "/users/494d1118-529d-47ac-bd42-f2b2bbc8d5bd/", "award": "U41HG007355"} - ], - "mutagen_treatments": [ - {"uuid":"aac8b3e3-f0f2-4909-bbe4-d508e811898e","aliases":["encode:TMP-treatment"],"treatment_type":"chemical","treatment_term_name":"trioxsalen","treatment_term_id":"CHEBI:28329"}, - {"uuid":"f522c9d1-6ffb-49fb-84b9-33156829c545","aliases":["encode:UV-treatment"],"treatment_type":"irradiation","treatment_term_name":"non-ionizing ultraviolet radiation exposure","treatment_term_id":"XCO:0000180"}, - {"uuid":"e61a1a48-cf87-4005-805d-a24fe9b6c734","aliases":["encode:EMS-treatment"],"treatment_type":"chemical","treatment_term_name":"ethyl methanesulfonate","treatment_term_id":"CHEBI:23994"}, - {"uuid":"2f17f532-db67-451f-a9ca-31a844a8b6e5","aliases":["encode:Tc1a-transposase"],"treatment_type":"protein","treatment_term_name":"Transposable element Tc1 transposase","treatment_term_id":"UniProtKB:P03934"}, - {"uuid":"a7ab9449-73ea-4693-be2d-a726a9e82056","aliases":["encode:PhiC31-integrase-treatment"],"treatment_type":"protein","treatment_term_name":"Integrase","treatment_term_id":"UniProtKB:Q9T221"}, - {"uuid":"33bde07b-1162-4dbd-a867-333a74bcab40","aliases":["encode:Flp-recombinase-treatment"],"treatment_type":"protein","treatment_term_name":"Site-specific recombinase Flp","treatment_term_id":"UniProtKB:P03870"} - ], - "mutagenesis_genetic_modifications": [ - {"uuid":"6afa8686-11fd-4a3b-ba33-469e8d85d4a3","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"ceh-18-celegans","method":"mutagen treatment","zygosity":"homozygous","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"4d59961b-0043-4f8a-96d7-19320353adbc","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"ceh-2-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:EMS-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"5adcdad1-6a2c-434c-ae24-ec4624239425","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"dve-1-celegans","method":"mutagen treatment","zygosity":"homozygous","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"637a93f1-0865-4052-99b3-56a7c3fe8c7f","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"tbx-7-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"36c1992e-41b3-403c-983d-c0202f0a98bf","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"pag-3-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"5c2f3d83-ffc5-4380-b073-00bee078bab7","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"blmp-1-celegans","method":"mutagen treatment","zygosity":"homozygous","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"154e80b7-7798-477e-8055-c3d3574548d2","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"fkh-10-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"7c82e590-d413-4e97-a601-2de0c69e9dfd","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"mab-5-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"24b63308-fe12-422b-9551-93d857722f70","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"C08G9.2-celegans","method":"mutagen treatment","zygosity":"homozygous","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"3bc71dc1-0102-4093-beee-149ec3532e64","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"ces-1-celegans","method":"mutagen treatment","zygosity":"homozygous","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"2daa24f0-8f91-42d8-9211-0b4027937b2e","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"ceh-14-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:Tc1a-transposase"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"f8410ac9-8d48-46df-bbc4-c8722ee01f03","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"ceh-31-celegans","method":"mutagen treatment","zygosity":"homozygous","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"d22f479d-bc7d-4a33-8ee9-baf24831b964","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"rnt-1-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"bf72cf43-a820-44f2-bb8a-9172006dbbe3","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"pqm-1-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"74529f28-f1b5-48ee-85bd-381f7be9419d","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"ceh-30-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"ffef6c59-d0b2-4a4c-a633-0f3452f86c95","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"mec-3-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:EMS-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"83e805d1-5099-4fc1-884e-478c17803da2","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"elt-4-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:EMS-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"d3d9c49c-26e8-43ca-815e-1151d495a2c9","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"sox-4-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"}, - {"uuid":"98e32646-1004-4e41-af31-cef15b561b4e","category":"mutagenesis","purpose":"repression","mutated_site_by_target_id":"fax-1-celegans","method":"mutagen treatment","zygosity":"","treatments":["encode:TMP-treatment", "encode:UV-treatment"],"lab":"robert-waterston","award":"U41HG007355"} - ] -}