{"info":{"_postman_id":"955b9476-b925-427d-ab32-dc2ae6d8a23d","name":"Lexigram Clinical NLP APIs","description":"<html><head></head><body><p><b>Welcome to the Lexigram documentation site</b>. Below you'll find our API documentation and a few interactive components that allow you to play directly with our data endpoints (no code required) before obtaining your very own API Key and unleashing the power of Lexigram on your data! Please direct any questions or requests to <a></a><a href=\"mailto:support@lexigram.io\">support@lexigram.io</a>.</p>\n<h1 id=\"quick-start\">Quick Start</h1>\n<p>Below you'll find our API documentation and a few interactive components that allow you to interact directly with our data endpoints (no code required). To try it out, get an API key from the Get Access link in the menu. Please direct any questions or requests to <a href=\"mailto:support@lexigram.io\">support@lexigram.io</a>.</p>\n<ul>\n<li>Get your <a href=\"https://app.lexigram.io\">API Key</a>.</li>\n<li>Try out our <a href=\"http://demo.lexigram.io\">UI Demo Playground</a>.</li>\n<li>Check out our <a href=\"https://github.com/lexigram/example-code\">example code</a>.</li>\n<li>Are you a Postman user? We have a <a href=\"#postman-collection\">Collection</a> available.</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>You can use your API Key (an encrypted JWT), available from <a href=\"https://app.lexigram.io\">https://app.lexigram.io</a>, to obtain an expiring token that can be used to authenticate your user with the API.</p>\n<p>To obtain the token, make an empty <code>GET</code> request to the <code>/auth/token</code> using the <code>Authorization</code> header with a value that is set to <code>Bearer {your_api_key}</code>. In the response, the expiring token will be in the <code>token</code> property. You can then use that in the <code>Authorization</code> header until it expires and you have to request another token.</p>\n<h1 id=\"concept-classification\">Concept Classification</h1>\n<p>The matched concepts returned by the extraction endpoints are grouped according to the following main types:</p>\n<ul>\n<li>Disease</li>\n<li>Mental Health</li>\n<li>Drug</li>\n<li>Procedure</li>\n<li>Anatomy</li>\n<li>Other</li>\n</ul>\n<p>For each of the main classification types, there are different sublevels. For instance, <em>Glaucoma</em> has main classification <em>Disease</em> and subclassification <em>Eye Diseases</em>.</p>\n<p>It is possible to have multiple subclassifications depending on how many hierarchy branches connect into a concept. For instance, <em>Tachycardia</em> has main classification <em>Disease</em> and subclassifications <em>Cardiovascular Diseases</em> and <em>Symptom</em>. For the Disease main classification, one can expect to see as many subclassifications as medical specialties and/or medical systems.</p>\n<p>The Drug main classification is similarly subclassificasified into active ingredients of drugs, according to the organ or system on which they act. For instance, the drug <em>Tegretol</em> is subclassified as <em>Nervous System</em>. Also, multiple subclassifications can be applied to drugs. For instance: <em>Diclofenac Potassium</em> is subclassified as <em>Sensory Organs</em>, <em>Musculoskeletal</em> and <em>Dermatological</em>.</p>\n<p>Procedure is subclassified as: <em>Diagnosis</em>, <em>Therapeutics</em>, <em>Anesthesia</em>, <em>Surgical</em>, <em>Investigative</em> and <em>Dentistry</em>. For instance, <em>Blood Transfusion</em> is <em>Therapeutics</em> and <em>Auscultation</em> is <em>Diagnosis</em>.</p>\n<p><em>Anatomy</em> is subclassified with each anatomical system plus additional categories for things like <em>Fluids</em>, <em>Cells</em>, <em>Tissues</em> and <em>Viruses</em> and <em>Bacterias</em>. The Anatomy can have multiple subclassifications, for instance <em>Oropharynx</em> has <em>Stomatognathic System</em> and <em>Respiratory System</em>.</p>\n<p><em>Mental Health</em> is subclassified with <em>Mental Disorders</em>, <em>Behaviors</em>, <em>Psychological</em> <em>Phenomena</em> and <em>Disciplines</em>. <em>Psychological Phenomena</em> are concepts like <em>Sleep</em>, <em>Hearing</em> or <em>Appetite</em>. <em>Behaviours</em> include concepts like <em>Anxiety</em>, <em>Affect</em>, <em>Depression</em> and <em>Feelings</em>. <em>Mental Disorders</em> encompasses the psychiatric illnesses manifested by breakdowns in the adaptational process. Examples of <em>Mental Disorders</em> are: <em>Depressive Disorder</em>, <em>Dementia</em> or <em>Alcoholism</em>.</p>\n<p>The “<em>Other</em>” classification are other related medical concepts that cannot be classified in the the aforementioned main classification categories. For example: <em>Office Visit</em> is classified as <em>Other</em> with subclassifications <em>Organization</em> and <em>Administration</em>.</p>\n<h1 id=\"sections\">Sections</h1>\n<p>Notes gathered from an EHR will frequently be divided into distinct sections. These sections can help to provide additional information about the concepts that they contain. For example, your application may want to increase or decrease the relevance of matches found in certain sections.</p>\n<p>Sections are provided in a top-level attribute on the extraction response, titled <code>sections</code>. Using the information in each section object, you can align matched concepts to their corresponding section.</p>\n<p>For the input text <code>Chief Complaint: worsening chest pain and shortness of breath</code>, we would see the following section extracted:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"sections\": [\n    {\n      \"id\": \"chief-complaint\",\n      \"label\": \"chief complaint\",\n      \"type\": \"SECTION\",\n      \"sectionId\": 0,\n      \"explanation\": {\n        \"begin\": 0,\n        \"end\": 15,\n        \"matchedTokens\": [\n          {\n            \"token\": \"Chief\",\n            \"position\": 0\n          },\n          {\n            \"token\": \"Complaint\",\n            \"position\": 2\n          }\n        ],\n        \"fuzzyValues\": []\n      },\n      \"contexts\": []\n    }\n  ]\n</code></pre>\n<p>  Using the <code>section.explanation.end</code> position, we can see that any concept match that has <code>concept.explanation.begin</code> greater than 15 is contained within this section.</p>\n<p>  For documents with multiple sections, the begin and end boundary for each individual section can be determined by using the <code>explanation.end</code> information from the target section and the <code>explanation.begin</code> information from the next section.</p>\n<h1 id=\"lists\">Lists</h1>\n<p>Patient charts frequently contain data presented as lists, including problem, medication, medical history, and complaint lists. Lexigram examines text provided to the API in order to expose these lists, and surfaces information about the list itself, its position, contents, and matched concepts.</p>\n<p>Lists are a beta feature and are not enabled by default. They can be enabled by passing the parameter <code>with-lists</code> set to true for GET requests. For a POST, include <code>\"withLists\": true</code> in the JSON request body.</p>\n<p>Information about lists is returned on a top-level <code>lists</code> attribute. For the example text <code>PATIENT CONDITIONS 1) Hypertension 2) ADHD 3) Diabetes</code>, the response would include:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"lists\": [\n  {\n    \"id\": 0,\n    \"explanation\": {\n      \"begin\": 22,\n      \"end\": 54,\n      \"itemCount\": 3\n    },\n    \"items\": [\n      {\n        \"number\": 1,\n        \"label\": \"1)\",\n        \"explanation\": {\n          \"begin\": 22,\n          \"end\": 34,\n          \"matchesIndex\": [\n            0\n          ]\n        }\n      },\n      {\n        \"number\": 2,\n        \"label\": \"2)\",\n        \"explanation\": {\n          \"begin\": 38,\n          \"end\": 42,\n          \"matchesIndex\": [\n            1\n          ]\n        }\n      },\n      {\n        \"number\": 3,\n        \"label\": \"3)\",\n        \"explanation\": {\n          \"begin\": 46,\n          \"end\": 54,\n          \"matchesIndex\": [\n            2\n          ]\n        }\n      }\n    ]\n  }\n]\n</code></pre>\n<p>As with Sections, the overlapping position of the list item begin and end can be used to determine which concept matches fall within which list item. For example, this match is returned for the example text above:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"lxg-3ac43c43af84\",\n  \"label\": \"Hypertension\",\n  \"type\": \"ENTITY\",\n  \"explanation\": {\n    \"begin\": 22,\n    \"end\": 34,\n    \"matchedTokens\": [\n      {\n        \"token\": \"Hypertension\",\n        \"position\": 6\n      }\n    ],\n    \"fuzzyValues\": []\n  },\n  \"contexts\": [],\n  \"classification\": {\n    \"main\": \"Disease\",\n    \"subs\": [\n      {\n        \"id\": \"lxg-7f69fbb334e4\",\n        \"label\": \"Vascular Diseases\"\n      },\n      {\n        \"id\": \"lxg-0eeec8ac29e4\",\n        \"label\": \"Cardiovascular Diseases\"\n      }\n    ]\n  }\n}\n</code></pre>\n<p>We can use the match <code>begin</code> and <code>end</code> to determine that this match falls within the list item with <code>number</code> equal to one.</p>\n<h1 id=\"demographics\">Demographics</h1>\n<p>The Lexigram API will extract and normalize patient demographics, which include gender, age, ethnicity, and race. These demographics are frequently included in reporting and are used in calculating risk stratification and other patient data calculation algorithms.</p>\n<p>These demographics frequently appear clustered in charts, and to avoid ambiguity, the Lexigram API will look for these clusters when extracting demographic data. For example, the statement <code>The patient is a 55 year old Caucasian male</code>, would result in the following concept matches:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"matches\": [\n    {\n      \"id\": \"age\",\n      \"label\": \"age\",\n      \"type\": \"DEMOGRAPHIC\",\n      \"explanation\": {\n        \"begin\": 17,\n        \"end\": 28,\n        \"matchedTokens\": [\n          {\n            \"token\": \"55\",\n            \"position\": 8\n          },\n          {\n            \"token\": \"year\",\n            \"position\": 10\n          },\n          {\n            \"token\": \"old\",\n            \"position\": 12\n          }\n        ],\n        \"subtype\": \"age\",\n        \"value\": \"55\",\n        \"fuzzyValues\": []\n      },\n      \"contexts\": []\n    },\n    {\n      \"id\": \"white\",\n      \"label\": \"white\",\n      \"type\": \"DEMOGRAPHIC\",\n      \"explanation\": {\n        \"begin\": 29,\n        \"end\": 38,\n        \"matchedTokens\": [\n          {\n            \"token\": \"Caucasian\",\n            \"position\": 14\n          }\n        ],\n        \"subtype\": \"race\",\n        \"value\": \"white\",\n        \"fuzzyValues\": []\n      },\n      \"contexts\": []\n    },\n    {\n      \"id\": \"male\",\n      \"label\": \"male\",\n      \"type\": \"DEMOGRAPHIC\",\n      \"explanation\": {\n        \"begin\": 39,\n        \"end\": 43,\n        \"matchedTokens\": [\n          {\n            \"token\": \"male\",\n            \"position\": 16\n          }\n        ],\n        \"subtype\": \"gender\",\n        \"value\": \"male\",\n        \"fuzzyValues\": []\n      },\n      \"contexts\": []\n    }\n  ]\n}\n</code></pre>\n<h1 id=\"dates\">Dates</h1>\n<p>Dates in patient charts are used to track the onset of conditions, periods of medication usage, and other information about patient conditions. The API will extract dates in a variety of formats that are presented in the text.</p>\n<p>For example, the following statements will all result in a date extraction that has been normalized to <code>2018-11-13</code>:</p>\n<ul>\n<li>The patient first presented with diabetes Nov 13, 2018</li>\n<li>The patient first presented with diabetes 11/13/18</li>\n<li>The patient first presented with diabetes 2018-11-13</li>\n</ul>\n<p>The date extraction appears as below in the concept matches:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"date\",\n  \"label\": \"date\",\n  \"type\": \"DATE\",\n  \"explanation\": {\n    \"begin\": 42,\n    \"end\": 54,\n    \"matchedTokens\": [\n      {\n        \"token\": \"Nov\",\n        \"position\": 12\n      },\n      {\n        \"token\": \"13\",\n        \"position\": 14\n      },\n      {\n        \"token\": \",\",\n        \"position\": 15\n      },\n      {\n        \"token\": \"2018\",\n        \"position\": 17\n      }\n    ],\n    \"subtype\": \"date\",\n    \"value\": \"2018-11-13\",\n    \"fuzzyValues\": []\n  },\n  \"contexts\": []\n}\n</code></pre>\n<p>Dated problem and medication lists are also good areas to surface information on a patient's medical history, and can provide insight into the progression of a condition of interest.</p>\n<p>Unfortunately, the appearance of dates in chart text, especially for charts that have been faxed, scanned, or otherwise processed via OCR, is incredibly ambiguous. Frequently, the date a chart was printed or faxed will appear alongside the date of a visit or the start of a prescription. Dates of physician attestations, physician and nurse's note sign-offs, and many other dates that are not relevant to patient conditions can appear in the data.</p>\n<p>Because of this, we caution users to be mindful of how they are utilizing the date extractions we present via the API. We are happy to discuss issues related to date extraction and how to best situate these extractions in your application in more detail, please contact <a href=\"mailto:support@lexigram.io\">support@lexigram.io</a> to arrange a call.</p>\n<h1 id=\"contexts-explained\">Contexts Explained</h1>\n<p>Concept matches are enriched with a context object that contain additional information of the \"surroundings\" for a particular extraction,  e.g. <code>no evidence of pneumonia</code> is considered a negated definite statement and the extraction match will contain the following context object:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"contexts\": [\n    {\n        \"type\": \"negative\",\n        \"subtype\": \"definite\",\n        \"explanation\": {\n            \"begin\": 0,\n            \"end\": 14,\n            \"matchedTokens\": [\n                {\n                    \"token\": \"no\",\n                    \"position\": 0\n                },\n                {\n                    \"token\": \"evidence\",\n                    \"position\": 2\n                },\n                {\n                    \"token\": \"of\",\n                    \"position\": 4\n                }\n            ],\n            \"fuzzyValues\": [],\n            \"triggerId\": \"N0000057\",\n            \"triggerLabel\": \"no evidence\"\n        }\n    }\n]\n</code></pre>\n<p>The two main data attributes in that object are <code>type</code> and  <code>subtype</code> which contain the context classification. Use <code>type</code> and <code>subtype</code> if your applications only care about blacklisting or whitelisting certain types of context, or if you are using the context as a feature for a downstream machine learning process. The other attributes in that object represent the text provenance of where the context trigger was found.</p>\n<p>The list of contexts with examples are described in the sections below.</p>\n<h1 id=\"negation-and-hypothetical\">Negation and Hypothetical</h1>\n<p>Physicians use specific language to discuss the conditions that a patient may or may not have. The following are categories of negation and hypothetical contexts that illustrate the variety of ways in which these conditions are documented.</p>\n<h3 id=\"affirmed-definite\">Affirmed Definite</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"type\" : \"affirmed\", \"subtype\": \"definite\"}\n</code></pre>\n<ul>\n<li>positive examination for COPD</li>\n<li>BMD shows definite osteoporosis</li>\n<li>pneumothorax is seen</li>\n</ul>\n<h3 id=\"negative-definite\">Negative Definite</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"type\" : \"negative\", \"subtype\": \"definite\"}\n</code></pre>\n<ul>\n<li>no evidence of pneumonia</li>\n<li>BMD shows obvious signs of osteoporosis</li>\n<li>never had COPD</li>\n</ul>\n<h3 id=\"speculative-affirmed\">Speculative Affirmed</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"type\" : \"speculative\", \"subtype\": \"affirmed\"}\n</code></pre>\n<ul>\n<li>I believe Pt has high blood pressure</li>\n<li>It could be infection</li>\n<li>Not improbable it was caused by hemorrhage</li>\n</ul>\n<h3 id=\"speculative-negative\">Speculative Negative</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"type\" : \"speculative\", \"subtype\": \"negative\"}\n</code></pre>\n<ul>\n<li>Evidence does not suggest COPD</li>\n<li>not known to have depression</li>\n</ul>\n<h3 id=\"speculative-uncertain\">Speculative Uncertain</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"type\" : \"speculative\", \"subtype\": \"uncertain\"}\n</code></pre>\n<ul>\n<li>It could be either diverticulitis or appendicitis</li>\n<li>Find it difficult to assess for the cause of abdominal pain given patient's description</li>\n</ul>\n<h3 id=\"speculative-future\">Speculative Future</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"type\" : \"speculative\", \"subtype\": \"future\"}\n</code></pre>\n<ul>\n<li>Pt is at risk for developing diabetes</li>\n<li>Look out for increased pain</li>\n</ul>\n<h3 id=\"speculative-indication\">Speculative Indication</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"type\" : \"speculative\", \"subtype\": \"indication\"}\n</code></pre>\n<ul>\n<li>Assessment for kidney cancer</li>\n<li>Rule out for enterocolitis</li>\n</ul>\n<h1 id=\"vitals-and-lab-values\">Vitals and Lab Values</h1>\n<p>The API will extract vitals and lab values, making it simple to track weight, height, BMI, blood pressure readings, HbA1c, blood glucose, metabolic panels, lipid panels, and more.</p>\n<p>When doing these extractions, the API will align the measurement type (height), the value (180), and the unit (centimeters). For this example, using the text <code>Height 180 cm</code> will result in the following extraction:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"matches\": [\n    {\n      \"id\": \"height\",\n      \"label\": \"height\",\n      \"type\": \"MEASUREMENT\",\n      \"explanation\": {\n        \"begin\": 0,\n        \"end\": 10,\n        \"matchedTokens\": [\n          {\n            \"token\": \"Height\",\n            \"position\": 0\n          },\n          {\n            \"token\": \"180\",\n            \"position\": 2\n          }\n        ],\n        \"subtype\": \"height\",\n        \"value\": \"180.0\",\n        \"unit\": \"centimeter\",\n        \"fuzzyValues\": []\n      },\n      \"contexts\": []\n    }\n  ]\n}\n</code></pre>\n<p>When working with charts that have gone through an OCR process, it is common to find several numeric values clustered in a section describing vitals, without clear positioning to indicate which value corresponds with which measurement type. In these cases, the API will return a list of values in the <code>fuzzyValues</code> attribute, allowing the user to further refine these values as needed.</p>\n<h1 id=\"medication\">Medication</h1>\n<p>Where available, the API will extract detailed information about medication from patient charts. These are extracted as distinct contexts for a given drug and includes type (branded vs generic), formulation, ingredients, dosage strength, route, and form.</p>\n<p>Medications that contain multiple ingredients will include each ingredient, along with the ingredient strength for the given formulation, provided that a strength is present and can be extracted.</p>\n<p>For a generic drug, this is the information that is extracted (input: <code>Lisinopril 20 mg oral tab</code>):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"matches\": [\n    {\n      \"id\": \"lxg-41490a0f260b\",\n      \"label\": \"Lisinopril\",\n      \"type\": \"DRUG\",\n      \"explanation\": {\n        \"begin\": 0,\n        \"end\": 10,\n        \"matchedTokens\": [\n          {\n            \"token\": \"Lisinopril\",\n            \"position\": 0\n          }\n        ],\n        \"fuzzyValues\": []\n      },\n      \"contexts\": [\n        {\n          \"type\": \"medication\",\n          \"subtype\": \"form\",\n          \"explanation\": {\n            \"begin\": 22,\n            \"end\": 25,\n            \"matchedTokens\": [\n              {\n                \"token\": \"tab\",\n                \"position\": 8\n              }\n            ],\n            \"fuzzyValues\": [],\n            \"triggerId\": \"385055001\",\n            \"triggerLabel\": \"tablet\"\n          }\n        },\n        {\n          \"type\": \"medication\",\n          \"subtype\": \"ingredients\",\n          \"ingredients\": [\n            {\n              \"name\": \"Lisinopril\",\n              \"id\": \"lxg-41490a0f260b\",\n              \"strength\": {\n                \"value\": 20,\n                \"unit\": \"milligram\"\n              }\n            }\n          ]\n        },\n        {\n          \"type\": \"medication\",\n          \"subtype\": \"route\",\n          \"explanation\": {\n            \"begin\": 17,\n            \"end\": 21,\n            \"matchedTokens\": [\n              {\n                \"token\": \"oral\",\n                \"position\": 6\n              }\n            ],\n            \"fuzzyValues\": [],\n            \"triggerId\": \"26643006\",\n            \"triggerLabel\": \"oral\"\n          }\n        },\n        {\n          \"type\": \"medication\",\n          \"subtype\": \"generic\",\n          \"explanation\": {\n            \"begin\": 0,\n            \"end\": 10,\n            \"matchedTokens\": [\n              {\n                \"token\": \"Lisinopril\",\n                \"position\": 0\n              }\n            ],\n            \"fuzzyValues\": [],\n            \"triggerId\": \"lxg-41490a0f260b\",\n            \"triggerLabel\": \"Lisinopril\"\n          }\n        }\n      ],\n      \"classification\": {\n        \"main\": \"Drug\",\n        \"subs\": [\n          {\n            \"id\": \"lxg-a4ede3447f55\",\n            \"label\": \"AGENTS ACTING ON THE RENIN-ANGIOTENSIN SYSTEM\"\n          },\n          {\n            \"id\": \"lxg-8b7dbf4bc1d9\",\n            \"label\": \"ACE INHIBITORS, PLAIN\"\n          },\n          {\n            \"id\": \"lxg-04b05fd06b05\",\n            \"label\": \"CARDIOVASCULAR SYSTEM\"\n          }\n        ]\n      }\n    }\n  ]\n}\n</code></pre>\n<p>For a branded drug, this is the information that is extracted (input: <code>HYDROcodone/acetaminophen (NORCO 10) 10mg/325mg Tab 60 Tab 0</code>):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"matches\": [\n    {\n      \"id\": \"lxg-322820454fbc\",\n      \"label\": \"Norco\",\n      \"type\": \"DRUG\",\n      \"explanation\": {\n        \"begin\": 27,\n        \"end\": 32,\n        \"matchedTokens\": [\n          {\n            \"token\": \"NORCO\",\n            \"position\": 3\n          }\n        ],\n        \"fuzzyValues\": []\n      },\n      \"contexts\": [\n        {\n          \"type\": \"medication\",\n          \"subtype\": \"form\",\n          \"explanation\": {\n            \"begin\": 48,\n            \"end\": 51,\n            \"matchedTokens\": [\n              {\n                \"token\": \"Tab\",\n                \"position\": 9\n              }\n            ],\n            \"fuzzyValues\": [],\n            \"triggerId\": \"385055001\",\n            \"triggerLabel\": \"tablet\"\n          }\n        },\n        {\n          \"type\": \"medication\",\n          \"subtype\": \"ingredients\",\n          \"ingredients\": [\n            {\n              \"name\": \"Acetaminophen 325 MG\",\n              \"id\": \"lxg-a499f0cc3e75\",\n              \"strength\": {\n                \"value\": 325,\n                \"unit\": \"milligram\"\n              }\n            },\n            {\n              \"name\": \"Hydrocodone Bitartrate 10 MG\",\n              \"id\": \"lxg-a96f583b72f5\",\n              \"strength\": {\n                \"value\": 10,\n                \"unit\": \"milligram\"\n              }\n            }\n          ]\n        },\n        {\n          \"type\": \"medication\",\n          \"subtype\": \"brand\",\n          \"explanation\": {\n            \"begin\": 27,\n            \"end\": 32,\n            \"matchedTokens\": [\n              {\n                \"token\": \"NORCO\",\n                \"position\": 3\n              }\n            ],\n            \"fuzzyValues\": [],\n            \"triggerId\": \"lxg-322820454fbc\",\n            \"triggerLabel\": \"Norco\"\n          }\n        }\n      ],\n      \"classification\": {\n        \"main\": \"Drug\",\n        \"subs\": [\n          {\n            \"id\": \"lxg-261ecc3eb835\",\n            \"label\": \"ANALGESICS\"\n          },\n          {\n            \"id\": \"lxg-f9460f837191\",\n            \"label\": \"COUGH SUPPRESSANTS, EXCL. COMBINATIONS WITH EXPECTORANTS\"\n          },\n          {\n            \"id\": \"lxg-e0fa575f13a0\",\n            \"label\": \"NERVOUS SYSTEM\"\n          },\n          {\n            \"id\": \"lxg-493406c1bb02\",\n            \"label\": \"RESPIRATORY SYSTEM\"\n          },\n          {\n            \"id\": \"lxg-b165765b7c80\",\n            \"label\": \"COUGH AND COLD PREPARATIONS\"\n          },\n          {\n            \"id\": \"lxg-7240c6128ed3\",\n            \"label\": \"OTHER ANALGESICS AND ANTIPYRETICS\"\n          }\n        ]\n      }\n    }\n  ]\n}\n</code></pre>\n<h1 id=\"anatomy\">Anatomy</h1>\n<p>Many diseases or procedures occur in the context of a particular body part or system. Where those occur in the text, the API will present the anatomy part as a context of the disease.</p>\n<p>For example, the statement <code>The patient has a skin abscess</code> will result in the concept match <code>abscess</code> contextualized with the anatomy concept <code>skin</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"lxg-88b88605857f\",\n  \"label\": \"Abscess\",\n  \"type\": \"ENTITY\",\n  \"explanation\": {\n    \"begin\": 23,\n    \"end\": 30,\n    \"matchedTokens\": [\n      {\n        \"token\": \"abscess\",\n        \"position\": 10\n      }\n    ],\n    \"fuzzyValues\": []\n  },\n  \"contexts\": [\n    {\n      \"type\": \"anatomy\",\n      \"subtype\": \"anatomy\",\n      \"explanation\": {\n        \"begin\": 18,\n        \"end\": 22,\n        \"matchedTokens\": [\n          {\n            \"token\": \"skin\",\n            \"position\": 8\n          }\n        ],\n        \"fuzzyValues\": [],\n        \"triggerId\": \"anatomy-skin\",\n        \"triggerLabel\": \"skin\"\n      }\n    }\n  ],\n  \"classification\": {\n    \"main\": \"Disease\",\n    \"subs\": [\n      {\n        \"id\": \"lxg-ecb807e05bc2\",\n        \"label\": \"Infection\"\n      },\n      {\n        \"id\": \"lxg-4ebfcb6de390\",\n        \"label\": \"Pathological Conditions, Signs and Symptoms\"\n      },\n      {\n        \"id\": \"lxg-7a3777afaaa9\",\n        \"label\": \"Pathologic Processes\"\n      },\n      {\n        \"id\": \"lxg-ae7931d19353\",\n        \"label\": \"Suppuration\"\n      },\n      {\n        \"id\": \"lxg-8187cb28c903\",\n        \"label\": \"Inflammation\"\n      },\n      {\n        \"id\": \"lxg-16235b458c6e\",\n        \"label\": \"Bacterial Infections and Mycoses\"\n      }\n    ]\n  }\n}\n</code></pre>\n<h1 id=\"history\">History</h1>\n<p>When working with a patient, physicians will capture a patient and family history, which can help provide insight to the patient's current status. When extracting conditions from chart data, it is important to avoid attributing conditions that exist in a patient's family history to the patient themselves.</p>\n<p>The following categories allow users to determine the distinct historical context being used in physical documentation.</p>\n<h3 id=\"patient-history\">Patient History</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"type\" : \"history\", \"subtype\": \"patient\"}\n</code></pre>\n<ul>\n<li>Pt has a history of depression</li>\n<li>h/o pneumonia, COPD and hypertension</li>\n</ul>\n<p>It also propagates section context to entities in close proximity to the header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>PATIENT HISTORY:\n\n- Alcoholism\n- Depression\n</code></pre><h3 id=\"family-history\">Family History</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"type\" : \"history\", \"subtype\": \"family\"}\n</code></pre>\n<ul>\n<li>Family history of breast cancer and coronary artery disease</li>\n</ul>\n<p>And it also propagates with section headers:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>FAMILY HISTORY:\n\n- Depression\n- Breast Cancer\n- Coronary artery disease\n</code></pre><h1 id=\"allergies\">Allergies</h1>\n<p>Knowing a patient's allergies can be an important part of ensuring patient safety. The API will surface allergies to known substances by providing an allergy context.</p>\n<p>Example for input <code>Patient has allergy to penicillin</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"matches\": [\n    {\n      \"id\": \"lxg-f8833f946643\",\n      \"label\": \"Penicillin\",\n      \"type\": \"ENTITY\",\n      \"explanation\": {\n        \"begin\": 23,\n        \"end\": 33,\n        \"matchedTokens\": [\n          {\n            \"token\": \"penicillin\",\n            \"position\": 8\n          }\n        ],\n        \"fuzzyValues\": []\n      },\n      \"contexts\": [\n        {\n          \"type\": \"allergy\",\n          \"subtype\": \"allergy\",\n          \"explanation\": {\n            \"begin\": 12,\n            \"end\": 22,\n            \"matchedTokens\": [\n              {\n                \"token\": \"allergy\",\n                \"position\": 4\n              },\n              {\n                \"token\": \"to\",\n                \"position\": 6\n              }\n            ],\n            \"fuzzyValues\": [],\n            \"triggerId\": \"allergy-forward\",\n            \"triggerLabel\": \"allergy to\"\n          }\n        }\n      ]\n    }\n  ]\n}\n</code></pre>\n<h1 id=\"clinic-names\">Clinic Names</h1>\n<p>Clinical concepts are frequently mentioned in the name of medical establishments, for example \"The Diabetes Center of Dallas\" or \"Heart Wellness Center\". The API will contextualize these with type <code>clinic-name</code> and <code>negative</code>. <strong>Note</strong>: this feature is experimental and needs to be enabled by passing <code>withClinicNames: true</code> in the JSON body.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"matches\": [\n    {\n      \"id\": \"lxg-45528ef7190c\",\n      \"label\": \"Heart\",\n      \"type\": \"ENTITY\",\n      \"explanation\": {\n        \"fuzzyValues\": [],\n        \"begin\": 0,\n        \"end\": 5,\n        \"matchedTokens\": [\n          {\n            \"token\": \"Heart\",\n            \"position\": 0\n          }\n        ]\n      },\n      \"contexts\": [\n        {\n          \"type\": \"clinic-name\",\n          \"subtype\": \"possible-clinic-name\",\n          \"explanation\": {\n            \"fuzzyValues\": [],\n            \"begin\": -1,\n            \"end\": 30,\n            \"matchedTokens\": [\n              {\n                \"token\": \"internal-contextualizer-context\",\n                \"position\": -1\n              }\n            ],\n            \"triggerId\": \"cn-ctxt\",\n            \"triggerLabel\": \"cn-ctxt\"\n          }\n        },\n        {\n          \"type\": \"negative\",\n          \"subtype\": \"possible-clinic-name\",\n          \"explanation\": {\n            \"fuzzyValues\": [],\n            \"begin\": -1,\n            \"end\": 30,\n            \"matchedTokens\": [\n              {\n                \"token\": \"internal-contextualizer-context\",\n                \"position\": -1\n              }\n            ],\n            \"triggerId\": \"cn-ctxt\",\n            \"triggerLabel\": \"cn-ctxt\"\n          }\n        }\n      ],\n      \"classification\": {\n        \"main\": \"Anatomy\",\n        \"subs\": [\n          {\n            \"id\": \"lxg-032b4d0893da\",\n            \"label\": \"Anatomy\"\n          },\n          {\n            \"id\": \"lxg-180eae181bfe\",\n            \"label\": \"Cardiovascular System\"\n          }\n        ]\n      }\n    }\n  ],\n  \"codes\": []\n}\n</code></pre><h1 id=\"modifiers\">Modifiers</h1>\n<p>When described in narrative, conditions can have a variety of modifiers that provide additional information about the condition. Sometimes modifiers are substantial enough that they are considered a distinct condition. For example, the modifier <code>pre</code> when used with <code>diabetic</code> is a concept <code>prediabetic</code>, however <code>pre</code> used with <code>hypertension</code> is surfaced as the condition <code>hypertension</code> with a context <code>pre</code>.</p>\n<p>The following modifiers are tracked:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>chronic\nacute\nsub-acute\ntemporary\nbenign\nmalignant\nsomatic\nvisceral\nunknown\ninfantile\nadult\nchildhood\nfamilial\nessential\nprimary\nsecondary\nlocalised\nborderline\nchronic active\nchronic persistent\ndouble\nfloating\nsymmetric\nasymmetric\nsevere\npre\npost\n</code></pre><h1 id=\"endpoint-usage\">Endpoint Usage</h1>\n<p>Using the Authentication approach described below, you can access the following endpoints. To see specific requests and responses that illustrate the different features of the API, select an Example from the drop-down below.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Quick Start","slug":"quick-start"},{"content":"Concept Classification","slug":"concept-classification"},{"content":"Sections","slug":"sections"},{"content":"Lists","slug":"lists"},{"content":"Demographics","slug":"demographics"},{"content":"Dates","slug":"dates"},{"content":"Contexts Explained","slug":"contexts-explained"},{"content":"Negation and Hypothetical","slug":"negation-and-hypothetical"},{"content":"Vitals and Lab Values","slug":"vitals-and-lab-values"},{"content":"Medication","slug":"medication"},{"content":"Anatomy","slug":"anatomy"},{"content":"History","slug":"history"},{"content":"Allergies","slug":"allergies"},{"content":"Clinic Names","slug":"clinic-names"},{"content":"Modifiers","slug":"modifiers"},{"content":"Endpoint Usage","slug":"endpoint-usage"}],"owner":"8682281","collectionId":"955b9476-b925-427d-ab32-dc2ae6d8a23d","publishedId":"Tzz4QKEK","public":true,"customColor":{"top-bar":"5a55a5","right-sidebar":"303030","highlight":"5a55a5"},"publishDate":"2022-01-10T20:00:13.000Z"},"item":[{"name":"Extract Entities","id":"ee8d9d95-50d5-4fbf-8833-d80226b9c8b0","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"The patient has diabetes\",\n    \"withContext\": true,\n    \"withMatchLogic\": \"ignore-length\",\n    \"withText\": true\n}"},"url":"https://api.lexigram.io/v4/extract/entities","description":"<p>The core of our data extraction API. Matches the input text against concepts in the Lexigraph to find and extract concept matches. Maintains pointers to the exact character offsets matched in the text. Identifies the types of the concept (drug, anatomy, problem, etc.), its context (negation, speculation, patient/family history, demographics), and a sectionId if it appears in a known section.</p>\n","auth":{"type":"bearer","bearer":{"token":"<Bearer Token>"},"isInherited":true,"source":{"_postman_id":"955b9476-b925-427d-ab32-dc2ae6d8a23d","id":"955b9476-b925-427d-ab32-dc2ae6d8a23d","name":"Lexigram Clinical NLP APIs","type":"collection"}},"urlObject":{"path":["extract","entities"],"host":["https://api.lexigram.io/v4"],"query":[],"variable":[]}},"response":[{"id":"e0eb81bb-11ef-4479-847f-29035e3da3ca","name":"Match Type: Affirmed, Definite","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"BMD shows definite osteoporosis\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:51:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1257"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-49460fc685f3\",\n            \"label\": \"Bone Density\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 0,\n                \"end\": 3,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"BMD\",\n                        \"position\": 0\n                    }\n                ],\n                \"subtype\": \"acronym\"\n            },\n            \"contexts\": [],\n            \"classification\": {\n                \"main\": \"Other\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-b596ce78bb94\",\n                        \"label\": \"Musculoskeletal Physiological Phenomena\"\n                    },\n                    {\n                        \"id\": \"lxg-d4992a5f9463\",\n                        \"label\": \"Phenomena and Processes\"\n                    },\n                    {\n                        \"id\": \"lxg-f7f2523f4a17\",\n                        \"label\": \"Musculoskeletal and Neural Physiological Phenomena\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"lxg-4f080d0df92f\",\n            \"label\": \"Osteoporosis\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 19,\n                \"end\": 31,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"osteoporosis\",\n                        \"position\": 6\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"affirmed\",\n                    \"subtype\": \"definite\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 10,\n                        \"end\": 18,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"definite\",\n                                \"position\": 4\n                            }\n                        ],\n                        \"triggerId\": \"N0000218\",\n                        \"triggerLabel\": \"definite\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-29cfa6c1302d\",\n                        \"label\": \"Nutritional and Metabolic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-e6f83264c027\",\n                        \"label\": \"Bone Diseases, Metabolic\"\n                    },\n                    {\n                        \"id\": \"lxg-66f0d08f74f4\",\n                        \"label\": \"Musculoskeletal Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-52d375923739\",\n                        \"label\": \"Metabolic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-ed775f4d3601\",\n                        \"label\": \"Bone Diseases\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"02c9bfa3-ae9b-44e2-b89c-b10d88a888fe","name":"Match Type: Negative, Definite","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"no evidence of pneumonia\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:52:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"773"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-8d0cbb9b44fb\",\n            \"label\": \"Pneumonia\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 15,\n                \"end\": 24,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"pneumonia\",\n                        \"position\": 6\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"negative\",\n                    \"subtype\": \"definite\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 14,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"no\",\n                                \"position\": 0\n                            },\n                            {\n                                \"token\": \"evidence\",\n                                \"position\": 2\n                            },\n                            {\n                                \"token\": \"of\",\n                                \"position\": 4\n                            }\n                        ],\n                        \"triggerId\": \"N0000057\",\n                        \"triggerLabel\": \"no evidence\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-ecb807e05bc2\",\n                        \"label\": \"Infections\"\n                    },\n                    {\n                        \"id\": \"lxg-79470d3cbdac\",\n                        \"label\": \"Respiratory Tract Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-e4a353a5133f\",\n                        \"label\": \"Lung Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-e1858478ec6f\",\n                        \"label\": \"Respiratory Tract Infections\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"cc11514d-045d-4c29-9d01-f7b196556573","name":"Match Type: Specualitve, Affirmed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Not improbable it was caused by hemorrhage\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:52:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"669"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-e961437f49a4\",\n            \"label\": \"Hemorrhage\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 32,\n                \"end\": 42,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"hemorrhage\",\n                        \"position\": 12\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"speculative\",\n                    \"subtype\": \"affirmed\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 14,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Not\",\n                                \"position\": 0\n                            },\n                            {\n                                \"token\": \"improbable\",\n                                \"position\": 2\n                            }\n                        ],\n                        \"triggerId\": \"N0000339\",\n                        \"triggerLabel\": \"not improbable\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-7a3777afaaa9\",\n                        \"label\": \"Pathologic Processes\"\n                    },\n                    {\n                        \"id\": \"lxg-4ebfcb6de390\",\n                        \"label\": \"Pathological Conditions, Signs and Symptoms\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"7d1fc432-0ea8-4245-acda-cfa506ce705c","name":"Match Type: Speculative, Negative","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Evidence does not suggest COPD\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:53:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"712"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-ecc8622ef80e\",\n            \"label\": \"Pulmonary Disease, Chronic Obstructive\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 26,\n                \"end\": 30,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"COPD\",\n                        \"position\": 8\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"speculative\",\n                    \"subtype\": \"negative\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 9,\n                        \"end\": 17,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"does\",\n                                \"position\": 2\n                            },\n                            {\n                                \"token\": \"not\",\n                                \"position\": 4\n                            }\n                        ],\n                        \"triggerId\": \"N0000068\",\n                        \"triggerLabel\": \"not\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-e4a353a5133f\",\n                        \"label\": \"Lung Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-79470d3cbdac\",\n                        \"label\": \"Respiratory Tract Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-9be532c3c5ec\",\n                        \"label\": \"Lung Diseases, Obstructive\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"f87c455b-4584-4c14-b7ae-5ed7fccbcbd5","name":"Match Type: Speculative, Uncertain","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Find it difficult to assess for the cause of abdominal pain given patient's description\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:53:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1805"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-794452e5577c\",\n            \"label\": \"Abdominal Pain\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 45,\n                \"end\": 59,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"abdominal\",\n                        \"position\": 18\n                    },\n                    {\n                        \"token\": \"pain\",\n                        \"position\": 20\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"speculative\",\n                    \"subtype\": \"uncertain\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 8,\n                        \"end\": 27,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"difficult\",\n                                \"position\": 4\n                            },\n                            {\n                                \"token\": \"to\",\n                                \"position\": 6\n                            },\n                            {\n                                \"token\": \"assess\",\n                                \"position\": 8\n                            }\n                        ],\n                        \"triggerId\": \"N0000347\",\n                        \"triggerLabel\": \"difficult to assess\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-e3f8f56ca370\",\n                        \"label\": \"Psychophysiology\"\n                    },\n                    {\n                        \"id\": \"lxg-f803a80b4a5a\",\n                        \"label\": \"Analytical, Diagnostic and Therapeutic Techniques, and Equipment\"\n                    },\n                    {\n                        \"id\": \"lxg-e551def94886\",\n                        \"label\": \"Therapeutics\"\n                    },\n                    {\n                        \"id\": \"lxg-5858c1449f00\",\n                        \"label\": \"Behavioral Disciplines and Activities\"\n                    },\n                    {\n                        \"id\": \"lxg-df456212533b\",\n                        \"label\": \"Nervous System Physiological Phenomena\"\n                    },\n                    {\n                        \"id\": \"lxg-ec9ed620acd8\",\n                        \"label\": \"Nervous System Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-5f89f0c8dfd8\",\n                        \"label\": \"Psychiatry and Psychology\"\n                    },\n                    {\n                        \"id\": \"lxg-19e179ba9ab0\",\n                        \"label\": \"Behavioral Sciences\"\n                    },\n                    {\n                        \"id\": \"lxg-f7f2523f4a17\",\n                        \"label\": \"Musculoskeletal and Neural Physiological Phenomena\"\n                    },\n                    {\n                        \"id\": \"lxg-b2f43fe40fd5\",\n                        \"label\": \"Psychological Phenomena\"\n                    },\n                    {\n                        \"id\": \"lxg-8c116363b86e\",\n                        \"label\": \"Signs and Symptoms, Digestive\"\n                    },\n                    {\n                        \"id\": \"lxg-194253448724\",\n                        \"label\": \"Neurologic Manifestations\"\n                    },\n                    {\n                        \"id\": \"lxg-cbccc46acccf\",\n                        \"label\": \"Signs and Symptoms\"\n                    },\n                    {\n                        \"id\": \"lxg-4ebfcb6de390\",\n                        \"label\": \"Pathological Conditions, Signs and Symptoms\"\n                    },\n                    {\n                        \"id\": \"lxg-bb675ffaef1e\",\n                        \"label\": \"Sensation\"\n                    },\n                    {\n                        \"id\": \"lxg-8d011d2046ee\",\n                        \"label\": \"Complementary Therapies\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-28ab8b90a066\",\n                        \"label\": \"Pain\"\n                    },\n                    {\n                        \"id\": \"lxg-350f945f3c32\",\n                        \"label\": \"Mind-Body Therapies\"\n                    },\n                    {\n                        \"id\": \"lxg-d4992a5f9463\",\n                        \"label\": \"Phenomena and Processes\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"e6593925-c676-4cad-82e5-a6e0dcd4cc8e","name":"Match Type: Specualitve, Future","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Pt is at risk for developing diabetes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:54:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1076"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-64b608408c4f\",\n            \"label\": \"Diabetes Mellitus\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 29,\n                \"end\": 37,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"diabetes\",\n                        \"position\": 12\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"speculative\",\n                    \"subtype\": \"future\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 6,\n                        \"end\": 17,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"at\",\n                                \"position\": 4\n                            },\n                            {\n                                \"token\": \"risk\",\n                                \"position\": 6\n                            },\n                            {\n                                \"token\": \"for\",\n                                \"position\": 8\n                            }\n                        ],\n                        \"triggerId\": \"N0000353\",\n                        \"triggerLabel\": \"at risk for\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-52d375923739\",\n                        \"label\": \"Metabolic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-08c1b76ccd17\",\n                        \"label\": \"Endocrine System Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-0bfdc5f20a35\",\n                        \"label\": \"Glucose Metabolism Disorders\"\n                    },\n                    {\n                        \"id\": \"lxg-29cfa6c1302d\",\n                        \"label\": \"Nutritional and Metabolic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": [\n        {\n            \"id\": \"PT\",\n            \"label\": \"Colorectal cancer screening test; converted to diagnostic test or other procedure\",\n            \"type\": \"CODE\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 0,\n                \"end\": 2,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"Pt\",\n                        \"position\": 0\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {},\n            \"codeSystem\": \"HCPCS\"\n        }\n    ]\n}"},{"id":"f33f4d8b-377f-48bf-ba67-6aa00d27f08d","name":"Match Type: Specualitve, Indication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Assessment for kidney cancer\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:54:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1153"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-0eae0b25339a\",\n            \"label\": \"Cancer of Kidney\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 15,\n                \"end\": 28,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"kidney\",\n                        \"position\": 4\n                    },\n                    {\n                        \"token\": \"cancer\",\n                        \"position\": 6\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"speculative\",\n                    \"subtype\": \"indication\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 14,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Assessment\",\n                                \"position\": 0\n                            },\n                            {\n                                \"token\": \"for\",\n                                \"position\": 2\n                            }\n                        ],\n                        \"triggerId\": \"N0000447\",\n                        \"triggerLabel\": \"assessment for\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-25d5a9ccc341\",\n                        \"label\": \"Female Urogenital Diseases and Pregnancy Complications\"\n                    },\n                    {\n                        \"id\": \"lxg-963ae534a889\",\n                        \"label\": \"Neoplasms\"\n                    },\n                    {\n                        \"id\": \"lxg-96c8c04a84c1\",\n                        \"label\": \"Female Urogenital Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-2407ba99205b\",\n                        \"label\": \"Urologic Neoplasms\"\n                    },\n                    {\n                        \"id\": \"lxg-7f59f6c6fb8d\",\n                        \"label\": \"Kidney Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-351942a612b4\",\n                        \"label\": \"Neoplasms by Site\"\n                    },\n                    {\n                        \"id\": \"lxg-6cd9f6f90f91\",\n                        \"label\": \"Kidney Neoplasms\"\n                    },\n                    {\n                        \"id\": \"lxg-c4b7bbac7d50\",\n                        \"label\": \"Urologic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-2638dea2462d\",\n                        \"label\": \"Male Urogenital Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-88d9047c0fad\",\n                        \"label\": \"Urogenital Neoplasms\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"5c90f585-2972-4826-8aad-b00340138007","name":"Medication (Ingredients, Dose, Form, Route)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Lisinopril 20 mg oral tab\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 21:03:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1185"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-41490a0f260b\",\n            \"label\": \"Lisinopril\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 0,\n                \"end\": 10,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"Lisinopril\",\n                        \"position\": 0\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"medication\",\n                    \"subtype\": \"generic\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 10,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Lisinopril\",\n                                \"position\": 0\n                            }\n                        ],\n                        \"triggerId\": \"lxg-41490a0f260b\",\n                        \"triggerLabel\": \"Lisinopril\"\n                    }\n                },\n                {\n                    \"type\": \"medication\",\n                    \"subtype\": \"ingredients\",\n                    \"ingredients\": [\n                        {\n                            \"name\": \"Lisinopril\",\n                            \"id\": \"lxg-41490a0f260b\",\n                            \"strength\": {\n                                \"value\": 20,\n                                \"unit\": \"milligram\"\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"type\": \"medication\",\n                    \"subtype\": \"form\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 22,\n                        \"end\": 25,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"tab\",\n                                \"position\": 8\n                            }\n                        ],\n                        \"triggerId\": \"385055001\",\n                        \"triggerLabel\": \"tablet\"\n                    }\n                },\n                {\n                    \"type\": \"medication\",\n                    \"subtype\": \"route\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 17,\n                        \"end\": 21,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"oral\",\n                                \"position\": 6\n                            }\n                        ],\n                        \"triggerId\": \"26643006\",\n                        \"triggerLabel\": \"oral\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Drug\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-8b7dbf4bc1d9\",\n                        \"label\": \"ACE inhibitors, plain\"\n                    },\n                    {\n                        \"id\": \"lxg-04b05fd06b05\",\n                        \"label\": \"CARDIOVASCULAR SYSTEM DRUGS\"\n                    },\n                    {\n                        \"id\": \"lxg-a4ede3447f55\",\n                        \"label\": \"AGENTS ACTING ON THE RENIN-ANGIOTENSIN SYSTEM\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"f6997cae-3f98-42c1-81dd-9693a4fd4b47","name":"History (Patient)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"h/o pneumonia, COPD and hypertension\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 21:05:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1960"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-8d0cbb9b44fb\",\n            \"label\": \"Pneumonia\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 4,\n                \"end\": 13,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"pneumonia\",\n                        \"position\": 2\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"history\",\n                    \"subtype\": \"patient\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 3,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"h/o\",\n                                \"position\": 0\n                            }\n                        ],\n                        \"triggerId\": \"T-history:patient:ho\",\n                        \"triggerLabel\": \"h/o\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-ecb807e05bc2\",\n                        \"label\": \"Infections\"\n                    },\n                    {\n                        \"id\": \"lxg-79470d3cbdac\",\n                        \"label\": \"Respiratory Tract Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-e4a353a5133f\",\n                        \"label\": \"Lung Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-e1858478ec6f\",\n                        \"label\": \"Respiratory Tract Infections\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"lxg-ecc8622ef80e\",\n            \"label\": \"Pulmonary Disease, Chronic Obstructive\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 15,\n                \"end\": 19,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"COPD\",\n                        \"position\": 5\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"history\",\n                    \"subtype\": \"patient\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 3,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"h/o\",\n                                \"position\": 0\n                            }\n                        ],\n                        \"triggerId\": \"T-history:patient:ho\",\n                        \"triggerLabel\": \"h/o\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-e4a353a5133f\",\n                        \"label\": \"Lung Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-79470d3cbdac\",\n                        \"label\": \"Respiratory Tract Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-9be532c3c5ec\",\n                        \"label\": \"Lung Diseases, Obstructive\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"lxg-3ac43c43af84\",\n            \"label\": \"Hypertension\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 24,\n                \"end\": 36,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"hypertension\",\n                        \"position\": 9\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"history\",\n                    \"subtype\": \"patient\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 3,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"h/o\",\n                                \"position\": 0\n                            }\n                        ],\n                        \"triggerId\": \"T-history:patient:ho\",\n                        \"triggerLabel\": \"h/o\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-7f69fbb334e4\",\n                        \"label\": \"Vascular Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-0eeec8ac29e4\",\n                        \"label\": \"Cardiovascular Diseases\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"a09a173c-3cd8-4d1b-8ec4-5bb30448fe5a","name":"History (Family)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Family history of breast cancer and coronary artery disease\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 21:06:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1912"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-10baffcfafed\",\n            \"label\": \"Breast Cancer\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 18,\n                \"end\": 31,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"breast\",\n                        \"position\": 6\n                    },\n                    {\n                        \"token\": \"cancer\",\n                        \"position\": 8\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"history\",\n                    \"subtype\": \"family\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 17,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Family\",\n                                \"position\": 0\n                            },\n                            {\n                                \"token\": \"history\",\n                                \"position\": 2\n                            },\n                            {\n                                \"token\": \"of\",\n                                \"position\": 4\n                            }\n                        ],\n                        \"triggerId\": \"history-1\",\n                        \"triggerLabel\": \"family history\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-534beeb00b20\",\n                        \"label\": \"Skin and Connective Tissue Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-963ae534a889\",\n                        \"label\": \"Neoplasms\"\n                    },\n                    {\n                        \"id\": \"lxg-7dc45db48b62\",\n                        \"label\": \"Breast Neoplasms\"\n                    },\n                    {\n                        \"id\": \"lxg-488260b5644f\",\n                        \"label\": \"Breast Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-461105803c1f\",\n                        \"label\": \"Skin Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-351942a612b4\",\n                        \"label\": \"Neoplasms by Site\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"lxg-6ba97e5d4ba4\",\n            \"label\": \"Coronary Artery Disease\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 36,\n                \"end\": 59,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"coronary\",\n                        \"position\": 12\n                    },\n                    {\n                        \"token\": \"artery\",\n                        \"position\": 14\n                    },\n                    {\n                        \"token\": \"disease\",\n                        \"position\": 16\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"history\",\n                    \"subtype\": \"family\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 17,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Family\",\n                                \"position\": 0\n                            },\n                            {\n                                \"token\": \"history\",\n                                \"position\": 2\n                            },\n                            {\n                                \"token\": \"of\",\n                                \"position\": 4\n                            }\n                        ],\n                        \"triggerId\": \"history-1\",\n                        \"triggerLabel\": \"family history\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-b1b460c2e357\",\n                        \"label\": \"Myocardial Ischemia\"\n                    },\n                    {\n                        \"id\": \"lxg-adf48a425e80\",\n                        \"label\": \"Heart Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-1a660fc12d61\",\n                        \"label\": \"Arteriosclerosis\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-8bdf5847dd33\",\n                        \"label\": \"Coronary Disease\"\n                    },\n                    {\n                        \"id\": \"lxg-9b178a515e93\",\n                        \"label\": \"Arterial Occlusive Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-7f69fbb334e4\",\n                        \"label\": \"Vascular Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-0eeec8ac29e4\",\n                        \"label\": \"Cardiovascular Diseases\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"ee97b5ff-1a10-4e08-8c00-8dfc779e494e","name":"Experiencer (Sister vs Brother vs Uncle)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Sister diabetes. Brother heart disease. Uncle colorectal cancer.\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 21:08:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2974"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-64b608408c4f\",\n            \"label\": \"Diabetes Mellitus\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 7,\n                \"end\": 15,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"diabetes\",\n                        \"position\": 2\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"experiencer\",\n                    \"subtype\": \"sister\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 6,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Sister\",\n                                \"position\": 0\n                            }\n                        ],\n                        \"triggerId\": \"experiencer-9\",\n                        \"triggerLabel\": \"sister\"\n                    }\n                },\n                {\n                    \"type\": \"history\",\n                    \"subtype\": \"family\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 6,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Sister\",\n                                \"position\": 0\n                            }\n                        ],\n                        \"triggerId\": \"experiencer-9\",\n                        \"triggerLabel\": \"sister\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-52d375923739\",\n                        \"label\": \"Metabolic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-08c1b76ccd17\",\n                        \"label\": \"Endocrine System Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-0bfdc5f20a35\",\n                        \"label\": \"Glucose Metabolism Disorders\"\n                    },\n                    {\n                        \"id\": \"lxg-29cfa6c1302d\",\n                        \"label\": \"Nutritional and Metabolic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"lxg-adf48a425e80\",\n            \"label\": \"Heart Diseases\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 25,\n                \"end\": 38,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"heart\",\n                        \"position\": 7\n                    },\n                    {\n                        \"token\": \"disease\",\n                        \"position\": 9\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"history\",\n                    \"subtype\": \"family\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 17,\n                        \"end\": 24,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Brother\",\n                                \"position\": 5\n                            }\n                        ],\n                        \"triggerId\": \"experiencer-8\",\n                        \"triggerLabel\": \"brother\"\n                    }\n                },\n                {\n                    \"type\": \"experiencer\",\n                    \"subtype\": \"brother\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 17,\n                        \"end\": 24,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Brother\",\n                                \"position\": 5\n                            }\n                        ],\n                        \"triggerId\": \"experiencer-8\",\n                        \"triggerLabel\": \"brother\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-0eeec8ac29e4\",\n                        \"label\": \"Cardiovascular Diseases\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"lxg-e7849299913a\",\n            \"label\": \"Colorectal Neoplasms\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 46,\n                \"end\": 63,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"colorectal\",\n                        \"position\": 14\n                    },\n                    {\n                        \"token\": \"cancer\",\n                        \"position\": 16\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"experiencer\",\n                    \"subtype\": \"uncle\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 40,\n                        \"end\": 45,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Uncle\",\n                                \"position\": 12\n                            }\n                        ],\n                        \"triggerId\": \"experiencer-12\",\n                        \"triggerLabel\": \"uncle\"\n                    }\n                },\n                {\n                    \"type\": \"history\",\n                    \"subtype\": \"family\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 40,\n                        \"end\": 45,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"Uncle\",\n                                \"position\": 12\n                            }\n                        ],\n                        \"triggerId\": \"experiencer-12\",\n                        \"triggerLabel\": \"uncle\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-963ae534a889\",\n                        \"label\": \"Neoplasms\"\n                    },\n                    {\n                        \"id\": \"lxg-faa526cbdab6\",\n                        \"label\": \"Intestinal Neoplasms\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-351942a612b4\",\n                        \"label\": \"Neoplasms by Site\"\n                    },\n                    {\n                        \"id\": \"lxg-2c6a7efa71b6\",\n                        \"label\": \"Intestinal Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-e32d932c597b\",\n                        \"label\": \"Digestive System Neoplasms\"\n                    },\n                    {\n                        \"id\": \"lxg-13845efafc87\",\n                        \"label\": \"Rectal Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-3937e1dbb46b\",\n                        \"label\": \"Gastrointestinal Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-d8ff7fd83401\",\n                        \"label\": \"Colonic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-dca8d693935d\",\n                        \"label\": \"Gastrointestinal Neoplasms\"\n                    },\n                    {\n                        \"id\": \"lxg-a6c9dbe3b804\",\n                        \"label\": \"Digestive System Diseases\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"2bbdc340-f667-4089-8bd9-8855cf9c8eb1","name":"Height, Weight, BMI","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Height 180 cm, weight 60 kg, bmi 18.5\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:58:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1339"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"height\",\n            \"label\": \"height\",\n            \"type\": \"MEASUREMENT\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 0,\n                \"end\": 10,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"Height\",\n                        \"position\": 0\n                    },\n                    {\n                        \"token\": \"180\",\n                        \"position\": 2\n                    }\n                ],\n                \"subtype\": \"height\",\n                \"value\": \"180.0\",\n                \"unit\": \"centimeter\"\n            },\n            \"contexts\": [],\n            \"classification\": {}\n        },\n        {\n            \"id\": \"weight\",\n            \"label\": \"weight\",\n            \"type\": \"MEASUREMENT\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 15,\n                \"end\": 24,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"weight\",\n                        \"position\": 7\n                    },\n                    {\n                        \"token\": \"60\",\n                        \"position\": 9\n                    }\n                ],\n                \"subtype\": \"weight\",\n                \"value\": \"60.0\",\n                \"unit\": \"kilogram\"\n            },\n            \"contexts\": [],\n            \"classification\": {}\n        },\n        {\n            \"id\": \"bmi\",\n            \"label\": \"bmi\",\n            \"type\": \"MEASUREMENT\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 29,\n                \"end\": 37,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"bmi\",\n                        \"position\": 14\n                    },\n                    {\n                        \"token\": \"18.5\",\n                        \"position\": 16\n                    }\n                ],\n                \"subtype\": \"bmi\",\n                \"value\": \"18.5\"\n            },\n            \"contexts\": [],\n            \"classification\": {}\n        }\n    ],\n    \"codes\": [\n        {\n            \"id\": \"CM\",\n            \"label\": \"At least 80 percent but less than 100 percent impaired, limited or restricted\",\n            \"type\": \"CODE\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 11,\n                \"end\": 13,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"cm\",\n                        \"position\": 4\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {},\n            \"codeSystem\": \"HCPCS\"\n        },\n        {\n            \"id\": \"KG\",\n            \"label\": \"Dmepos item subject to dmepos competitive bidding program number 1\",\n            \"type\": \"CODE\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 25,\n                \"end\": 27,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"kg\",\n                        \"position\": 11\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {},\n            \"codeSystem\": \"HCPCS\"\n        }\n    ]\n}"},{"id":"c72f753c-6199-4c4d-8beb-a02f2980f7ae","name":"Lab Values","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"\\n\\nHigh-density lipoprotein (HDL): 57 mg/dL\\n\\nLow-density lipoprotein (LDL): 110 mg/dL\\n\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 21:02:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"573"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"cholesterol\",\n            \"label\": \"cholesterol\",\n            \"type\": \"MEASUREMENT\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 28,\n                \"end\": 36,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"HDL\",\n                        \"position\": 9\n                    },\n                    {\n                        \"token\": \"57\",\n                        \"position\": 13\n                    }\n                ],\n                \"subtype\": \"hdl\",\n                \"value\": \"57.0\",\n                \"unit\": \"mg/dl\"\n            },\n            \"contexts\": [],\n            \"classification\": {}\n        },\n        {\n            \"id\": \"cholesterol\",\n            \"label\": \"cholesterol\",\n            \"type\": \"MEASUREMENT\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 69,\n                \"end\": 78,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"LDL\",\n                        \"position\": 25\n                    },\n                    {\n                        \"token\": \"110\",\n                        \"position\": 29\n                    }\n                ],\n                \"subtype\": \"ldl\",\n                \"value\": \"110.0\",\n                \"unit\": \"mg/dl\"\n            },\n            \"contexts\": [],\n            \"classification\": {}\n        }\n    ],\n    \"codes\": []\n}"},{"id":"30e7859a-343f-4e96-9d5e-cbf426fd6d70","name":"Sections","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Chief Complaint: worsening chest pain and shortness of breath\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:47:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2666"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-98e4b85efdaf\",\n            \"label\": \"Chest Pain\",\n            \"type\": \"ENTITY\",\n            \"sectionId\": 0,\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 27,\n                \"end\": 37,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"chest\",\n                        \"position\": 7\n                    },\n                    {\n                        \"token\": \"pain\",\n                        \"position\": 9\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-d4992a5f9463\",\n                        \"label\": \"Phenomena and Processes\"\n                    },\n                    {\n                        \"id\": \"lxg-f803a80b4a5a\",\n                        \"label\": \"Analytical, Diagnostic and Therapeutic Techniques, and Equipment\"\n                    },\n                    {\n                        \"id\": \"lxg-ec9ed620acd8\",\n                        \"label\": \"Nervous System Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-8d011d2046ee\",\n                        \"label\": \"Complementary Therapies\"\n                    },\n                    {\n                        \"id\": \"lxg-df456212533b\",\n                        \"label\": \"Nervous System Physiological Phenomena\"\n                    },\n                    {\n                        \"id\": \"lxg-e551def94886\",\n                        \"label\": \"Therapeutics\"\n                    },\n                    {\n                        \"id\": \"lxg-350f945f3c32\",\n                        \"label\": \"Mind-Body Therapies\"\n                    },\n                    {\n                        \"id\": \"lxg-28ab8b90a066\",\n                        \"label\": \"Pain\"\n                    },\n                    {\n                        \"id\": \"lxg-b2f43fe40fd5\",\n                        \"label\": \"Psychological Phenomena\"\n                    },\n                    {\n                        \"id\": \"lxg-194253448724\",\n                        \"label\": \"Neurologic Manifestations\"\n                    },\n                    {\n                        \"id\": \"lxg-5f89f0c8dfd8\",\n                        \"label\": \"Psychiatry and Psychology\"\n                    },\n                    {\n                        \"id\": \"lxg-cbccc46acccf\",\n                        \"label\": \"Signs and Symptoms\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-bb675ffaef1e\",\n                        \"label\": \"Sensation\"\n                    },\n                    {\n                        \"id\": \"lxg-19e179ba9ab0\",\n                        \"label\": \"Behavioral Sciences\"\n                    },\n                    {\n                        \"id\": \"lxg-5858c1449f00\",\n                        \"label\": \"Behavioral Disciplines and Activities\"\n                    },\n                    {\n                        \"id\": \"lxg-f7f2523f4a17\",\n                        \"label\": \"Musculoskeletal and Neural Physiological Phenomena\"\n                    },\n                    {\n                        \"id\": \"lxg-4ebfcb6de390\",\n                        \"label\": \"Pathological Conditions, Signs and Symptoms\"\n                    },\n                    {\n                        \"id\": \"lxg-e3f8f56ca370\",\n                        \"label\": \"Psychophysiology\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"lxg-5bdbdd4f23ff\",\n            \"label\": \"Dyspnea\",\n            \"type\": \"ENTITY\",\n            \"sectionId\": 0,\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 42,\n                \"end\": 61,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"shortness\",\n                        \"position\": 13\n                    },\n                    {\n                        \"token\": \"breath\",\n                        \"position\": 17\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-6df2abdee703\",\n                        \"label\": \"Respiration Disorders\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-4ebfcb6de390\",\n                        \"label\": \"Pathological Conditions, Signs and Symptoms\"\n                    },\n                    {\n                        \"id\": \"lxg-cbccc46acccf\",\n                        \"label\": \"Signs and Symptoms\"\n                    },\n                    {\n                        \"id\": \"lxg-9cf72d12138b\",\n                        \"label\": \"Signs and Symptoms, Respiratory\"\n                    },\n                    {\n                        \"id\": \"lxg-79470d3cbdac\",\n                        \"label\": \"Respiratory Tract Diseases\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"sections\": [\n        {\n            \"id\": \"chief-complaint\",\n            \"label\": \"chief complaint\",\n            \"type\": \"SECTION\",\n            \"sectionId\": 0,\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 0,\n                \"end\": 15,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"Chief\",\n                        \"position\": 0\n                    },\n                    {\n                        \"token\": \"Complaint\",\n                        \"position\": 2\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {}\n        }\n    ],\n    \"codes\": [\n        {\n            \"id\": \"R06.02\",\n            \"label\": \"Shortness of breath\",\n            \"type\": \"CODE\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 42,\n                \"end\": 61,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"shortness\",\n                        \"position\": 13\n                    },\n                    {\n                        \"token\": \"of\",\n                        \"position\": 15\n                    },\n                    {\n                        \"token\": \"breath\",\n                        \"position\": 17\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {},\n            \"codeSystem\": \"ICD10CM\"\n        }\n    ]\n}"},{"id":"b7a02ea5-c602-4cbb-868b-d32d4ef990e4","name":"List Item Detection","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"PATIENT CONDITIONS 1) Hypertension 2) ADHD 3) Diabetes\",\n    \"withLists\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:48:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1823"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-3ac43c43af84\",\n            \"label\": \"Hypertension\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 22,\n                \"end\": 34,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"Hypertension\",\n                        \"position\": 7\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-7f69fbb334e4\",\n                        \"label\": \"Vascular Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-0eeec8ac29e4\",\n                        \"label\": \"Cardiovascular Diseases\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"lxg-700493c19f16\",\n            \"label\": \"Attention Deficit Disorder with Hyperactivity\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 38,\n                \"end\": 42,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"ADHD\",\n                        \"position\": 12\n                    }\n                ],\n                \"subtype\": \"acronym\"\n            },\n            \"contexts\": [],\n            \"classification\": {\n                \"main\": \"MentalHealth\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-a63bfb7bf5b3\",\n                        \"label\": \"Mental Disorders\"\n                    },\n                    {\n                        \"id\": \"lxg-33eb5fea062e\",\n                        \"label\": \"Attention Deficit and Disruptive Behavior Disorders\"\n                    },\n                    {\n                        \"id\": \"lxg-423c3b37e868\",\n                        \"label\": \"Neurodevelopmental Disorders\"\n                    },\n                    {\n                        \"id\": \"lxg-5f89f0c8dfd8\",\n                        \"label\": \"Psychiatry and Psychology\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"lxg-64b608408c4f\",\n            \"label\": \"Diabetes Mellitus\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 46,\n                \"end\": 54,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"Diabetes\",\n                        \"position\": 17\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-52d375923739\",\n                        \"label\": \"Metabolic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-08c1b76ccd17\",\n                        \"label\": \"Endocrine System Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-0bfdc5f20a35\",\n                        \"label\": \"Glucose Metabolism Disorders\"\n                    },\n                    {\n                        \"id\": \"lxg-29cfa6c1302d\",\n                        \"label\": \"Nutritional and Metabolic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"lists\": [\n        {\n            \"id\": 0,\n            \"explanation\": {\n                \"begin\": 22,\n                \"end\": 54,\n                \"itemCount\": 3\n            },\n            \"items\": [\n                {\n                    \"number\": 1,\n                    \"label\": \"1)\",\n                    \"explanation\": {\n                        \"begin\": 22,\n                        \"end\": 34,\n                        \"matchesIndex\": [\n                            0\n                        ]\n                    }\n                },\n                {\n                    \"number\": 2,\n                    \"label\": \"2)\",\n                    \"explanation\": {\n                        \"begin\": 38,\n                        \"end\": 42,\n                        \"matchesIndex\": [\n                            1\n                        ]\n                    }\n                },\n                {\n                    \"number\": 3,\n                    \"label\": \"3)\",\n                    \"explanation\": {\n                        \"begin\": 46,\n                        \"end\": 54,\n                        \"matchesIndex\": [\n                            2\n                        ]\n                    }\n                }\n            ]\n        }\n    ],\n    \"codes\": []\n}"},{"id":"cd90a91e-47e3-4afe-bb9f-ffd45bca7ab6","name":"Demographics","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"The patient is a 55 year old Caucasian male\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:50:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"741"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"age\",\n            \"label\": \"age\",\n            \"type\": \"DEMOGRAPHIC\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 17,\n                \"end\": 28,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"55\",\n                        \"position\": 8\n                    },\n                    {\n                        \"token\": \"year\",\n                        \"position\": 10\n                    },\n                    {\n                        \"token\": \"old\",\n                        \"position\": 12\n                    }\n                ],\n                \"subtype\": \"age\",\n                \"value\": \"55\"\n            },\n            \"contexts\": [],\n            \"classification\": {}\n        },\n        {\n            \"id\": \"white\",\n            \"label\": \"white\",\n            \"type\": \"DEMOGRAPHIC\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 29,\n                \"end\": 38,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"Caucasian\",\n                        \"position\": 14\n                    }\n                ],\n                \"subtype\": \"race\",\n                \"value\": \"white\"\n            },\n            \"contexts\": [],\n            \"classification\": {}\n        },\n        {\n            \"id\": \"male\",\n            \"label\": \"male\",\n            \"type\": \"DEMOGRAPHIC\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 39,\n                \"end\": 43,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"male\",\n                        \"position\": 16\n                    }\n                ],\n                \"subtype\": \"gender\",\n                \"value\": \"male\"\n            },\n            \"contexts\": [],\n            \"classification\": {}\n        }\n    ],\n    \"codes\": []\n}"},{"id":"4f4a2fe9-5a8e-45e7-9b2b-b81ddf5a0023","name":"Date Normalization","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"The patient first presented with diabetes Nov 13, 2018\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 20:50:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"861"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-64b608408c4f\",\n            \"label\": \"Diabetes Mellitus\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 33,\n                \"end\": 41,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"diabetes\",\n                        \"position\": 10\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-52d375923739\",\n                        \"label\": \"Metabolic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-08c1b76ccd17\",\n                        \"label\": \"Endocrine System Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-0bfdc5f20a35\",\n                        \"label\": \"Glucose Metabolism Disorders\"\n                    },\n                    {\n                        \"id\": \"lxg-29cfa6c1302d\",\n                        \"label\": \"Nutritional and Metabolic Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"date\",\n            \"label\": \"date\",\n            \"type\": \"DATE\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 42,\n                \"end\": 54,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"Nov\",\n                        \"position\": 12\n                    },\n                    {\n                        \"token\": \"13\",\n                        \"position\": 14\n                    },\n                    {\n                        \"token\": \",\",\n                        \"position\": 15\n                    },\n                    {\n                        \"token\": \"2018\",\n                        \"position\": 17\n                    }\n                ],\n                \"subtype\": \"date\",\n                \"value\": \"2018-11-13\"\n            },\n            \"contexts\": [],\n            \"classification\": {}\n        }\n    ],\n    \"codes\": []\n}"},{"id":"4b555de7-0687-4420-8d95-3d37dc51937d","name":"Anatomy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"The patient has a skin abscess\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 21:04:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1080"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-60896437f342\",\n            \"label\": \"Skin\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 18,\n                \"end\": 22,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"skin\",\n                        \"position\": 8\n                    }\n                ]\n            },\n            \"contexts\": [],\n            \"classification\": {\n                \"main\": \"Anatomy\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-8cae2fb069d6\",\n                        \"label\": \"Integumentary System\"\n                    },\n                    {\n                        \"id\": \"lxg-032b4d0893da\",\n                        \"label\": \"Anatomy\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"lxg-88b88605857f\",\n            \"label\": \"Abscess\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 23,\n                \"end\": 30,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"abscess\",\n                        \"position\": 10\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"anatomy\",\n                    \"subtype\": \"anatomy\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 18,\n                        \"end\": 22,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"skin\",\n                                \"position\": 8\n                            }\n                        ],\n                        \"triggerId\": \"anatomy-skin\",\n                        \"triggerLabel\": \"skin\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-4ebfcb6de390\",\n                        \"label\": \"Pathological Conditions, Signs and Symptoms\"\n                    },\n                    {\n                        \"id\": \"lxg-7a3777afaaa9\",\n                        \"label\": \"Pathologic Processes\"\n                    },\n                    {\n                        \"id\": \"lxg-ecb807e05bc2\",\n                        \"label\": \"Infections\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-8187cb28c903\",\n                        \"label\": \"Inflammation\"\n                    },\n                    {\n                        \"id\": \"lxg-ae7931d19353\",\n                        \"label\": \"Suppuration\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"},{"id":"dad520b2-1049-4980-93c6-bd49e3ec27d0","name":"Allergies","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Patient has allergy to penicillin\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 21:09:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"456"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-f8833f946643\",\n            \"label\": \"Penicillin\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 23,\n                \"end\": 33,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"penicillin\",\n                        \"position\": 8\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"allergy\",\n                    \"subtype\": \"allergy\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 12,\n                        \"end\": 22,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"allergy\",\n                                \"position\": 4\n                            },\n                            {\n                                \"token\": \"to\",\n                                \"position\": 6\n                            }\n                        ],\n                        \"triggerId\": \"allergy-forward\",\n                        \"triggerLabel\": \"allergy to\"\n                    }\n                }\n            ],\n            \"classification\": {}\n        }\n    ],\n    \"codes\": []\n}"},{"id":"6e8c344a-121f-4875-bec4-16d9f246a469","name":"Modifiers","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"text\": \"temporary back pain\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.lexigram.io/v4/extract/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.12"},{"key":"Date","value":"Thu, 08 Jul 2021 21:10:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2108"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"matches\": [\n        {\n            \"id\": \"lxg-af2db18e9c44\",\n            \"label\": \"Backache\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 10,\n                \"end\": 19,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"back\",\n                        \"position\": 2\n                    },\n                    {\n                        \"token\": \"pain\",\n                        \"position\": 4\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"modifier\",\n                    \"subtype\": \"modifier\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 9,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"temporary\",\n                                \"position\": 0\n                            }\n                        ],\n                        \"triggerId\": \"modifier-temporary\",\n                        \"triggerLabel\": \"temporary\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\"\n            }\n        },\n        {\n            \"id\": \"lxg-a2f14b8fb11e\",\n            \"label\": \"Back Pain\",\n            \"type\": \"ENTITY\",\n            \"explanation\": {\n                \"fuzzyValues\": [],\n                \"begin\": 10,\n                \"end\": 19,\n                \"matchedTokens\": [\n                    {\n                        \"token\": \"back\",\n                        \"position\": 2\n                    },\n                    {\n                        \"token\": \"pain\",\n                        \"position\": 4\n                    }\n                ]\n            },\n            \"contexts\": [\n                {\n                    \"type\": \"modifier\",\n                    \"subtype\": \"modifier\",\n                    \"explanation\": {\n                        \"fuzzyValues\": [],\n                        \"begin\": 0,\n                        \"end\": 9,\n                        \"matchedTokens\": [\n                            {\n                                \"token\": \"temporary\",\n                                \"position\": 0\n                            }\n                        ],\n                        \"triggerId\": \"modifier-temporary\",\n                        \"triggerLabel\": \"temporary\"\n                    }\n                }\n            ],\n            \"classification\": {\n                \"main\": \"Disease\",\n                \"subs\": [\n                    {\n                        \"id\": \"lxg-b2f43fe40fd5\",\n                        \"label\": \"Psychological Phenomena\"\n                    },\n                    {\n                        \"id\": \"lxg-194253448724\",\n                        \"label\": \"Neurologic Manifestations\"\n                    },\n                    {\n                        \"id\": \"lxg-75055083f475\",\n                        \"label\": \"Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-8d011d2046ee\",\n                        \"label\": \"Complementary Therapies\"\n                    },\n                    {\n                        \"id\": \"lxg-4ebfcb6de390\",\n                        \"label\": \"Pathological Conditions, Signs and Symptoms\"\n                    },\n                    {\n                        \"id\": \"lxg-5858c1449f00\",\n                        \"label\": \"Behavioral Disciplines and Activities\"\n                    },\n                    {\n                        \"id\": \"lxg-cbccc46acccf\",\n                        \"label\": \"Signs and Symptoms\"\n                    },\n                    {\n                        \"id\": \"lxg-bb675ffaef1e\",\n                        \"label\": \"Sensation\"\n                    },\n                    {\n                        \"id\": \"lxg-28ab8b90a066\",\n                        \"label\": \"Pain\"\n                    },\n                    {\n                        \"id\": \"lxg-350f945f3c32\",\n                        \"label\": \"Mind-Body Therapies\"\n                    },\n                    {\n                        \"id\": \"lxg-f7f2523f4a17\",\n                        \"label\": \"Musculoskeletal and Neural Physiological Phenomena\"\n                    },\n                    {\n                        \"id\": \"lxg-d4992a5f9463\",\n                        \"label\": \"Phenomena and Processes\"\n                    },\n                    {\n                        \"id\": \"lxg-e3f8f56ca370\",\n                        \"label\": \"Psychophysiology\"\n                    },\n                    {\n                        \"id\": \"lxg-e551def94886\",\n                        \"label\": \"Therapeutics\"\n                    },\n                    {\n                        \"id\": \"lxg-19e179ba9ab0\",\n                        \"label\": \"Behavioral Sciences\"\n                    },\n                    {\n                        \"id\": \"lxg-f803a80b4a5a\",\n                        \"label\": \"Analytical, Diagnostic and Therapeutic Techniques, and Equipment\"\n                    },\n                    {\n                        \"id\": \"lxg-5f89f0c8dfd8\",\n                        \"label\": \"Psychiatry and Psychology\"\n                    },\n                    {\n                        \"id\": \"lxg-ec9ed620acd8\",\n                        \"label\": \"Nervous System Diseases\"\n                    },\n                    {\n                        \"id\": \"lxg-df456212533b\",\n                        \"label\": \"Nervous System Physiological Phenomena\"\n                    }\n                ]\n            }\n        }\n    ],\n    \"codes\": []\n}"}],"_postman_id":"ee8d9d95-50d5-4fbf-8833-d80226b9c8b0"},{"name":"Highlight","id":"25f900eb-7c8f-45f9-a85c-9043e5162f1f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"The patient has diabetes\",\n    \"withContext\": true,\n    \"withMatchLogic\": \"longest\"\n}"},"url":"https://api.lexigram.io/v4/highlight/entities","description":"<p>Returns HTML enriched versions of the input text surrounding found concepts in span tags to aid visualization of the data.</p>\n","auth":{"type":"bearer","bearer":{"token":"<Bearer Token>"},"isInherited":true,"source":{"_postman_id":"955b9476-b925-427d-ab32-dc2ae6d8a23d","id":"955b9476-b925-427d-ab32-dc2ae6d8a23d","name":"Lexigram Clinical NLP APIs","type":"collection"}},"urlObject":{"path":["highlight","entities"],"host":["https://api.lexigram.io/v4"],"query":[],"variable":[]}},"response":[{"id":"31899969-f337-4c5a-9417-34d0c2729a3f","name":"Highlight","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"The patient has diabetes\",\n    \"withContext\": true,\n    \"withMatchLogic\": \"longest\"\n}"},"url":"https://api.lexigram.io/v4/highlight/entities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"text\": \"The <span class=\\\"lxg-concept lxg-findings lxg:77f185b7dd7c\\\" match-id=\\\"lxg:77f185b7dd7c-4\\\">patient</span> has <span class=\\\"lxg-concept lxg-problems lxg:2e499daccfa1\\\" match-id=\\\"lxg:2e499daccfa1-16\\\">diabetes</span>\"\n}"}],"_postman_id":"25f900eb-7c8f-45f9-a85c-9043e5162f1f"}],"auth":{"type":"bearer","bearer":{"token":"<Bearer Token>"}},"event":[{"listen":"prerequest","script":{"id":"34bbb2fb-1f1d-44b2-b2a8-bed246bf68ab","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bcbaeb19-f702-4aae-8286-ee8e6d10500f","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://api.lexigram.io/v4"},{"key":"apiKey","value":"<Bearer Token>"}]}