diff --git a/apps/steward-app/src/main/js/app/client/statistics/directives/ontology-term.factory.js b/apps/steward-app/src/main/js/app/client/statistics/directives/ontology-term.factory.js
new file mode 100644
index 000000000..801d12466
--- /dev/null
+++ b/apps/steward-app/src/main/js/app/client/statistics/directives/ontology-term.factory.js
@@ -0,0 +1,44 @@
+(function () {
+
+    angular.module('shrine.steward.statistics')
+        .factory('OntologyTerm', OntologyTermFactory);
+
+
+    function OntologyTermFactory() {
+        return OntologyTerm;
+    }
+
+    function OntologyTerm(key) {
+        this.key = key;
+        this.children = {};
+        this.queries = {};
+        this.queryCount = 0;
+    }
+
+    /* static */
+    OntologyTerm.prototype.maxTermUsedCount = 0;
+
+    OntologyTerm.prototype.addQuery = function (queryId, queryData) {
+        if (!this.queries[queryId]) {
+            this.queries[queryId] = queryData;
+            this.queryCount = this.getQueries().length;
+
+            if (this.queryCount > OntologyTerm.prototype.maxTermUsedCount) {
+                OntologyTerm.prototype.maxTermUsedCount = this.queryCount;
+            }
+        }
+    };
+
+    OntologyTerm.prototype.getQueries = function () {
+        return Object.keys(this.queries);
+    };
+
+    OntologyTerm.prototype.getQueryCount = function () {
+        return this.queryCount;
+    };
+
+    OntologyTerm.prototype.hasChildren = function () {
+        return !!(Object.keys(this.children).length > 0);
+    };
+
+})();
\ No newline at end of file
diff --git a/apps/steward-app/src/main/js/app/client/statistics/directives/ontology-term.service.js b/apps/steward-app/src/main/js/app/client/statistics/directives/ontology-term.service.js
new file mode 100644
index 000000000..d4a883226
--- /dev/null
+++ b/apps/steward-app/src/main/js/app/client/statistics/directives/ontology-term.service.js
@@ -0,0 +1,126 @@
+(function () {
+    'use strict';
+
+    angular.module('shrine.steward.statistics')
+        .service('OntologyTermService', OntologyTermService);
+
+    OntologyTermService.$inject = ['OntologyTerm'];
+    function OntologyTermService (OntologyTerm) {
+
+        return {
+            buildOntology: buildOntology,
+            getMax: function() {
+                return OntologyTerm.prototype.maxTermUsedCount;
+            }
+        };
+
+        /**
+         * Build Ontology from array of Query Records.
+         */
+        function buildOntology(queryRecords, topicId) {
+            var ln = queryRecords.length;
+            var queryCount = 0;
+            var ontology = new OntologyTerm('SHRINE');
+
+            for (var i = 0; i < ln; i++) {
+                var record = queryRecords[i];
+                if (topicId === undefined || (record.topic !== undefined && topicId === record.topic.id)) {
+                    var str = record.queryContents;
+                    ontology = traverse(str.queryDefinition.expr, record.externalId, ontology);
+                    queryCount ++;
+                }
+            }
+
+            return ontology;
+        }
+
+        /**
+         * Recursive Traversal of ontological hierarchy.
+         */
+        function traverse(obj, queryId, terms) {
+
+            var keys = Object.keys(obj);
+
+            // -- nothing to search, we're done. -- //
+            if (typeof (obj) !== 'object' || !keys.length) {
+                return terms;
+            }
+
+            // -- traverse each object key, parse all the terms. -- //
+            for (var i = 0; i < keys.length; i++) {
+                var key = keys[i];
+
+                if (key === 'term') {
+
+                    if (!Array.isArray(obj.term)) {
+                        processKey(terms, obj.term, queryId);
+                    }
+                    else {
+                        // -- iterate through the termlist -- //
+                        var termList = obj.term;
+                        for (var j = 0; j < termList.length; j++) {
+                            var term = termList[j];
+                            processKey(terms, term, queryId);
+                        }
+                    }
+                }
+                else {
+                    traverse(obj[key], queryId, terms);
+                }
+            }
+
+            return terms;
+        }
+
+        /**
+         * Parse out a term hierarchy of a term key.
+         */
+        function processKey(terms, key, queryId) {
+            var prunedKey = key.split('\\\\SHRINE\\SHRINE')[1];
+            var ontologyList = prunedKey.split('\\').slice(1);
+            ontologyList = ontologyList.slice(0, ontologyList.length - 1);
+
+            var currentLevel = terms;
+            for (var i = 0; i < ontologyList.length; i++) {
+                var term = ontologyList[i];
+                processTerm(currentLevel, term, queryId);
+                currentLevel = currentLevel.children[term];
+            }
+        }
+
+        /**
+         * If a term is already a child of the parent, then add it's query to the list of queries for that term.
+         * Otherwise, create a new term object and add it to the parent.
+         */
+        function processTerm(terms, key, queryId) {
+            var term;
+
+            if (!terms.children[key]) {
+                term = addTerm(terms, key, queryId);
+            }
+            else {
+                term = terms.children[key];
+                term.addQuery(queryId, queryId);
+            }
+        }
+
+        /**
+         * Add an instance of a query term to it's parent in the ontolgy.
+         */
+        function addTerm(terms, key, queryId) {
+
+            var term = getNewTerm(key);
+            term.addQuery(queryId, queryId);
+            terms.children[key] = term;
+            return term;
+        }
+
+        /**
+         * Return Instance of Ontology Term.
+         */
+        function getNewTerm(name) {
+            return new OntologyTerm(name);
+        }
+
+    }
+})();
\ No newline at end of file
diff --git a/apps/steward-app/src/main/js/app/client/statistics/directives/ontology-term.service.spec.js b/apps/steward-app/src/main/js/app/client/statistics/directives/ontology-term.service.spec.js
new file mode 100644
index 000000000..2db53bf8b
--- /dev/null
+++ b/apps/steward-app/src/main/js/app/client/statistics/directives/ontology-term.service.spec.js
@@ -0,0 +1,37 @@
+(function () {
+    'use strict';
+
+    describe('statistics model tests', OntologyTermServiceSpec);
+
+    function OntologyTermServiceSpec() {
+
+        var ontologyTermService, OntologyTerm;
+
+        function setup() {
+            module('shrine.steward.statistics');
+
+            inject(function (_OntologyTerm_, _OntologyTermService_) {
+                ontologyTermService = _OntologyTermService_;
+                OntologyTerm = _OntologyTerm_;
+            });
+        }
+
+        beforeEach(setup);
+
+        it('Parse Query History', function () {
+
+            var queryHistory = getQueryData();
+            var ontologyTree = ontologyTermService.buildOntology(queryHistory.queryRecords);
+            expect(ontologyTree.key).toBe('SHRINE');
+            expect(ontologyTermService.getMax()).toEqual(OntologyTerm.prototype.maxTermUsedCount);
+            expect(ontologyTree.children).toBeDefined();
+        });
+    }
+
+    /**
+     * Simulate call to retrieve query history.
+     */
+    function getQueryData() {
+            return { "totalCount": 144, "skipped": 0, "queryRecords": [{ "name": "(042)-R3: B-Male@16:00:47", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 2648707654509368797, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587248893, "stewardId": 400, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\161\\"] } } }, "name": "(042)-R3: B-Male@16:00:47" } } }, { "name": "Aceta-R3: B-Male@16:01:13", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 3600437163069893043, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587275020, "stewardId": 401, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\161\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Aceta-R3: B-Male@16:01:13" } } }, { "name": "(042)-R3: B-Male@16:02:11", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 6263453912784003804, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587332322, "stewardId": 402, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1886\\"] } } }, "name": "(042)-R3: B-Male@16:02:11" } } }, { "name": "Caffe-R3: B-Male@16:02:29", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 4379134945899344034, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587350694, "stewardId": 403, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1886\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Caffe-R3: B-Male@16:02:29" } } }, { "name": "(042)-R3: B-Male@16:02:53", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 8443382336139319396, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587374744, "stewardId": 404, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1191\\"] } } }, "name": "(042)-R3: B-Male@16:02:53" } } }, { "name": "Aspir-R3: B-Male@16:03:07", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 6855029845924574963, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587388451, "stewardId": 405, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1191\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Aspir-R3: B-Male@16:03:07" } } }, { "name": "(042)-R3: B-Male@16:03:39", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 898006392648873638, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587420556, "stewardId": 406, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\"] } } }, "name": "(042)-R3: B-Male@16:03:39" } } }, { "name": "Acarb-R3: B-Male@16:03:47", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 5208850828805054186, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587429005, "stewardId": 407, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Acarb-R3: B-Male@16:03:47" } } }, { "name": "(042)-R3: B-Male@16:04:09", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 7425009544481708263, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587450208, "stewardId": 408, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\"] } } }, "name": "(042)-R3: B-Male@16:04:09" } } }, { "name": "migli-R3: B-Male@16:04:18", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 1750973852506559058, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587459931, "stewardId": 409, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "migli-R3: B-Male@16:04:18" } } }, { "name": "(042)-R3: B-Male@16:04:47", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 4360123140814019270, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587488444, "stewardId": 410, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\"] } } }, "name": "(042)-R3: B-Male@16:04:47" } } }, { "name": "Metfo-R3: B-Male@16:04:54", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 4898171657067570139, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587495732, "stewardId": 411, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Metfo-R3: B-Male@16:04:54" } } }, { "name": "(042)-R3: B-Male@16:05:17", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 3855008654492067286, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587518220, "stewardId": 412, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\"] } } }, "name": "(042)-R3: B-Male@16:05:17" } } }, { "name": "Diabe-R3: B-Male@16:05:31", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 9110192329738944196, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587532485, "stewardId": 413, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Diabe-R3: B-Male@16:05:31" } } }, { "name": "(042)-R3: B-Male@16:05:50", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 5009858272093989240, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587552142, "stewardId": 414, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\"] } } }, "name": "(042)-R3: B-Male@16:05:50" } } }, { "name": "Diabe-R3: B-Male@16:06:05", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 188134167455130135, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587566709, "stewardId": 415, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Diabe-R3: B-Male@16:06:05" } } }, { "name": "(042)-R3: B-Male@16:06:28", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 479399567250300927, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587589642, "stewardId": 416, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\"] } } }, "name": "(042)-R3: B-Male@16:06:28" } } }, { "name": "Essen-R3: B-Male@16:06:37", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 1393339008803755226, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587598597, "stewardId": 417, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Essen-R3: B-Male@16:06:37" } } }, { "name": "(042)-R3: B-Male@16:07:11", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 2736226359752105487, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587632763, "stewardId": 418, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\"] } } }, "name": "(042)-R3: B-Male@16:07:11" } } }, { "name": "INSUL-R3: B-Male@16:07:18", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 34685365704959618, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587640042, "stewardId": 419, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "INSUL-R3: B-Male@16:07:18" } } }, { "name": "(042)-R3: B-Male@16:07:43", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 5930491999925735746, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587665091, "stewardId": 420, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\237159\\"] } } }, "name": "(042)-R3: B-Male@16:07:43" } } }, { "name": "(042)-R3: B-Male@16:08:16", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 5294063509653529393, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587698142, "stewardId": 421, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\689\\"] } } }, "name": "(042)-R3: B-Male@16:08:16" } } }, { "name": "Amino-R3: B-Male@16:08:24", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 7522843409011142797, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587705729, "stewardId": 422, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\689\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Amino-R3: B-Male@16:08:24" } } }, { "name": "Leval-R3: B-Male@16:09:05", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 5042684938741359724, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587747285, "stewardId": 423, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\237159\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Leval-R3: B-Male@16:09:05" } } }, { "name": "(042)-R3: B-Male@16:09:42", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 1637595037100529031, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587783673, "stewardId": 424, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\29046\\"] } } }, "name": "(042)-R3: B-Male@16:09:42" } } }, { "name": "Lisin-R3: B-Male@16:09:49", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 7935695322045969509, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587790761, "stewardId": 425, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\29046\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Lisin-R3: B-Male@16:09:49" } } }, { "name": "(042)-R3: B-Male@16:10:12", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 7947266617644567801, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587814104, "stewardId": 426, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1202\\"] } } }, "name": "(042)-R3: B-Male@16:10:12" } } }, { "name": "Ateno-R3: B-Male@16:10:27", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 8517141999061339732, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587828743, "stewardId": 427, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\zzzz\\1202\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Ateno-R3: B-Male@16:10:27" } } }, { "name": "(042)-R3: B-Male@16:11:14", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 5452747806402491855, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587875878, "stewardId": 428, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\6918\\"] } } }, "name": "(042)-R3: B-Male@16:11:14" } } }, { "name": "Metop-R3: B-Male@16:11:24", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 8916567601376587417, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587886065, "stewardId": 429, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\6918\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Metop-R3: B-Male@16:11:24" } } }, { "name": "(042)-R3: B-Male@16:11:51", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 8426729552377400851, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587912843, "stewardId": 430, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\"] } } }, "name": "(042)-R3: B-Male@16:11:51" } } }, { "name": "Chlor-R3: B-Male@16:11:57", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 2193440541060065083, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587918833, "stewardId": 431, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Chlor-R3: B-Male@16:11:57" } } }, { "name": "(042)-R3: B-Male@16:12:30", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 2979489468483322948, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587951792, "stewardId": 432, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\5487\\"] } } }, "name": "(042)-R3: B-Male@16:12:30" } } }, { "name": "Hydro-R3: B-Male@16:12:41", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 4838763513260705509, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587963185, "stewardId": 433, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\5487\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Hydro-R3: B-Male@16:12:41" } } }, { "name": "(042)-R3: B-Male@16:13:12", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 9109188960241130983, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472587993669, "stewardId": 434, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2409\\"] } } }, "name": "(042)-R3: B-Male@16:13:12" } } }, { "name": "Chlor-R3: B-Male@16:13:20", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Understanding potential health impacts of increasingly prevalent chronic dietary related health conditions, on patients with HIV, specifically among African American populations - where prevalence of such chronic conditions is particularly high; and understanding any impact of medications for chronic conditions in management of HIV.", "createDate": 1472586655712, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 18, "changeDate": 1472587022939, "name": "Health impact of dietary related chronic diseases on HIV positive patients" }, "stewardResponse": "Approved", "externalId": 5257445899619620687, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472588001549, "stewardId": 435, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2409\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Chlor-R3: B-Male@16:13:20" } } }, { "name": "Micro-R3: B-Male@16:16:02", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 4838907723642462383, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472588164188, "stewardId": 436, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\161\\"] } } }, "name": "Micro-R3: B-Male@16:16:02" } } }, { "name": "Aceta-R3: B-Male@16:16:15", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 4000856234841888811, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472588176634, "stewardId": 437, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\161\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Aceta-R3: B-Male@16:16:15" } } }, { "name": "Micro-R3: B-Male@16:16:54", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 4856772701929267242, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472588216305, "stewardId": 438, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1886\\"] } } }, "name": "Micro-R3: B-Male@16:16:54" } } }, { "name": "Caffe-R3: B-Male@16:17:05", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 5364490122711025417, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472588226273, "stewardId": 439, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1886\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Caffe-R3: B-Male@16:17:05" } } }, { "name": "Micro-R3: B-Male@16:17:42", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 1639997933354043907, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472588263531, "stewardId": 440, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1191\\"] } } }, "name": "Micro-R3: B-Male@16:17:42" } } }, { "name": "Aspir-R3: B-Male@16:59:09", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 1051554701594800060, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472590750632, "stewardId": 441, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1191\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Aspir-R3: B-Male@16:59:09" } } }, { "name": "Micro-R3: B-Male@17:02:05", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 114209128242947284, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472590926927, "stewardId": 442, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\"] } } }, "name": "Micro-R3: B-Male@17:02:05" } } }, { "name": "Acarb-R3: B-Male@17:02:13", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 5911637414172083145, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472590934318, "stewardId": 443, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Acarb-R3: B-Male@17:02:13" } } }, { "name": "Micro-R3: B-Male@17:02:41", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 3571439681561867514, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472590962252, "stewardId": 444, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\"] } } }, "name": "Micro-R3: B-Male@17:02:41" } } }, { "name": "migli-R3: B-Male@17:02:49", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 372697878341761973, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472590970798, "stewardId": 445, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "migli-R3: B-Male@17:02:49" } } }, { "name": "Micro-R3: B-Male@17:03:17", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 3210074767580567445, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472590998950, "stewardId": 446, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\"] } } }, "name": "Micro-R3: B-Male@17:03:17" } } }, { "name": "Metfo-R3: B-Male@17:03:23", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 3687986857788966187, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591005320, "stewardId": 447, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Metfo-R3: B-Male@17:03:23" } } }, { "name": "Micro-R3: B-Male@17:03:45", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 6061304924090295649, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591026100, "stewardId": 448, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\"] } } }, "name": "Micro-R3: B-Male@17:03:45" } } }, { "name": "Diabe-R3: B-Male@17:03:51", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 2183514302797849167, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591033257, "stewardId": 449, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Diabe-R3: B-Male@17:03:51" } } }, { "name": "Micro-R3: B-Male@17:04:15", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 1561488252968533795, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591056617, "stewardId": 450, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\"] } } }, "name": "Micro-R3: B-Male@17:04:15" } } }, { "name": "Diabe-R3: B-Male@17:04:25", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 4679957608524541399, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591066354, "stewardId": 451, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Diabe-R3: B-Male@17:04:25" } } }, { "name": "Micro-R3: B-Male@17:04:47", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 8234213651826662449, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591088484, "stewardId": 452, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\"] } } }, "name": "Micro-R3: B-Male@17:04:47" } } }, { "name": "Essen-R3: B-Male@17:04:52", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 755249573696607065, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591093801, "stewardId": 453, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Essen-R3: B-Male@17:04:52" } } }, { "name": "Micro-R3: B-Male@17:05:13", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 5552648692199691952, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591114898, "stewardId": 454, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\"] } } }, "name": "Micro-R3: B-Male@17:05:13" } } }, { "name": "INSUL-R3: B-Male@17:05:23", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 7989341800224959369, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591125020, "stewardId": 455, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "INSUL-R3: B-Male@17:05:23" } } }, { "name": "Micro-R3: B-Male@17:07:06", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 1046266465768393777, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591228221, "stewardId": 456, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\237159\\"] } } }, "name": "Micro-R3: B-Male@17:07:06" } } }, { "name": "Leval-R3: B-Male@17:07:13", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 9200595174307939802, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591235506, "stewardId": 457, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\237159\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Leval-R3: B-Male@17:07:13" } } }, { "name": "Micro-R3: B-Male@17:08:09", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 6959851371434112548, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591290721, "stewardId": 458, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\29046\\"] } } }, "name": "Micro-R3: B-Male@17:08:09" } } }, { "name": "Lisin-R3: B-Male@17:08:22", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 4746832498654789977, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591303552, "stewardId": 459, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\29046\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Lisin-R3: B-Male@17:08:22" } } }, { "name": "Micro-R3: B-Male@17:08:38", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 8108079039160737023, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591319854, "stewardId": 460, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1202\\"] } } }, "name": "Micro-R3: B-Male@17:08:38" } } }, { "name": "Ateno-R3: B-Male@17:08:48", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 554635661664219990, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591330029, "stewardId": 461, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\zzzz\\1202\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Ateno-R3: B-Male@17:08:48" } } }, { "name": "Micro-R3: B-Male@17:09:03", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 2606299132071671313, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591344970, "stewardId": 462, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\6918\\"] } } }, "name": "Micro-R3: B-Male@17:09:03" } } }, { "name": "Metop-R3: B-Male@17:09:21", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 6077163558340746294, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591362864, "stewardId": 463, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\6918\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Metop-R3: B-Male@17:09:21" } } }, { "name": "Micro-R3: B-Male@17:09:37", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 8677293011945386124, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591378441, "stewardId": 464, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\"] } } }, "name": "Micro-R3: B-Male@17:09:37" } } }, { "name": "Chlor-R3: B-Male@17:10:53", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 5435806514319896029, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591454643, "stewardId": 465, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Chlor-R3: B-Male@17:10:53" } } }, { "name": "Chlor-R3: B-Male@17:11:13", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 6269112036394442108, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591474992, "stewardId": 466, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\"] } } }, "name": "Chlor-R3: B-Male@17:11:13" } } }, { "name": "Anoph-R3: B-Male@17:11:24", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 3610131085635691220, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591486085, "stewardId": 467, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\"] } }, "name": "Anoph-R3: B-Male@17:11:24" } } }, { "name": "Anoph-R3: B-Male@17:11:55", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 5782621780167804633, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591521346, "stewardId": 468, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\6918\\"] } } }, "name": "Anoph-R3: B-Male@17:11:55" } } }, { "name": "Anoph-R3: B-Male@17:13:07", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying potential correlations between congenital anomalies and  increased risk of highly prevalent chronic health conditions diabetes mellitus type 2 and hypertension, and effectiveness of standard medications for chronic conditions in patients with congenital anomalies.", "createDate": 1472586681523, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 19, "changeDate": 1472587037082, "name": "Identifying correlations between congenital anomalies and increased risk for chronic health conditions" }, "stewardResponse": "Approved", "externalId": 8089643168948492294, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472591588373, "stewardId": 469, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\29046\\"] } } }, "name": "Anoph-R3: B-Male@17:13:07" } } }, { "name": "Other maternal @10:03:20", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 438512722186084961, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472652202338, "stewardId": 470, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\" }, "name": "Other maternal @10:03:20" } } }, { "name": "Hypertonic, inc@10:03:57", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 2331305839012106062, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472652238459, "stewardId": 471, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\" }, "name": "Hypertonic, inc@10:03:57" } } }, { "name": "Precipitate lab@10:04:32", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 4535951599211583429, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472652273378, "stewardId": 472, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Precipitate labor (661.3)\\" }, "name": "Precipitate lab@10:04:32" } } }, { "name": "Cesarean delive@10:04:52", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 5643525925200359244, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472652293830, "stewardId": 473, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Cesarean delivery, without mention of indication (669.7)\\" }, "name": "Cesarean delive@10:04:52" } } }, { "name": "Forceps or vacu@10:05:33", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 1084347425622270993, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472652335220, "stewardId": 474, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Forceps or vacuum extractor delivery without mention of indication (669.5)\\" }, "name": "Forceps or vacu@10:05:33" } } }, { "name": "Abnormality of @10:08:51", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 254709938122300093, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472652536448, "stewardId": 475, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\" }, "name": "Abnormality of @10:08:51" } } }, { "name": "Hypertonic, inc@10:09:28", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 9139901314049343764, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472652570019, "stewardId": 476, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\" }, "name": "Hypertonic, inc@10:09:28" } } }, { "name": "Other and unspe@10:11:07", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 1712052448050515701, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472652669754, "stewardId": 477, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Other and unspecified uterine inertia (661.2)\\" }, "name": "Other and unspe@10:11:07" } } }, { "name": "Primary uterine@10:11:24", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 932158704885655628, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472652686393, "stewardId": 478, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Primary uterine inertia (661.0)\\" }, "name": "Primary uterine@10:11:24" } } }, { "name": "Unspecified abn@10:53:04", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 2171121096823526348, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655186002, "stewardId": 479, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Unspecified abnormality of labor (661.9)\\" }, "name": "Unspecified abn@10:53:04" } } }, { "name": "Pulmonary compl@10:53:20", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 6612011731372599443, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655201353, "stewardId": 480, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\" }, "name": "Pulmonary compl@10:53:20" } } }, { "name": "Deep transverse@10:53:33", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 8925248588560705491, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655215214, "stewardId": 481, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\\" }, "name": "Deep transverse@10:53:33" } } }, { "name": "Failed forceps @10:53:47", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 6509861914548584297, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655228979, "stewardId": 482, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed forceps or vacuum extractor, unspecified (660.7)\\" }, "name": "Failed forceps @10:53:47" } } }, { "name": "Legally induced@10:54:01", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 7842474969127688299, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655242650, "stewardId": 483, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" }, "name": "Legally induced@10:54:01" } } }, { "name": "Obstruction cau@10:54:17", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 4990482595786845002, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655258742, "stewardId": 484, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction caused by malposition of fetus at onset of labor (660.0)\\" }, "name": "Obstruction cau@10:54:17" } } }, { "name": "Complications o@10:54:30", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 8329894087176016412, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655271406, "stewardId": 485, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" }, "name": "Complications o@10:54:30" } } }, { "name": "Failed trial of@10:54:53", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 4737401618560282720, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655294806, "stewardId": 486, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed trial of labor, unspecified (660.6)\\" }, "name": "Failed trial of@10:54:53" } } }, { "name": "Hypertonic, inc@10:56:30", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 2406312754995701454, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655391454, "stewardId": 487, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\" }, "name": "Hypertonic, inc@10:56:30" } } }, { "name": "Precipitate lab@10:56:45", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 6399485767031026748, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655406680, "stewardId": 488, "queryContents": { "queryDefinition": { "expr": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Precipitate labor (661.3)\\" }, "name": "Precipitate lab@10:56:45" } } }, { "name": "Precipi-(754.0)@10:57:17", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 7087687189896824207, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655439442, "stewardId": 489, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Precipitate labor (661.3)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "Precipi-(754.0)@10:57:17" } } }, { "name": "(754.0)-Cesarea@10:57:54", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 1488614521209287834, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655475772, "stewardId": 490, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Cesarean delivery, without mention of indication (669.7)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "(754.0)-Cesarea@10:57:54" } } }, { "name": "(754.0)-Forceps@10:58:16", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 6904170937440497764, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655497924, "stewardId": 491, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Forceps or vacuum extractor delivery without mention of indication (669.5)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "(754.0)-Forceps@10:58:16" } } }, { "name": "(754.0)-Abnorma@11:05:14", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 6582492753700411830, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655915653, "stewardId": 492, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "(754.0)-Abnorma@11:05:14" } } }, { "name": "(754.0)-Hyperto@11:05:45", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 1220904381720167210, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655946565, "stewardId": 493, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "(754.0)-Hyperto@11:05:45" } } }, { "name": "(754.0)-Other a@11:06:01", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 1662792196575435192, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655962257, "stewardId": 494, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Other and unspecified uterine inertia (661.2)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "(754.0)-Other a@11:06:01" } } }, { "name": "(754.0)-Primary@11:06:13", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 9211643082625991431, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655975182, "stewardId": 495, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Primary uterine inertia (661.0)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "(754.0)-Primary@11:06:13" } } }, { "name": "(754.0)-Unspeci@11:06:27", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 7801071439031281460, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472655988783, "stewardId": 496, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Unspecified abnormality of labor (661.9)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "(754.0)-Unspeci@11:06:27" } } }, { "name": "(754.0)-Pulmona@11:06:42", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 5625673261436757322, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656003521, "stewardId": 497, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "(754.0)-Pulmona@11:06:42" } } }, { "name": "(754.0)-Deep tr@11:07:15", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 3292028783225861116, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656036696, "stewardId": 498, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "(754.0)-Deep tr@11:07:15" } } }, { "name": "(754.0)-Failed @11:07:37", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 8170097484723196535, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656059037, "stewardId": 499, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed forceps or vacuum extractor, unspecified (660.7)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\"] } } }, "name": "(754.0)-Failed @11:07:37" } } }, { "name": "(740.0)-Cesarea@11:08:15", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 5380239451968470447, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656096682, "stewardId": 500, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Cesarean delivery, without mention of indication (669.7)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.0) Anencephalus\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.1) Craniorachischisis\\"] } } }, "name": "(740.0)-Cesarea@11:08:15" } } }, { "name": "(740.0)-Forceps@11:08:28", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 7811264639452279144, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656110090, "stewardId": 501, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Forceps or vacuum extractor delivery without mention of indication (669.5)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.0) Anencephalus\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.1) Craniorachischisis\\"] } } }, "name": "(740.0)-Forceps@11:08:28" } } }, { "name": "(740.0)-Abnorma@11:08:40", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 4977265009312036640, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656121445, "stewardId": 502, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.0) Anencephalus\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.1) Craniorachischisis\\"] } } }, "name": "(740.0)-Abnorma@11:08:40" } } }, { "name": "(740.0)-Hyperto@11:08:52", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 8360282821525601865, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656133635, "stewardId": 503, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.0) Anencephalus\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.1) Craniorachischisis\\"] } } }, "name": "(740.0)-Hyperto@11:08:52" } } }, { "name": "(740.0)-Other a@11:09:05", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 5494801448121929467, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656146743, "stewardId": 504, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Other and unspecified uterine inertia (661.2)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.0) Anencephalus\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.1) Craniorachischisis\\"] } } }, "name": "(740.0)-Other a@11:09:05" } } }, { "name": "(740.0)-Primary@11:09:17", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 8470228705289450818, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656158815, "stewardId": 505, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Primary uterine inertia (661.0)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.0) Anencephalus\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.1) Craniorachischisis\\"] } } }, "name": "(740.0)-Primary@11:09:17" } } }, { "name": "(740.0)-Unspeci@11:09:28", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Identifying correlations between labor and birth complications, and specific congenital conditions related to musculoskeletal defects of the spine, skull and neck.", "createDate": 1472586727997, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 21, "changeDate": 1472587313302, "name": "identifying Correlations between congenital anomalies and complications of labor and birth." }, "stewardResponse": "Approved", "externalId": 1567726413236597662, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656169392, "stewardId": 506, "queryContents": { "queryDefinition": { "expr": { "and": { "term": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Unspecified abnormality of labor (661.9)\\", "or": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.0) Anencephalus\\", "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.1) Craniorachischisis\\"] } } }, "name": "(740.0)-Unspeci@11:09:28" } } }, { "name": "Diabe-R3: B-Aceta@11:16:06", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 5174467797346328639, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656568233, "stewardId": 507, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\161\\"] } }, "name": "Diabe-R3: B-Aceta@11:16:06" } } }, { "name": "Diabe-R3: B-Aspir@11:16:23", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 2794376855051886671, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656585152, "stewardId": 508, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1191\\"] } }, "name": "Diabe-R3: B-Aspir@11:16:23" } } }, { "name": "Diabe-R3: B-Caffe@11:16:55", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 1044427930106308584, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656616859, "stewardId": 509, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1886\\"] } }, "name": "Diabe-R3: B-Caffe@11:16:55" } } }, { "name": "Diabe-R3: B-Acarb@11:17:12", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 7418005693351346004, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656633476, "stewardId": 510, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\"] } }, "name": "Diabe-R3: B-Acarb@11:17:12" } } }, { "name": "Diabe-R3: B-migli@11:17:28", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 695924216927184648, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656649645, "stewardId": 511, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\"] } }, "name": "Diabe-R3: B-migli@11:17:28" } } }, { "name": "Diabe-R3: B-Metfo@11:17:46", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 7888563857135844160, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656667842, "stewardId": 512, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\"] } }, "name": "Diabe-R3: B-Metfo@11:17:46" } } }, { "name": "Diabe-R3: B-Aceta@11:18:32", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 5168650818913981331, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656713441, "stewardId": 513, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\161\\"] } }, "name": "Diabe-R3: B-Aceta@11:18:32" } } }, { "name": "Diabe-R3: B-Aspir@11:18:58", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 7844324309055147065, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656739015, "stewardId": 514, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1191\\"] } }, "name": "Diabe-R3: B-Aspir@11:18:58" } } }, { "name": "Diabe-R3: B-Caffe@11:19:10", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 794591131061932003, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656751714, "stewardId": 515, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1886\\"] } }, "name": "Diabe-R3: B-Caffe@11:19:10" } } }, { "name": "Diabe-R3: B-Acarb@11:19:26", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 8280687518804420793, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656767637, "stewardId": 516, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\"] } }, "name": "Diabe-R3: B-Acarb@11:19:26" } } }, { "name": "Diabe-R3: B-migli@11:20:08", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 589945805809937476, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656810210, "stewardId": 517, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\"] } }, "name": "Diabe-R3: B-migli@11:20:08" } } }, { "name": "Diabe-R3: B-Metfo@11:22:35", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 583418508499046891, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472656956754, "stewardId": 518, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\"] } }, "name": "Diabe-R3: B-Metfo@11:22:35" } } }, { "name": "Diabe-R3: B-Chlor@11:23:40", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 7203792399675073634, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657021649, "stewardId": 519, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\"] } }, "name": "Diabe-R3: B-Chlor@11:23:40" } } }, { "name": "Essen-R3: B-Chlor@11:24:29", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 7362147804788597147, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657071188, "stewardId": 520, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\"] } }, "name": "Essen-R3: B-Chlor@11:24:29" } } }, { "name": "Essen-R3: B-Lisin@11:24:46", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 8037011930011168290, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657087340, "stewardId": 521, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\29046\\"] } }, "name": "Essen-R3: B-Lisin@11:24:46" } } }, { "name": "Essen-R3: B-Ateno@11:24:57", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 6472709426375569353, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657099117, "stewardId": 522, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1202\\"] } }, "name": "Essen-R3: B-Ateno@11:24:57" } } }, { "name": "Essen-R3: B-Metop@11:25:11", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 872766527547291191, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657112978, "stewardId": 523, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\6918\\"] } }, "name": "Essen-R3: B-Metop@11:25:11" } } }, { "name": "Essen-R3: B-Hydro@11:25:26", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 3586929774720426387, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657127365, "stewardId": 524, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\5487\\"] } }, "name": "Essen-R3: B-Hydro@11:25:26" } } }, { "name": "Essen-R3: B-Chlor@11:25:40", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 470833085071994268, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657142257, "stewardId": 525, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2409\\"] } }, "name": "Essen-R3: B-Chlor@11:25:40" } } }, { "name": "Ess-R3:-mig-Chl@11:26:10", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 4945624012203499502, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657171564, "stewardId": 526, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\"] } }, "name": "Ess-R3:-mig-Chl@11:26:10" } } }, { "name": "Ess-R3:-mig-Lis@11:26:24", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 6287374830168751593, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657185503, "stewardId": 527, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\29046\\"] } }, "name": "Ess-R3:-mig-Lis@11:26:24" } } }, { "name": "Ess-R3:-mig-Ate@11:26:36", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 1179439889529872745, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657198049, "stewardId": 528, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1202\\"] } }, "name": "Ess-R3:-mig-Ate@11:26:36" } } }, { "name": "Ess-R3:-mig-Met@11:26:57", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 4711862544928567957, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657219348, "stewardId": 529, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\6918\\"] } }, "name": "Ess-R3:-mig-Met@11:26:57" } } }, { "name": "Ess-R3:-mig-Hyd@11:27:16", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 8632446537331239933, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657237911, "stewardId": 530, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\5487\\"] } }, "name": "Ess-R3:-mig-Hyd@11:27:16" } } }, { "name": "Ess-R3:-mig-Chl@11:27:33", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 4730527150986487561, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657254820, "stewardId": 531, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2409\\"] } }, "name": "Ess-R3:-mig-Chl@11:27:33" } } }, { "name": "Ess-R3:-Met-Chl@11:28:04", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 4419356379262081231, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657286321, "stewardId": 532, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\"] } }, "name": "Ess-R3:-Met-Chl@11:28:04" } } }, { "name": "Ess-R3:-Met-Lis@11:28:20", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 1021398333063898808, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657301814, "stewardId": 533, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\29046\\"] } }, "name": "Ess-R3:-Met-Lis@11:28:20" } } }, { "name": "Ess-R3:-Met-Ate@11:28:36", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 2899915565944317229, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657317705, "stewardId": 534, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1202\\"] } }, "name": "Ess-R3:-Met-Ate@11:28:36" } } }, { "name": "Ess-R3:-Met-Met@11:28:53", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 452016522880455733, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657334572, "stewardId": 535, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\6918\\"] } }, "name": "Ess-R3:-Met-Met@11:28:53" } } }, { "name": "Ess-R3:-Met-Hyd@11:29:08", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 224710722022226306, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657349518, "stewardId": 536, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\5487\\"] } }, "name": "Ess-R3:-Met-Hyd@11:29:08" } } }, { "name": "Ess-R3:-Met-Chl@11:29:22", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 3935574894037045539, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657364111, "stewardId": 537, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2409\\"] } }, "name": "Ess-R3:-Met-Chl@11:29:22" } } }, { "name": "Ess-R3:-Met-Chl@11:29:42", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 597323415907564732, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657384315, "stewardId": 538, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\"] } }, "name": "Ess-R3:-Met-Chl@11:29:42" } } }, { "name": "Ess-R3:-Aca-Lis@11:36:14", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 5944191251893031620, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657775334, "stewardId": 539, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\29046\\"] } }, "name": "Ess-R3:-Aca-Lis@11:36:14" } } }, { "name": "Ess-R3:-Aca-Ate@11:36:28", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 6680919560460432205, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657789699, "stewardId": 540, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1202\\"] } }, "name": "Ess-R3:-Aca-Ate@11:36:28" } } }, { "name": "Ess-R3:-Aca-Met@11:36:42", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 9091099492570587120, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657804003, "stewardId": 541, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\6918\\"] } }, "name": "Ess-R3:-Aca-Met@11:36:42" } } }, { "name": "Ess-R3:-Aca-Hyd@11:36:57", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 8707285113581419320, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657818752, "stewardId": 542, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\5487\\"] } }, "name": "Ess-R3:-Aca-Hyd@11:36:57" } } }, { "name": "Ess-R3:-Aca-Chl@11:37:11", "topic": { "changedBy": { "userName": "dave", "fullName": "Steward Test Steward Dave", "roles": ["DataSteward", "Researcher"] }, "description": "Comparing impact and effectiveness of medications for patients with multiple dietary related chronic health conditions, specifically diabetes mellitus type 2 and hypertension", "createDate": 1472586703950, "state": "Approved", "createdBy": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "id": 20, "changeDate": 1472587157443, "name": "Comparing impact of medications for patients with multiple chronic health conditions" }, "stewardResponse": "Approved", "externalId": 5475903983983046083, "user": { "userName": "drevil", "fullName": "Mal Ishus", "roles": ["Researcher"] }, "date": 1472657833014, "stewardId": 543, "queryContents": { "queryDefinition": { "expr": { "and": { "term": ["\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\", "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2409\\"] } }, "name": "Ess-R3:-Aca-Chl@11:37:11" } } }] };
+        }
+})();
\ No newline at end of file
diff --git a/apps/steward-app/src/main/js/app/client/statistics/statistics.controller.js b/apps/steward-app/src/main/js/app/client/statistics/statistics.controller.js
index 0cfab0ecb..160f909f5 100644
--- a/apps/steward-app/src/main/js/app/client/statistics/statistics.controller.js
+++ b/apps/steward-app/src/main/js/app/client/statistics/statistics.controller.js
@@ -1,117 +1,117 @@
 (function () {
     'use strict';
 
     angular
         .module('shrine.steward.statistics')
         .controller('StatisticsController', StatisticsController);
 
     StatisticsController.$inject = ['StatisticsModel', 'StewardService', '$scope'];
     function StatisticsController(model, service, $scope) {
 
         var stats = this;
         var startDate = new Date();
         var endDate = new Date();
         startDate.setDate(endDate.getDate() - 7);
 
         stats.getDateString = service.commonService.dateService.utcToMMDDYYYY;
         stats.timestampToUtc = service.commonService.dateService.timestampToUtc;
 
         stats.startDate = startDate; 
         stats.endDate = endDate;
 
         stats.isValid = true;
         stats.startOpened = false;
         stats.endOpened = false;
         stats.queriesPerUser = {};
         stats.topicsPerState = {};
         stats.format = 'MM/dd/yyyy';
 
         stats.openStart = openStart;
         stats.openEnd = openEnd;
         stats.validateRange = validateRange;
         stats.addDateRange = addDateRange;
         stats.parseStateTitle = parseStateTitle;
         stats.parseStateCount = parseStateCount;
         stats.getResults = getResults;
 
         // -- start -- //
         init();
 
         // -- private -- //
         function init() {
             addDateRange();
         }
 
         function openStart() {
             stats.startOpened = true;
         }
 
         function openEnd() {
             stats.endOpened = true;
         }
 
         function validateRange() {
 
             var startUtc, endUtc;
             var secondsPerDay = 86400000;
 
             if (stats.startDate === undefined || stats.endDate === undefined) {
                 stats.isValid = false;
                 return;
             }
 
             //can validate date range here.
             startUtc = stats.timestampToUtc(stats.startDate);
             endUtc = stats.timestampToUtc(stats.endDate) + secondsPerDay;
 
              if (endUtc - startUtc <= 0) {
                 stats.isValid = false;
             } else {
                 stats.isValid = true;
             }
 
             return stats.isValid;
         }
 
         function addDateRange() {
 
             if (stats.validateRange()) {
                 var secondsPerDay = 86400000;
                 stats.getResults(stats.timestampToUtc(stats.startDate),
                     stats.timestampToUtc(stats.endDate) + secondsPerDay);
             }
         }
 
         function parseStateTitle(state) {
 
             var title = '';
 
             if (state.Approved !== undefined) {
                 title = 'Approved';
             }
 
             else {
                 title = (state.Rejected !== undefined) ? 'Rejected' : 'Pending';
             }
 
             return title;
         }
 
         function parseStateCount(state) {
             var member = stats.parseStateTitle(state);
             return state[member];
         }
 
         function getResults(startUtc, endUtc) {
             model.getQueriesPerUser(startUtc, endUtc)
                 .then(function (result) {
                     stats.queriesPerUser = result;
                 });
 
             model.getTopicsPerState(startUtc, endUtc)
                 .then(function (result) {
                     stats.topicsPerState = result;
                 });
         }
     }
-})();
+})();
\ No newline at end of file
diff --git a/apps/steward-app/src/main/js/app/client/statistics/statistics-model.js b/apps/steward-app/src/main/js/app/client/statistics/statistics.model.js
similarity index 71%
rename from apps/steward-app/src/main/js/app/client/statistics/statistics-model.js
rename to apps/steward-app/src/main/js/app/client/statistics/statistics.model.js
index 02759a37f..0a7926e7e 100644
--- a/apps/steward-app/src/main/js/app/client/statistics/statistics-model.js
+++ b/apps/steward-app/src/main/js/app/client/statistics/statistics.model.js
@@ -1,73 +1,87 @@
     (function() {
     'use strict';
 
     angular
         .module('shrine.steward.statistics')
         .factory('StatisticsModel', StatisticsModel);
 
-    StatisticsModel.$inject = ['$http','StewardService'];
-    function StatisticsModel($http, StewardService) {
+    StatisticsModel.$inject = ['$http','StewardService', 'HistoryModel'];
+    function StatisticsModel($http, StewardService, HistoryModel) {
         var service = StewardService;
         var urls = {
             queriesPerUser: 'steward/statistics/queriesPerUser',
-            topicsPerState: 'steward/statistics/topicsPerState'
+            topicsPerState: 'steward/statistics/topicsPerState',
+            userQueryHistory: 'steward/queryHistory/user'
         };
 
         // -- public -- //
         return {
             getQueriesPerUser: getQueriesPerUser,
-            getTopicsPerState: getTopicsPerState
+            getTopicsPerState: getTopicsPerState,
+            getUserQueryHistory: getUserQueryHistory
         };
 
         // -- private -- //
         function getQueriesPerUser(startDate, endDate) {
 
             // -- make sure undefined is passed in -- //
             var skip, limit, state, sortBy, sortDirection;
             var url = service.getUrl(urls.queriesPerUser, skip, limit, state,
                 sortBy, sortDirection, startDate, endDate);
 
             return $http.get(url)
                 .then(parseQueriesPerUser, onFail);
         }
 
         function getTopicsPerState(startDate, endDate) {
 
             // -- make sure undefined is passed in -- //
             var skip, limit, state, sortBy, sortDirection;
             var url = service.getUrl(urls.topicsPerState, skip, limit, state,
                 sortBy, sortDirection, startDate, endDate);
 
             return $http.get(url)
                 .then(parseTopicsPerState, onFail);
         }
 
+        function getUserQueryHistory(username) {
+            var queryString = '?asJson=true';
+            var url = service.getUrl(urls.userQueryHistory) + '/' +  username + queryString;
+
+            return $http.get(url)
+                .then(parseQueryHistory, onFail);
+        }
+
         // -- private -- //
         function onFail(result) {
             alert('HTTP Request Fail: ' + result);
         }
 
         function parseQueriesPerUser(result) {
 
             var total = result.data.total,
                 users = result.data.queriesPerUser;
 
             return {
                 total: total,
                 users: users
             };
         }
 
         function parseTopicsPerState(result) {
 
             var total  = result.data.total,
                 states = result.data.topicsPerState;
 
             return {
                 total:  total,
                 states: states
             };
         }
+
+        function parseQueryHistory(result) {
+            return result.data;
+        }
     }
 
 })();
diff --git a/apps/steward-app/src/main/js/app/client/statistics/statistics.model.spec.js b/apps/steward-app/src/main/js/app/client/statistics/statistics.model.spec.js
new file mode 100644
index 000000000..c5cd0e29a
--- /dev/null
+++ b/apps/steward-app/src/main/js/app/client/statistics/statistics.model.spec.js
@@ -0,0 +1,80 @@
+(function () {
+    'use strict';
+
+    describe('statistics model tests', StatisticsModelSpec);
+
+    function StatisticsModelSpec() {
+
+        var statisticsModel, $httpBackend, stewardService;
+
+        function setup() {
+            module('shrine.steward.statistics');
+
+            inject(function (_$httpBackend_, _StatisticsModel_, _StewardService_) {
+                $httpBackend = _$httpBackend_;
+                statisticsModel = _StatisticsModel_;
+                stewardService = _StewardService_;
+                $httpBackend.whenGET(/\.html$/).respond('');
+            });
+        }
+
+        beforeEach(setup);
+
+        it('getQueriesPerUser Test', function () {
+
+            var mockQueriesPerUser = [
+                {
+                    _1: {
+                        fullname: 'Steward Test Researcher Ben',
+                        roles: ['Researcher'],
+                        username: 'ben'
+                    },
+                    _2: 10
+                }
+            ];
+
+            var mockData = {
+                queriesPerUser: mockQueriesPerUser,
+                total: 10
+            };
+
+            var skip, limit, state, sortBy, sortDirection, startDate = 0, endDate = 300000;
+            var url = stewardService.getUrl('steward/statistics/queriesPerUser', skip, limit, state,
+                sortBy, sortDirection, startDate, endDate);
+
+            $httpBackend.expectGET(url).respond(mockData);
+
+
+            statisticsModel.getQueriesPerUser(startDate,endDate)
+                .then(function (data) {
+                    expect(data.total).toBe(mockData.total);
+                });
+
+            $httpBackend.flush();
+        });
+
+        it('getUserQueryHistory Test', function () {
+
+
+            var mockData = { 
+                totalCount: 144, 
+                skipped: 0, 
+                queryRecords: []
+            };
+
+            var username = 'ben';
+            var queryString = '?asJson=true';
+            var url = stewardService.getUrl('steward/queryHistory/user') + '/' +  username + queryString;
+
+            $httpBackend.expectGET(url).respond(mockData);
+
+            statisticsModel.getUserQueryHistory(username)
+                .then(function (data) {
+                    expect(data.totalCount).toBe(mockData.totalCount);
+                });
+
+            $httpBackend.flush();
+
+        });
+    }
+})();
diff --git a/apps/steward-app/src/main/js/app/client/statistics/statistics.service.js b/apps/steward-app/src/main/js/app/client/statistics/statistics.service.js
new file mode 100644
index 000000000..e69de29bb
diff --git a/apps/steward-app/src/main/js/app/client/steward.provider.spec.js b/apps/steward-app/src/main/js/app/client/steward.provider.spec.js
index 69860c28c..e42091f60 100644
--- a/apps/steward-app/src/main/js/app/client/steward.provider.spec.js
+++ b/apps/steward-app/src/main/js/app/client/steward.provider.spec.js
@@ -1,49 +1,48 @@
 (function () {
     'use strict';
 
     describe('shrine.steward StewardProvider tests', StewardProviderSpec);
 
     function StewardProviderSpec() {
 
 
         // -- vars -- //
         var stewardProvider
 
         //http://stackoverflow.com/questions/14771810/how-to-test-angularjs-custom-provider
         function setup() {
             /**
              * Create a mock module and inject the provider
              * in order to initialize the stewardProvider.
              *  */ 
             angular.module('shrine.steward.mock',[])
             .config(function(StewardServiceProvider) {
                 stewardProvider = StewardServiceProvider;
             });
 
             module('shrine.steward', 'shrine.steward.mock');
             inject(function () {
             });
         }
 
         //-- setup --/
         beforeEach(setup);
 
-        
         it('StewardProvider should exist.', function () {
             expect(stewardProvider).toBeDefined();
         });
 
         it('$get should yield an instance of StewardService', function () {
             var shrineService = stewardProvider.$get();
             expect(shrineService.setAppUser).toBeDefined();
         });
 
         it('configureHttpProvider should be defined', function () {
             expect(stewardProvider.configureHttpProvider).toBeDefined();
         });
 
         it('constants should be defined', function () {
             expect(stewardProvider.constants).toBeDefined();
         });
     }
 })();
diff --git a/commons/util/pom.xml b/commons/util/pom.xml
index 583e59cf2..ee14d443b 100644
--- a/commons/util/pom.xml
+++ b/commons/util/pom.xml
@@ -1,103 +1,98 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 	<name>SHRINE Utility Code</name>
 	<artifactId>shrine-util</artifactId>
 	<packaging>jar</packaging>
 	<parent>
 		<groupId>net.shrine</groupId>
 		<artifactId>shrine-base</artifactId>
 		<version>1.22.2.0-SNAPSHOT</version>
 		<relativePath>../../pom.xml</relativePath>
 	</parent>
 
 	<dependencies>
 		<dependency>
 			<groupId>com.typesafe.slick</groupId>
 			<artifactId>slick_2.11</artifactId>
 			<version>${slick-version}</version>
 		</dependency>
 		<dependency>
 			<groupId>org.slf4j</groupId>
 			<artifactId>slf4j-simple</artifactId>
 			<version>1.6.4</version>
 		</dependency>
-		<dependency>
-            <groupId>org.apache.commons</groupId>
-            <artifactId>commons-email</artifactId>
-            <version>1.2</version>
-        </dependency>
 		<dependency>
 			<groupId>net.liftweb</groupId>
 			<artifactId>lift-json_${scala-major-version}</artifactId>
 			<exclusions>
 				<!-- Exclude scalap, because it pulls in an old version of scala-compiler -->
 				<exclusion>
 					<groupId>org.scala-lang</groupId>
 					<artifactId>scalap</artifactId>
 				</exclusion>
 			</exclusions>
 		</dependency>
 
 		<!-- Replace older transitive dependency pulled in by Lift-Json -->
 		<dependency>
 			<groupId>org.scala-lang</groupId>
 			<artifactId>scalap</artifactId>
 			<version>${scala-version}</version>
 		</dependency>
 		
 		<dependency>
 			<groupId>log4j</groupId>
 			<artifactId>log4j</artifactId>
 		</dependency>
 		
 		<dependency>
 			<groupId>net.shrine</groupId>
 			<artifactId>shrine-test-commons</artifactId>
 			<version>${project.version}</version>
 			<type>test-jar</type>
 			<scope>test</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.json4s</groupId>
 			<artifactId>json4s-native_2.11</artifactId>
 			<version>${json4s-version}</version>
 		</dependency>
 		<dependency>
 			<groupId>com.h2database</groupId>
 			<artifactId>h2</artifactId>
 			<scope>test</scope>
 		</dependency>
 	</dependencies>
 
 	<build>
 		<sourceDirectory>src/main/scala</sourceDirectory>
 		<testSourceDirectory>src/test/scala</testSourceDirectory>
 		<resources>
 			<resource>
 				<directory>src/main/resources</directory>
 				<filtering>true</filtering>
 				<includes>
 					<include>shrine-versions.properties</include>
 				</includes>
 			</resource>
 		</resources>
 		<plugins>
 			<plugin>
 				<groupId>net.alchim31.maven</groupId>
 				<artifactId>scala-maven-plugin</artifactId>
 			</plugin>
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-jar-plugin</artifactId>
 				<version>2.6</version>
 				<executions>
 					<execution>
 						<goals>
 							<goal>test-jar</goal>
 						</goals>
 					</execution>
 				</executions>
 			</plugin>
 		</plugins>
 	</build>
 </project>